﻿/* Reset and Base Styles */
:root {
    --primary-color: #006a4e;
    --primary-light: #8ab5aa;
    --secondary-color: #2c2c2c;
    --light-gray: #f8f8fa;
    --border-color: #e2e2e2;
    --text-color: #2c2c2c;
    --text-light: #636161;
    --gold: #bb9963;
    --rating-color: #ffc107;
}

*:not(i) {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif !important;
}
.container {
    max-width: 1400px;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #2c2c2c;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
[data-mdpersiandatetimepicker][disabled] {
    opacity: 0.5;
    cursor: default;
}

.mds-bootstrap-persian-datetime-picker-container {
    min-width: 300px;
    font-size: 12px;
    position: relative;
    overflow: visible;
}

    .mds-bootstrap-persian-datetime-picker-container.rtl {
        direction: rtl;
    }

    .mds-bootstrap-persian-datetime-picker-container table table tbody.days td.selected-range-days {
        background-color: #43ad7a !important;
    }

    .mds-bootstrap-persian-datetime-picker-container table table tbody.days td.selected-range-days-start-end {
        background-color: #83b5f4 !important;
    }

    .mds-bootstrap-persian-datetime-picker-container .select-year-box,
    .mds-bootstrap-persian-datetime-picker-container .select-year-inline-box {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        text-align: center;
        transition: all 200ms ease;
        overflow: hidden;
        z-index: 9999999;
    }

        .mds-bootstrap-persian-datetime-picker-container .select-year-box.inline {
            top: 23px !important;
            overflow: hidden;
        }

        .mds-bootstrap-persian-datetime-picker-container .select-year-box.w-0,
        .mds-bootstrap-persian-datetime-picker-container .select-year-inline-box.w-0 {
            height: 0;
        }

        .mds-bootstrap-persian-datetime-picker-container .select-year-box button {
            font-size: 16px;
        }

        .mds-bootstrap-persian-datetime-picker-container .select-year-box [selected-year] button {
            background-color: aquamarine;
        }

    .mds-bootstrap-persian-datetime-picker-container.rtl table {
        direction: rtl;
    }

    .mds-bootstrap-persian-datetime-picker-container.rtl tfoot table {
        direction: ltr;
    }

    .mds-bootstrap-persian-datetime-picker-container.rtl .dropdown-toggle::after {
        margin-left: 0;
        margin-right: 0.255em;
    }

    .mds-bootstrap-persian-datetime-picker-container * {
        font-size: 12px;
    }

    .mds-bootstrap-persian-datetime-picker-container table {
        margin-bottom: 0;
    }

        .mds-bootstrap-persian-datetime-picker-container table th,
        .mds-bootstrap-persian-datetime-picker-container table td {
            padding: 1px;
            font-size: 14px;
            text-align: center;
        }

        .mds-bootstrap-persian-datetime-picker-container table tbody td[data-next-month] .btn,
        .mds-bootstrap-persian-datetime-picker-container table tbody td[data-prev-month] .btn {
            background: #fff;
            border: none;
            cursor: default;
        }

        .mds-bootstrap-persian-datetime-picker-container table table {
            background: transparent !important;
            background-color: transparent !important;
            border: none;
        }

            .mds-bootstrap-persian-datetime-picker-container table table th {
                border: none;
            }

            .mds-bootstrap-persian-datetime-picker-container table table input[type="text"] {
                width: 50px;
                border: none;
                text-align: center;
                background-color: #fff;
            }

    .mds-bootstrap-persian-datetime-picker-container th {
        padding: 0;
    }

    .mds-bootstrap-persian-datetime-picker-container table table tbody.days {
        border: 0;
    }

        .mds-bootstrap-persian-datetime-picker-container table table tbody.days tr:first-child > td {
            vertical-align: top;
            padding-bottom: 5px;
            width: 14.2%;
            cursor: default;
            font-weight: bold;
        }

        .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-day] {
            cursor: pointer;
            transition: all 200ms ease;
        }

            .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-day][data-today] {
                background-color: aquamarine;
            }

            .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-day][data-selectedday] {
                background-color: #96daff;
            }

        .mds-bootstrap-persian-datetime-picker-container table table tbody.days td.selected-range-days-start-end {
            background-color: #c9e1ff;
        }

        .mds-bootstrap-persian-datetime-picker-container table table tbody.days td.selected-range-days {
            background-color: #d9f2e6;
        }

        .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-special-date] {
            background-color: #c7f7c7;
            border: 1px solid #00ce00;
            transition: all 200ms ease;
        }

            .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-special-date]:hover {
                background-color: #7bff7b;
                border-color: #31cc31;
            }

        .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-pm],
        .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-nm],
        .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[disabled] {
            cursor: default;
            opacity: 0.2;
            transition: none;
        }

            .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-pm]:hover,
            .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-nm]:hover,
            .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[disabled]:hover {
                cursor: default;
                opacity: 0.3;
                transition: none;
            }

            .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-day]:not([data-special-date]):hover,
            .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-nm]:hover,
            .mds-bootstrap-persian-datetime-picker-container table table tbody.days td[data-pm]:hover {
                background: #ccc;
            }

    .mds-bootstrap-persian-datetime-picker-container .btn {
        width: 100%;
        margin-bottom: 1px;
        padding: 1px;
        font-size: 14px;
    }

        .mds-bootstrap-persian-datetime-picker-container .btn[disabled] {
            opacity: 0.2;
        }

    .mds-bootstrap-persian-datetime-picker-container .dropdown {
        padding: 0;
        padding-bottom: 1px;
        text-align: center;
    }

    .mds-bootstrap-persian-datetime-picker-container .dropdown-menu {
        min-width: 100px;
        width: 100px;
    }

    .mds-bootstrap-persian-datetime-picker-container .dropdown-item {
        padding: 0;
        padding-bottom: 1px;
        cursor: pointer;
        text-align: center;
    }

        .mds-bootstrap-persian-datetime-picker-container .dropdown-item:not(.disabled):hover {
            background-color: #ccc;
        }

        .mds-bootstrap-persian-datetime-picker-container .dropdown-item.disabled {
            opacity: 0.2;
            cursor: default;
        }

    .mds-bootstrap-persian-datetime-picker-container .dropdown-divider {
        margin-bottom: 1px;
        cursor: default;
    }

.mds-bootstrap-persian-datetime-picker-popover {
    max-width: 100%;
    -webkit-box-shadow: 0 5px 15px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px 1px rgba(0, 0, 0, 0.1);
    z-index: 999999999;
}

.mds-bootstrap-persian-datetime-picker-modal * {
    font-size: 24px !important;
}

.container {
    max-width: 1400px !important;
}

@media screen and (max-width:500px) {
    .mds-bootstrap-persian-datetime-picker-popover {
        left: -43px !important;
    }
}
.labelSelect2 {
    position: absolute !important;
}

.select2-selection--single {
    display: flex !important;
    width: 96%;
    padding: 20px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    align-items: center;
    margin-top: 30px;
    color: #757575;
}

.select2-selection__clear {
    margin-left: 18px;
    font-size: 21px;
}

.select2-results__options {
    text-align: right;
}

.select2-container {
    width: 98% !important;
    direction: rtl;
}

.selectWrapper {
    position: relative;
    top: 30px;
    border: 1px solid #ced4da !important;
}

.selectWrapperLocation {
    position: relative;
    top: 30px;
}

.select2-search__field {
    border-radius: 5px;
    outline: none !important;
    border: 1px solid #333;
    margin-top: 10px;
}

.select2-dropdown.select2-dropdown--below {
    max-height: 400px;
    overflow-y: auto;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    background-color: #fff;
    position: relative;
    top: 40px;
    right: 25px;
    /* z-index: 5; */
    width: fit-content;
    color: #757575;
}
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}
/* Header Styles */

.header {
    border-bottom: 1px solid #d9d9d9;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    position: relative;
}

    .main-nav a.active {
        position: relative;
    }

        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: -18px;
            right: 0;
            width: 100%;
            height: 2px;
            background-color: #006a4e;
        }
/* Main Content Styles */

.main-content {
    padding: 30px 0;
}
/* Search Section */

.search-section {
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    margin-right: auto;
    margin-left: auto;
    width: 97%;
    max-height: 140px;
    overflow: visible;
}
.counter {
    display: flex;
    align-items: center;
    gap: 23px;
}
.dropdown-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid var(--gray-200);
}
.add-room-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.tab-btn {
    background-color: transparent !IMPORTANT;
    border: none;
    font-weight: 500;
    color: #757576 !important;
    text-shadow: none;
    padding-bottom: 8px;
    clip-path: border-box;
    border-radius: 0 !important;
    position: relative;
   
}

    .tab-btn.active {
        color: #2c2c2c;
        border-bottom: 2px solid #006a4e !important;
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-bottom: 24px;
}
.btn-main-search a {
    color:#fff !important;
}
.form-group {
    padding: 12px;
}

.form-grid > .form-group {
    /* border-radius: 6px; */
    /* padding: 1.5rem; */
    /* border: 1px solid #77777782; */
    /* padding: 12px; */
    padding: 0;
}

/* Room Selection Trigger */
.room-selection-trigger {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 6px 10px;
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
    margin-bottom: 2px;
    top: -7px;
    right: -17px;
}

.room-info {
    display: flex;
    flex-direction: column;
}

    .room-info > span {
        font-size: 14px;
        font-weight: 500;
    }

    .room-info > .label {
        font-size: 14px;
        color: var(--gray-500);
        margin-top: 4px;
    }

/* Room Selection Dropdown */
.room-selection-dropdown {
    position: relative;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 10;
    border-radius: 5px;
    box-shadow: 1px 2px 10px #33333340;
    overflow: hidden;
    display: block; /* Change to 'none' to hide initially */
    z-index: 500;
    width: 314px;
}

.rooms-container {
    max-height: 500px;
    overflow-y: auto;
}

/* Room Styles */
.room {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .room-header h3 {
        font-size: 18px;
        font-weight: 700;
    }

.delete-room-btn {
    background: none;
    border: none;
    color: var(--red);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

/* Guest Type Styles */
.guest-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.guest-info h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.guest-info p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Icons using CSS */
.clock-icon {
    background-image: url('/images/icon/History 2.svg');
}



.containerAge {
    background: white;
    border-radius: 16px;
    padding: 0;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    padding: 20px;
    z-index: 26;
    position: relative;
    display: none;
}

.headerAge {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.header-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.passenger-count {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.age-groups {
    padding: 20px;
}

.age-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f1f3f4;
}

    .age-group:last-child {
        border-bottom: none;
    }

.age-label {
    font-size: 16px;
    color: #212529;
    font-weight: 500;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.2s ease;
}

    .counter-btn:hover {
        border-color: #198754;
        color: #198754;
    }

    .counter-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

        .counter-btn:disabled:hover {
            border-color: #dee2e6;
            color: #6c757d;
        }

.counter-value {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    min-width: 20px;
    text-align: center;
}

.confirm-btn {
    background: #198754;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px;
    width: calc(100% - 40px);
    transition: background-color 0.2s ease;
}

    .confirm-btn:hover {
        background: #157347;
    }


.terms-agreement > .ui-checkbox {
    float: right;
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 12px;
    color: #757575;
    margin-bottom: 4px;
}

.input-with-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .input-with-icon i {
        color: #757575;
        font-size: 14px;
    }

.search-btn {
    background-color: #006a4e !important;
    color: white !important;
    border: none;
    border-radius: 6px !important;
    padding: 8px 24px;
    font-weight: 500 !important;
    font-size: 15px !important;
    text-shadow: none !important;
}

/* Results Section */
.results-section {
    padding: 20px;
}

.results-container {
    display: flex;
    gap: 20px;
}

.results-sidebar {
    flex: 0 0 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    position: sticky;
    top: 0;
    height: 125vh;
    overflow-y: scroll;
}
body {
    overflow:visible;
}
.results-content {
    flex: 1;
    background-color: #fff;
    padding: 20px 25px;
}

.sidebar-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

    .sidebar-section:last-child {
        border-bottom: none;
    }

    .sidebar-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: var(--text-color);
    }

.iconFilter {
    width: 30px;
    height: 30px;
}
.checkbox-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    flex-direction: row;
}
.hotel-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
}
.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

    .checkbox-item label {
        margin-bottom: 0;
        font-size: 14px;
        color: var(--text-color);
    }

.count {
    position: absolute;
    left: 0;
    color: var(--text-light) #636161;
    font-size: 12px;
    font-size: 16px;
    font-weight: 500;
    min-width: 20px;
    text-align: center; 
    left: 60px;
    color: var(--text-light);
    font-size: 17px;
}
.PassengerLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    background-color: #fff !important;
    position: relative;
    top: 18px !important;
    z-index: 5;
    width: fit-content;
    right: 5px;
}
.room-info {
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 10px;
    height: 43px;
}
    .room-info > span {
        font-size: 14px;
        font-weight: 500;
        text-align: right;
        top: 6px;
        position: relative;
    }

.room-info {
    display: flex;
    flex-direction: column;
}
.price-range {
    margin-top: 10px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.min-price, .max-price {
    font-size: 12px;
    color: var(--text-light);
}

.range-slider {
    width: 100%;
    margin-top: 10px;
}

.slider {
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border-color);
    outline: none;
    border-radius: 5px;
}

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: var(--primary-color);
        cursor: pointer;
    }

.rating-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.rating-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .rating-option input[type="radio"] {
        width: 18px;
        accent-color: #006a4e;
        height: 16px;
    }

    .rating-option label {
        display: flex;
        align-items: center;
        gap: 3px;
        margin-bottom: 0;
        font-size: 14px;
        color: var(--text-color);
    }

    .rating-option i {
        color: var(--rating-color);
        font-size: 12px;
    }

.show-more {
    margin-top: 10px;
    text-align: center;
    margin-right: 84px;
    width: 73%;
}

    .show-more a {
        color: var(--primary-color);
        font-size: 14px;
    }

.hotel-search-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Vazir', Arial, sans-serif;
    font-size: 14px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
}
.accommodation-types > .checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    flex-direction: row;
}
    .checkbox-item.active {
        border-color: #0B5345;
        background-color: rgba(11, 83, 69, 0.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
        .checkbox-item.active > .hotel_amenities_Icon > svg > * {
            stroke: #0B5345;
        }
    .checkbox-item input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .checkbox-item label {
        margin-bottom: 0;
        font-size: 14px;
        color: var(--text-color);
    }

 

.price-range {
    margin-top: 10px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.min-price, .max-price {
    font-size: 12px;
    color: var(--text-light);
}

.range-slider {
    width: 100%;
    margin-top: 10px;
}

.slider {
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border-color);
    outline: none;
    border-radius: 5px;
}

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: var(--primary-color);
        cursor: pointer;
    }

.rating-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.rating-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .rating-option input[type="radio"] {
        width: 16px;
        height: 16px;
    }

    .rating-option label {
        display: flex;
        align-items: center;
        gap: 3px;
        margin-bottom: 0;
        font-size: 14px;
        color: var(--text-color);
    }

    .rating-option i {
        color: var(--rating-color);
        font-size: 12px;
    }

.show-more {
    margin-top: 10px;
    text-align: center;
}

    .show-more a {
        color: var(--primary-color);
        font-size: 14px;
    }
/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.results-count {
    font-size: 14px;
    color: var(--text-light);
}

.results-filters {
    display: flex;
    gap: 20px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px 0;
    position: relative;
}

    .filter-item.active { 
        font-weight: bold;
    }

     

/* Map Container */
.map-container {
    width: 100%;
    height: 200px;
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.google-map {
    width: 100%;
    height: 100%;
}

.map-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1;
    cursor: pointer;
}

/* Hotel Cards */
.hotel-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hotel-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    position: relative;
}

.hotel-image {
    flex: 0 0 200px;
    position: relative;
}

    .hotel-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--text-light);
    font-size: 16px;
}

.hotel-info {
    flex: 2;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.hotel-name {
    font-size: 18px;
    color: var(--text-color);
}

.hotel-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*background-color: #BB9963;*/
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    width: max-content;
    max-width: 111px;
    margin: 12px 0 0px;
}
.fas.fa-star {
    color: #ffc107;
}
.rating {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    color: #333;
    align-items: stretch;
    gap: 5px;
}

.rating-text {
    font-size: 15px;
}

.hotel-address {
    margin-bottom: 15px;
}

    .hotel-address p {
        font-size: 14px;
        color: var(--text-light);
        line-height: 2;
        display:inline-block;
    }

.hotel-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    display: grid;
    gap: 5px;
    font-size: 14px;
    grid-template-columns: 0.5fr 1fr;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-light);
}

.hotel-price {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--border-color);
}

.price-info {
    text-align: center;
    margin-bottom: 15px;
}

.price-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-value {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
}

.details-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Vazirmatn', Arial, sans-serif;
    font-size: 14px;
    cursor: pointer;
    /* transition: background-color 0.3s; */
    width: 100%;
    text-align:center;
}
.details-btn {
    color: #f1f1f1 !important;
}
    .details-btn:hover {
        background-color: #005540;
    }

 
 
 

body, input, select, textarea, button, .ui-btn {
    font-size: 1em;
    line-height: 1.3;
    font-family: sans-serif;
}

.ui-rangeslider .ui-slider-input.ui-rangeslider-last {
    float: right;
}
 

input.ui-slider-input {
    display: block;
    float: left;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    padding: 4px;
    width: 40px;
    height: 20px;
    line-height: 20px;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    text-align: center;
    vertical-align: text-bottom;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -ms-box-sizing: content-box;
    box-sizing: content-box;
}
 



body, input, select, textarea, button, .ui-btn {
    font-size: 1em;
    line-height: 1.3;
    font-family: sans-serif;
}

.ui-rangeslider .ui-rangeslider-sliders {
    position: relative;
    overflow: visible;
    height: 30px;
    margin: 0 68px;
}

.ui-overlay-a, .ui-page-theme-a, .ui-page-theme-a .ui-panel-wrapper {
    background-color: #f9f9f9;
    border-color: #bbb;
    color: #333; 
}
 
html > body .ui-rangeslider .ui-rangeslider-sliders .ui-slider-track:first-child {
    height: 15px;
    border-width: 1px;
}

.ui-rangeslider .ui-rangeslider-sliders .ui-slider-track:first-child {
    background-color: transparent;
    background: 0;
    border-width: 0;
    height: 0;
}
 

.ui-bar-a, .ui-page-theme-a .ui-bar-inherit, html .ui-bar-a .ui-bar-inherit, html .ui-body-a .ui-bar-inherit, html body .ui-group-theme-a .ui-bar-inherit {
    background-color: #e9e9e9;
    border-color: #ddd;
    color: #333;
    text-shadow: 0 1px 0 #eee;
    font-weight: 700;
}

.ui-btn-corner-all, .ui-btn.ui-corner-all, .ui-slider-track.ui-corner-all, .ui-flipswitch.ui-corner-all, .ui-li-count {
    -webkit-border-radius: .3125em;
    border-radius: .3125em;
}

.ui-slider-track {
    position: relative;
    overflow: visible;
    border-width: 1px;
    border-style: solid;
    height: 15px;
    margin: 0 15px 0 68px;
    top: 6px;
}
 
 
user agent stylesheet
div {
    display: block;
    unicode-bidi: isolate;
}

.ui-overlay-a, .ui-page-theme-a, .ui-page-theme-a .ui-panel-wrapper {
    background-color: #f9f9f9;
    border-color: #bbb;
    color: #333; 
}
 
.ui-rangeslider .ui-slider-track:first-child .ui-slider-bg {
    display: none;
}

.ui-page-theme-a .ui-btn.ui-btn-active, html .ui-bar-a .ui-btn.ui-btn-active, html .ui-body-a .ui-btn.ui-btn-active, html body .ui-group-theme-a .ui-btn.ui-btn-active, html head + body .ui-btn.ui-btn-a.ui-btn-active, .ui-page-theme-a .ui-checkbox-on:after, html .ui-bar-a .ui-checkbox-on:after, html .ui-body-a .ui-checkbox-on:after, html body .ui-group-theme-a .ui-checkbox-on:after, .ui-btn.ui-checkbox-on.ui-btn-a:after, .ui-page-theme-a .ui-flipswitch-active, html .ui-bar-a .ui-flipswitch-active, html .ui-body-a .ui-flipswitch-active, html body .ui-group-theme-a .ui-flipswitch-active, html body .ui-flipswitch.ui-bar-a.ui-flipswitch-active, .ui-page-theme-a .ui-slider-track .ui-btn-active, html .ui-bar-a .ui-slider-track .ui-btn-active, html .ui-body-a .ui-slider-track .ui-btn-active, html body .ui-group-theme-a .ui-slider-track .ui-btn-active, html body div.ui-slider-track.ui-body-a .ui-btn-active {
    background-color: #38c;
    border-color: #38c;
    color: #fff;
    text-shadow: 0 1px 0 #059;
}

.ui-slider-track .ui-slider-bg, .ui-slider-switch .ui-slider-label, .ui-slider-switch .ui-slider-inneroffset, .ui-slider-handle {
    -webkit-border-radius: inherit;
    border-radius: inherit;
}

.ui-slider-track .ui-slider-bg {
    height: 100%;
}

.ui-btn-active {
    cursor: pointer;
}
 

.ui-bar-a, .ui-page-theme-a .ui-bar-inherit, html .ui-bar-a .ui-bar-inherit, html .ui-body-a .ui-bar-inherit, html body .ui-group-theme-a .ui-bar-inherit {
    background-color: #e9e9e9;
    border-color: #ddd;
    color: #333;
    text-shadow: 0 1px 0 #eee;
    font-weight: 700;
}
 

.ui-slider-track {
    position: relative;
    overflow: visible;
    border-width: 1px;
    border-style: solid;
    height: 15px;
    margin: 0 15px 0 68px;
    top: 6px;
}
 
.ui-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    flex-direction: row-reverse;
}
 
.ui-page-theme-a .ui-btn.ui-btn-active, html .ui-bar-a .ui-btn.ui-btn-active, html .ui-body-a .ui-btn.ui-btn-active, html body .ui-group-theme-a .ui-btn.ui-btn-active, html head + body .ui-btn.ui-btn-a.ui-btn-active, .ui-page-theme-a .ui-checkbox-on:after, html .ui-bar-a .ui-checkbox-on:after, html .ui-body-a .ui-checkbox-on:after, html body .ui-group-theme-a .ui-checkbox-on:after, .ui-btn.ui-checkbox-on.ui-btn-a:after, .ui-page-theme-a .ui-flipswitch-active, html .ui-bar-a .ui-flipswitch-active, html .ui-body-a .ui-flipswitch-active, html body .ui-group-theme-a .ui-flipswitch-active, html body .ui-flipswitch.ui-bar-a.ui-flipswitch-active, .ui-page-theme-a .ui-slider-track .ui-btn-active, html .ui-bar-a .ui-slider-track .ui-btn-active, html .ui-body-a .ui-slider-track .ui-btn-active, html body .ui-group-theme-a .ui-slider-track .ui-btn-active, html body div.ui-slider-track.ui-body-a .ui-btn-active {
    background-color: #38c;
    border-color: #38c;
    color: #fff;
    text-shadow: 0 1px 0 #059;
}

.ui-slider-track .ui-slider-bg, .ui-slider-switch .ui-slider-label, .ui-slider-switch .ui-slider-inneroffset, .ui-slider-handle {
    -webkit-border-radius: inherit;
    border-radius: inherit;
}

.ui-slider-track .ui-slider-bg {
    height: 100%;
}

.ui-btn-active {
    cursor: pointer;
}

.ui-slider-track .ui-btn.ui-slider-handle {
    font-size: .9em;
    line-height: 30px;
}

.ui-slider-track .ui-btn.ui-slider-handle {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 28px;
    height: 28px;
    margin: -15px 0 0 -15px;
    outline: 0;
    padding: 0;
}

.ui-page-theme-a .ui-btn, html .ui-bar-a .ui-btn, html .ui-body-a .ui-btn, html body .ui-group-theme-a .ui-btn, html head + body .ui-btn.ui-btn-a, .ui-page-theme-a .ui-btn:visited, html .ui-bar-a .ui-btn:visited, html .ui-body-a .ui-btn:visited, html body .ui-group-theme-a .ui-btn:visited, html head + body .ui-btn.ui-btn-a:visited {
    background-color: #f6f6f6;
    border-color: #ddd;
    color: #333;
    text-shadow: 0 1px 0 #f3f3f3;
}

    .ui-page-theme-a .ui-btn.ui-btn-active, html .ui-bar-a .ui-btn.ui-btn-active, html .ui-body-a .ui-btn.ui-btn-active, html body .ui-group-theme-a .ui-btn.ui-btn-active, html head + body .ui-btn.ui-btn-a.ui-btn-active, .ui-page-theme-a .ui-checkbox-on:after, html .ui-bar-a .ui-checkbox-on:after, html .ui-body-a .ui-checkbox-on:after, html body .ui-group-theme-a .ui-checkbox-on:after, .ui-btn.ui-checkbox-on.ui-btn-a:after, .ui-page-theme-a .ui-flipswitch-active, html .ui-bar-a .ui-flipswitch-active, html .ui-body-a .ui-flipswitch-active, html body .ui-group-theme-a .ui-flipswitch-active, html body .ui-flipswitch.ui-bar-a.ui-flipswitch-active, .ui-page-theme-a .ui-slider-track .ui-btn-active, html .ui-bar-a .ui-slider-track .ui-btn-active, html .ui-body-a .ui-slider-track .ui-btn-active, html body .ui-group-theme-a .ui-slider-track .ui-btn-active, html body div.ui-slider-track.ui-body-a .ui-btn-active {
        background-color: #38c;
        border-color: #38c;
        color: #fff;
        text-shadow: 0 1px 0 #059;
    }

input:not([type="image" i], [type="range" i], [type="checkbox" i], [type="radio" i]) {
    overflow-clip-margin: 0px !important;
    overflow: clip !important;
}

user agent stylesheet
input[type="number" i] {
    padding-block: 1px;
    padding-inline: 2px;
}
 
/* Responsive */
@media (max-width: 992px) {
    .results-container {
        flex-direction: column;
    }

    .results-sidebar {
        flex: 0 0 auto;
        width: 100%;
    }

    .hotel-card {
        flex-direction: column;
    }

    .hotel-image {
        flex: 0 0 200px;
        width: 100%;
    }

    .hotel-price {
        border-right: none;
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        gap: 15px;
    }

    .search-row {
        flex-direction: column;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .results-filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .footer-top, .footer-middle, .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

        .newsletter-form input {
            width: 100%;
        }
}

@font-face {
    font-family: 'Vazir';
    src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@v30.1.0/dist/Vazir.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazir', Tahoma, Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    direction: rtl;
    color: #333;
}

.insurance-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.insurance_header_info_Card {
    display: flex;
    gap: 6px;
}

.insurance_header_info {
    display: flex;
    gap: 40px;
    /* align-content: center; */
    justify-content: flex-start;
    align-items: baseline;
    height: 70px;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0 40px;
}
/* Header Styles */
.insurance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.results-count {
    font-size: 16px;
    font-weight: bold;
}

.tabs-container {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    background-color: #fff;
    margin-bottom: 20px;
}

.tab {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    flex: 0.25;
}

    .tab.active {
        border-bottom: 2px solid #006a4e;
    }

.tab-icon {
    margin-left: 10px;
    color: #666;
}

.tab.active .tab-icon {
    color: #006a4e;
}

.tab-content {
    display: flex;
    flex-direction: column;
}

.tab-title {
    font-size: 14px;
    margin-bottom: 5px;
}

.tab.active .tab-title {
    color: #006a4e;
    font-weight: bold;
}

.tab-price {
    font-size: 14px;
    color: #666;
}

/* Content Container Styles */
.content-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Filters Section Styles */
.filters-section {
    flex: 0 0 300px;
}

.filter-group {
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

 

.filter-title {
    font-weight: bold;
}

.filter-toggle {
    color: #666;
}

.filter-content {
    padding: 15px;
}

/* Price Filter Styles */
.price-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.price-input {
    display: flex;
    flex-direction: column;
}

    .price-input label {
        font-size: 12px;
        color: #666;
        margin-bottom: 5px;
        text-align: center;
    }

    .price-input input {
        width: 120px;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        text-align: center;
    }

.price-slider-container {
    padding: 10px 0;
}

.price-slider {
    position: relative;
    height: 5px;
    margin: 0 10px;
}

.slider-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #ddd;
    border-radius: 3px;
}

.slider-range {
    position: absolute;
    top: 0;
    height: 5px;
    background-color: #006a4e;
    border-radius: 3px;
}

.slider-min, .slider-max {
    position: absolute;
    top: 0;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

    .slider-min::-webkit-slider-thumb, .slider-max::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 0;
        height: 0;
        background: transparent;
        cursor: pointer;
        pointer-events: auto;
    }

.slider-thumb {
    position: absolute;
    top: -7px;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 2px solid #006a4e;
    border-radius: 50%;
    cursor: pointer;
}

.min-thumb {
    left: 25%;
}

.max-thumb {
    left: 75%;
}

/* Accommodation Filter Styles */
.accommodation-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accommodation-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-count {
    font-size: 14px;
}

.option-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
}

/* Results Section Styles */
.results-section {
    flex: 1;
}

.insurance-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-content {
    flex: 1;
    padding: 20px;
}

.card-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.card-details {
    flex: 1;
}

.coverage-badge {
    display: inline-block;
    background-color: #10553F1C;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 10px;
    color: #10553F;
}

.card-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 12px;
    color: #666;
}

.card-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 14px;
    margin-left: 15px;
}

.company-logo {
    width: 90px;
    height: 120px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    padding: 5px;
}

    .company-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.company-name {
    font-size: 14px;
    font-weight: bold;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.card-price {
    font-size: 16px;
    font-weight: bold;
}

.card-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-right: 1px solid #f0f0f0;
    width: 200px;
}

.price-for-travelers {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.details-button {
    width: 100%;
    padding: 10px;
    background-color: #006a4e;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin: 10px 0;
    transition: background-color 0.3s;
}

    .details-button:hover {
        background-color: #005a42;
    }

.total-price {
    font-size: 16px;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .content-container {
        flex-direction: column;
    }

    .filters-section {
        flex: none;
        width: 100%;
    }

    .insurance-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tabs-container {
        width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .insurance-card {
        flex-direction: column;
    }

    .card-sidebar {
        width: 100%;
        border-right: none;
        border-top: 1px solid #f0f0f0;
    }

    .card-main {
        flex-direction: column;
    }

    .card-company {
        flex-direction: row;
        margin-right: 0;
        margin-top: 15px;
        gap: 10px;
    }
}

/* ////////

*/

.range_container {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 1% auto;
}

.sliders_control {
    position: relative;
    min-height: 50px;
    direction: ltr;
}

.form_control {
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    color: #635a5a;
    flex-direction: row-reverse;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
    background: #f7f7f7;
}

input[type=range]::-webkit-slider-thumb:active {
    box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
    -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

input[type="number"] {
    color: #8a8383;
    width: 130px;
    height: 30px;
    font-size: 20px;
    border: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: #C6C6C6;
    pointer-events: none;
}

#fromSlider {
    height: 0;
    z-index: 1;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    visibility: visible;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

    .modal-header h3 {
        margin: 0;
        font-size: 18px;
    }

.modal-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        color: #666;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

        .form-group input:disabled {
            background-color: #f9f9f9;
            color: #888;
        }

.submit-btn {
    background-color: #006a4e;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

    .submit-btn:hover {
        background-color: #005540;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        color: #666;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

        .form-group input:disabled {
            background-color: #f9f9f9;
            color: #888;
        }

.submit-btn {
    background-color: #006a4e;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

    .submit-btn:hover {
        background-color: #005540;
    }

/* Sidebar Styles */
.sidebar {
    width: 300px;
    flex-shrink: 0;
    flex: 0 0 300px;
    position: sticky;
    top: 20px;
    height: calc(120vh - 180px);
    overflow-y: auto;
    border-radius: 8px;
    overflow-x: hidden;
    background-color: #fff;
}

body {
    overflow: visible;
}

.filter-section {
    background-color: #fff;
    /* border-radius: 8px; */
    margin-bottom: 15px;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    padding: 10px 0;
    /*border-bottom: 1px solid #99999975;*/
    border-bottom: 1px solid #f0f0f0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    /*border-bottom: 1px solid #f0f0f0;*/
}

    .filter-header h3 {
        font-size: 16px;
        font-weight: 600;
    }

.filter-content hr {
    width: 89%;
    margin: 0 auto;
    margin-top: 20px;
    border: none;
    border-top: 1px solid #99999973;
}
    .filter-content {
    padding: 10px 15px;
}

.filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .filter-item input[type="checkbox"] {
        margin-left: 10px;
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

    .filter-item label {
        font-size: 14px;
        cursor: pointer;
        user-select:none;
    }

.search-destination {
    position: relative;
    margin-bottom: 15px;
}

    .search-destination input {
        width: 100%;
        padding: 10px 35px 10px 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
    }

    .search-destination i {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }
