/* Global container styling */
.select2-container--default {
    width: 100% !important;
    /*border-radius: 8px;*/
    max-width: 295px;
    padding-right: 7px;
}

.select2-container .select2-selection{
    width: 100% !important;
    border: 1.2px solid #FFFFFF66;
    border-radius: 100px;
    max-width: 295px;
    background-color: transparent;
    align-content: center;
    padding: 9px 7px 9px 0;
}

.select2-container .select2-selection:hover {
    background-color: #a35d5d2b;
}


.select2-selection__arrow b{
    display:none !important;
}

.select2-dropdown.select2-dropdown--below {
    top: -44px !important;
    border-radius: 18px;
    padding-right: 7px;
}

.select2-search__field {
    border: 2px solid black !important;
    border-radius: 100px;
    width: 271px !important;
    /*margin-right: 7px;*/
    margin-top: 10px;
    padding-right: 7px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 14px !important;
}

.select2-container .select2-selection--single{
    height: unset !important;
}

.select2-results__group{
    padding-top: 15px !important;
    color: #00000099;
}

#select2-search-results{
    padding-right: 7px;
}

.select2-results__option{
    font-weight: bold;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: #0000001C;
    color: black;
}

.select2-container--default .select2-results>.select2-results__options{
    max-height: 260px !important;
}

.custom-clear-btn{
    position: absolute;
    cursor: pointer;
    background-color: transparent;
    border: none;
    top: 17px;
    left: 15px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    opacity: 0.8;
}

.ltr .custom-clear-btn{
    left: unset;
    right: 17px;
}

.custom-clear-btn :hover{
    opacity: 1;
}

.custom-clear-btn svg{
    height: 16px ;
    width: 16px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    background-image: url('/img/search.svg');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 15px 15px;
    padding-right: 35px !important;
    height: 14px;
}

/* Style for search input in dropdown */
.select2-dropdown .select2-search__field {
    background-image: url('/img/search_black.svg');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 15px 15px;
    padding-right: 35px !important;
    box-sizing: border-box;
}

/* RTL support - adjust for Hebrew */
.ltr .select2-selection--single .select2-selection__rendered {
    background-position: left 12px center;
    padding-left: 35px !important;
    padding-right: 8px !important;
}

.ltr .select2-search__field {
    background-position: left 12px center;
    padding-left: 35px !important;
    padding-right: 8px !important;
}

.search-mobile-container{
    display: none;
}



/* Responsive styles */
@media (max-width: 768px) {
    .select2-container--default {
        max-width: unset;
    }
    .select2-dropdown{
        width: 100% !important;
        left: 0 !important;
        right: 0;
        position: fixed;
    }

    .select2-search__field{
        width: 100% !important;
    }

    .select2-dropdown.select2-dropdown--below{
        border-radius: unset;
        margin-top: 9px;
    }

    .select2-search--dropdown{
        padding: 0 4px;
    }

    .select2-dropdown.select2-dropdown--below {
        top: 32px !important;
    }

}