/**
 * Add any custom CSS here.
 *
 * This file will be loaded after all other theme stylesheets.
 */
.item-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 600px;
    background-color: white;
    padding: 10px;
    /*border: 1px solid lightgrey;*/
    list-style: none; /* Hide the bullet */
}

.item-list li {
    color: #212529;
    padding: 5px;
    margin: 0; /* Change the margin to 0 */
}

.item-list li:hover {
    color: #AF9D70; /* Change the hover text color to #AF9D70 */
}

.item-list li a {
    color: #212529;
}

.item-list li a:hover {
    color: #AF9D70;
}

.close-btn {
    position: absolute;
    top: 22vh;
    left: 25px;
    background-color: #8c7b54;
    color: #fff;
    border: 1px solid white;
    border-radius: 30px;
    width: 90px;
    text-align: center;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.0625rem;
    padding: 0.75rem 1.25rem;
}
/* Show 4 columns on desktop */
@media only screen and (min-width: 992px) {
    .item-list li {
        width: 25%;
        float: left;
    }
}
/* Show 2 columns on tablet and mobile */
@media (max-width: 991px) {
    .item-list {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        background: #FFFFFF;
        padding: 20px;
    }

    .item-list li {
        margin-bottom: 10px;
        padding: 5px;
        color: #212529;
        list-style: none;
        font-size: 16px;
    }
    .item-list li {
        width: 50%;
        float: left;
    }

    .item-list li a {
        color: #ffffff;
    }

    .item-list li:hover, .item-list li:hover a {
        color: #AF9D70;
        background-color: white;
    }

    .btn-cta-submit-now {
        display: block;
        margin-bottom: 10px;
        text-align: right;
    }
    ul.item-list {
        padding-top: 30vh !important;
        background-color: #8c7b54 !important;
    }
}



