/* CSS Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    position: absolute;
    background-color: #000;
    border-radius: 10px;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    width: 477px;
    margin-top: 25px;
    font-size: 20px;
    color: #000;
    font-family: 'AvenirNextLTPro-Regular', sans-serif;
    font-weight: 400;
    z-index: 3;
}

.dropdown.active .dropdown-content {
    visibility: visible;
    opacity: 1;
    cursor: context-menu;
}

/* Language and Currency Dropdown */
.language-currency-dropdown {
    top: 85px;
    right: 0;
    margin-top: 0;
}

/* Filter */
.banner-listing-type span,
.banner-type-dropdown span {
    cursor: pointer;
    padding: 12px 23px;
    border: 1px solid #F6F6F6;
    border-radius: 50px;
    display: inline-block;
    color: #F6F6F6;
}

.banner-listing-type .dropdown-content,
.banner-type-dropdown .dropdown-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.banner-al-dropdown .dropdown-al {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
    border-bottom: 1px solid #B0B0B0;
    color: white;
}

.banner-al-dropdown .dropdown-al:last-child {
    border-bottom: 0;
}

.banner-al-dropdown label,
.banner-al-dropdown input {
    cursor: pointer;
}

.banner-al-dropdown label {
    position: relative;
    z-index: 1;
    width: 100%;
}

.div-search-container {
    position: relative;
}

.div-search-container .search-icon {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 10px;
    margin: auto;
    filter: invert(100%);
}

.drowpdon-search {
    font-family: 'AvenirNextLTPro-Regular', sans-serif;
    font-size: 20px;
    border: 1px solid #D1D1D1;
    height: 84px;
    color: #000;
    width: 100%;
    border-radius: 50px;
    padding: 0 20px 0 80px;
    background: #E7E7E7;
    margin-bottom: 10px;
}

.banner-tal-dropdown .dropdown-content {
    max-height: 370px;
    overflow: auto;
}

.banner-tal-dropdown .dropdown-content::-webkit-scrollbar-thumb {
    background-color: #B0B0B0;
    border: 4px solid transparent;
    border-radius: 8px;
    background-clip: padding-box;
}

.banner-tal-dropdown .dropdown-content::-webkit-scrollbar {
    width: 11px;
}

.banner-tal-dropdown .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.banner-tal-dropdown .container {
    position: absolute;
    right: 20px;
    width: fit-content;
    display: block;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
}

.banner-tal-dropdown .checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 1.3em;
    width: 1.3em;
    border: 1px solid #ffff;
    border-radius: 50%;
}

.banner-tal-dropdown input:checked~.checkmark {
    background: #000;
}

.banner-tal-dropdown .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.banner-tal-dropdown input:checked~.checkmark:after {
    display: block;
}

.banner-tal-dropdown .checkmark:after {
    left: 0.45em;
    top: 0.25em;
    width: 0.25em;
    height: 0.5em;
    border: solid white;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}


@media (max-width: 1760px) {
    .banner-tal-dropdown .dropdown-content {
        width: 400px;
    }

    .banner-listing-type .dropdown-content {
        width: 400px;
    }
}

@media (max-width: 1280px) {
    .banner-area-dropdown .dropdown-content {
        left: 50%;
        transform: translateX(-50%);
    }

    .banner-location-dropdown .dropdown-content {
        left: unset;
        right: 0;
    }

    .dropdown-content {
        font-size: 18px;
    }

    .drowpdon-search {
        font-size: 18px;
        height: 74px;
    }
}