.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    overflow: auto;
    min-width: 440px;
}
.autocomplete-suggestion {
    padding: 4px 5px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
}
.icon-pause:before {
    content: "\268C";
}
.icon-dot-circled:before {
    content: &#9673; /* ◉ */
}

.icon-circle-empty:before {
    content: &#9675; /* ○ */
}

.rounded-circle {
   border-radius: 50%;
}

.bg-success {
    background-color: #88CC66;
}

.bg-warning {
    background-color: #E67373;
    color: #fff!important;
}

.bg-danger {
    background-color: #E67373;
    color: #fff!important;
}

ul.gallery-list > li {
    float: left;
    width: calc(100% / 4 - 20px);
    height: 160px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 10px;
    list-style: none;
}

ul.gallery-list > li::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: all 0.3s ease;
}

ul.gallery-list > li:hover::after {
    opacity: 1;
}

ul.gallery-list > li:hover span {
    opacity: 1;
    pointer-events: auto;
}

ul.gallery-list > li span {
    display: inline-block;
    width: 100%;
    height: 52px;
    padding: 52px 0px;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

ul.gallery-list > li a.ico-zoom {
    width: 52px;
    height: 52px;
    background: url(../images/ico-zoom.png) no-repeat center #fff;
    display: inline-block;
    border-radius: 52px;
    margin: 0px 3px;
}

.en-row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.en-col {
    padding: 10px;
}
.en-col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
@media (max-width: 1280px) {
    .en-col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.quick_search_mobile {
    width: 100% !important;
    height: 3em !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 12px !important;
    padding: 0 48px 0 44px !important;
    box-sizing: border-box;
    background: #555 !important;
    color: white !important;
}


.default-style .quick_search_mobile::placeholder {
    color: #adaeae !important;
}



/* Styles for the overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-opaque black */
    z-index: 9996; /* Place it above other content */
}

/* Initial styles for the closed state */
.slider {
    width: 50%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -50%; /* Initially hidden to the right */
    transition: right 0.3s ease-in-out;
    font-size: 16px!important;
    color: #808891!important;
    padding: 30px 50px;
    z-index: 9997!important;
}

.slider h6 {
    color: #383D41!important;
    font-size: 20px!important;
}

/* Styles for the open state */
.slider.open {
    right: 0; /* Slide in from the right */
}

.close-slider {
    background-color: transparent;
    cursor: pointer;
}

.overlay.open {
    display: block; /* Display the overlay when open */
}

@media (max-width: 1280px) {
    .slider {
        width: 100%;
        right: -100%;
    }
}