.top-header {
    background-color: #414141;
    color: white;
    padding: 8px 0;
    font-size: 12px;
}

.navbar {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    flex-direction: row;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-align: center;
}

.nav-link:hover {
    color: #17a2b8;
}

.search-container {
    display: flex;
}

.search-filters {
    width: 260px;
    flex-shrink: 0;
    background-color: #34495e;
    color: white;
    padding: 15px;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.search-filters:hover {
    overflow-y: scroll;
}

.search-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #4CAF50;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 0;
}

.search-text {
    position: relative;
    color: #006400;
}

.triangle-icon {
    color: #4CAF50;
}

.map-container {
    flex: 1;
    top: 0;
    height: 30vh;
    position: relative;
    background-color: #F8F9FA;
}

#map {
    width: 100%;
    height: 100%;
}

.marker-content.selected {
    background-color: #4CAF50 !important;
    color: white !important;
    position: relative !important;
}

.fullscreen-toggle,
.pin-map {
    position: absolute;
    top: 8px;
    left: 55px;
    z-index: 1000;
    background: white;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 9px 12px;
}

.pin-map {
    left: 10px;
}

.sticky-map {
    position: sticky;
    top: 0;
    z-index: 10;
}

.map-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 1050 !important;
}

.counter-btn {
    background: white;
    border: 1px solid #ccc;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bolder;
}

.fheading {
    text-align: center;
    background-color: #34495e;
    color: white;
    border: 1px solid #fff;
}

.hotel-compact {
    padding: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    margin-right: 0;
}

.hotel-compact>.row {
    margin-right: 0;
}


.hotel-compact:hover {
    background-color: #eee;
    border-radius: 5px;
}

.hotel-name {
    font-weight: 600;
    margin-bottom: 0;
}

.star-rating {
    color: #ffc107;
}

#star-rating {
    flex-wrap: nowrap;
    align-items: center;
}

#star-rating .star {
    font-size: 1.5rem;
    color: gray;
    cursor: pointer;
    transition: transform 0.2s;
}

#star-rating .star:hover {
    transform: scale(1.2);
}

#price-value, #rating-value {
    position: absolute;
    left: 0 !important;
    text-align: center;
    top: 20px;
    width: 100%;
}

.slider-fill {
    z-index: 1;
    position: absolute;
    top: 40%;
    left: 0;
    height: 4px;
    background-color: #76B66D;
    transform: translateY(-50%);
}

.hotel-rating {
    display: flex;
    align-items: center;
}

.poi-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.poi-item i {
    margin-right: 5px;
    color: #555;
}

.multi-line-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-display {
    box-shadow: rgba(0, 0, 0, 0.1) 1px 8px 15px 0px;
    align-self: center;
}

.original-price {
    text-decoration: line-through;
    color: #777;
    font-size: 13px;
}

.current-price {
    font-weight: bold;
    color: #fff;
    font-size: clamp(1rem, 4vw, 1.3rem);
    background-color: #34495e;
    text-align: center;
}

.book-btn,
.btn-info {
    background-color: #009DCE;
}

.btn-success {
    background-color: #8FC886;
}

.book-btn {
    color: white;
    border: none;
    text-align: center;
    padding: 8px;
    font-weight: bold;
}

.book-btn:hover {
    background-color: #0283ab;
    color: #fff;
}

.image-carousel {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    height: 13.2rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

.carousel-prev {
    left: 5px;
}

.carousel-next {
    right: 5px;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    font-size: 0.875rem;
    display: flex;
    justify-content: space-between;
}

.image-caption span,
.features>div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 25ch;
    font-size: 0.875rem;
}

.hotel-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50ch;
    color: #191966;
    font-size: 18px;
    FONT-WEIGHT: bolder;
}

.room-type {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100ch;
}

.gm-style-iw-chr {
    display: none;
}

.price-label {
    background: #666666;
    padding: 4px;
    border-radius: 5px;
    margin-top: 10px;
}

.loading-spinner {
    display: inline-block;
    width: 80px;
    height: 80px;
    border: 8px solid #007bff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.search-results {
    background-color: #F7F7F7;
    position: relative;
    min-height: 200px;
    flex: 1;
    display: flex;
    flex-direction: row;
}

.listings-column {
    flex: 1;
    min-width: 0;
}

.map-column {
    flex: 0 0 50vw;
    width: 50vw;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1000;
}

.map-column .map-container {
    height: 100%;
    min-height: 100%;
}

#sorting {
    background-color: #F7F7F7;
    position: sticky;
    top: 0;
    z-index: 1020;
}

#hotel-listing,
.map-container {
    border-left: 1px solid #dee2e6;
}

.features .btn-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.875rem;
    cursor: pointer;
}

.features .btn-link:hover {
    text-decoration: underline;
}

.range-slider {
    position: relative;
    height: 30px
}

.range-slider .track {
    position: absolute;
    height: 4px;
    background: #dee2e6;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px
}

.range-slider .range {
    position: absolute;
    height: 4px;
    background: #76B66D;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    margin: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    z-index: 3
}

input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 15px;
    height: 15px;
    background: #76B66D;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none
}

input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 15px;
    height: 15px;
    background: #76B66D;
    border: none;
    border-radius: 50%;
    cursor: pointer
}

.range-slider input[type="range"]:focus {
    outline: none
}

.hotel-all-airlines {
    background-color: #fff;
    border-radius: 4px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    padding: 0.25rem 0.5rem;
}

.hotel-compact .hotel-all-airlines:nth-of-type(n+2) {
    display: none;
}

.hotel-compact.show-all-flights .hotel-all-airlines {
    display: flex;
}

.hotel-all-airlines>* {
    width: 100%;
    max-width: 210px;
    text-align: center;
}

.hotel-all-airlines img {
    max-width: 90px;
    height: 30px;
    margin-right: 5px;
    object-fit: contain;
}

.package-outbound-airline,
.package-inbound-airline {
    max-width: 90px;
    height: 30px;
    object-fit: contain;
    margin-left: 10px;
}

.travel-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    max-width: 30rem;
    margin: 0 auto;
}

.spinner-container {
    position: relative;
    width: 6rem;
    height: 6rem;
    margin-bottom: 2rem;
}

.spinner {
    position: absolute;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 0.25rem solid #3b82f6;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

.plane-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

.progress-container {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
}

.progress-message {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 0.625rem;
    background-color: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #2563eb;
    border-radius: 9999px;
    transition: width 0.3s ease-out;
}

.progress-text {
    font-size: 0.875rem;
    color: #4b5563;
    margin-top: 0.5rem;
}

.icons-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: pulse 2s infinite;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    width: 2rem;
    height: 2rem;
    color: #3b82f6;
}

.icon-label {
    font-size: 0.75rem;
    color: #4b5563;
    margin-top: 0.25rem;
}

.loader-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Filters toggle button — mobile only */
#menu-toggle {
    display: none !important;
}

.language-dropdown {
    position: relative;
    display: inline-block;
    margin-left: auto;
    z-index: 1030;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1031;
    border-radius: 4px;
}

.language-dropdown-content.show {
    display: block;
}

.language-dropdown-content a {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-dropdown-content a:hover {
    background-color: #f1f1f1;
}

.language-button {
    background: none;
    text-decoration: none;
    border: 1px solid transparent;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.language-button:hover {
    border-color: #e9ecef;
}

.flag-img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    border: 1px solid #ddd;
}

.arrow-down {
    font-size: 10px;
}

.form-range::-webkit-slider-runnable-track {
    background-color: #DEE2E6;
    height: 5px;
}

.form-range::-moz-range-track {
    background-color: #DEE2E6;
    height: 5px;
}

.form-range::-ms-track {
    background-color: #DEE2E6;
    height: 5px;
}

.hotel-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hotel-modal-images {
    height: 500px;
    overflow: hidden;
    background-color: #000;
}

.hotel-modal-main-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.hotel-modal-prev,
.hotel-modal-next {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.hotel-modal-prev:hover,
.hotel-modal-next:hover {
    opacity: 1;
}

.hotel-modal-image-counter {
    font-size: 0.8rem;
    border-radius: 20px;
    z-index: 10;
}

.hotel-modal-pricing-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #28a745;
}

.hotel-modal-features-list,
.hotel-modal-distances-list {
    max-height: 300px;
    overflow-y: auto;
}

.feature-item,
.distance-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.7rem;
}

.feature-item i,
.distance-item i {
    margin-right: 0.7rem;
    color: #28a745;
    min-width: 16px;
}

.distance-item .distance-value {
    margin-left: auto;
    font-weight: bold;
    color: #495057;
}

.hotel-modal-customer-ratings .rating-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.hotel-modal-description h2 {
    color: #495057;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.3rem;
}

.hotel-modal-description p {
    text-align: justify;
    line-height: 1.6;
    color: #6c757d;
}

.no_of_nights button {
    width: 32px;
    height: 32px;
    margin: 0px 2px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    color: #fff;
    border-color: #009DCE;
}

@media (max-width: 768px) {
    .hotel-modal-images {
        height: 300px;
    }

    .modal-xl {
        max-width: 95%;
        margin: 0.5rem auto;
    }

    .hotel-modal-pricing-card {
        margin-top: 1rem;
    }

    .hotel-modal-features-list,
    .hotel-modal-distances-list {
        max-height: 200px;
    }
}

.contact-details div {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.btn-close {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hotel-name {
        max-width: 100%;
        font-size: 15px;
    }

    .room-type {
        max-width: 100%;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    /* Map: taller on mobile so it's useful, and fullscreen works properly */
    .map-container {
        height: 35vh;
        min-height: 200px;
    }

    .fullscreen-toggle,
    .pin-map {
        /* Make buttons bigger and easier to tap on touch screens */
        padding: 8px 10px;
        font-size: 1rem;
    }

    .search-container {
        flex-direction: column;
    }

    /* Package card: make full-width on mobile, stack image above content */
    .hotel-compact {
        padding: 10px;
    }

    .hotel-compact > .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hotel-compact .row.g-0.flex-nowrap {
        flex-wrap: wrap !important;
    }

    .hotel-compact .row.g-0.flex-nowrap > .col-9 {
        width: 100% !important;
        flex: 0 0 100% !important;
        padding-right: 0 !important;
    }

    /* Price display: on mobile become full-width bottom bar formatted as a centered column */
    .price-display.col-3 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        border-top: 1px solid #dee2e6;
        padding: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: #fdfdfd !important;
        text-align: center !important;
    }

    .price-display.col-3 > div {
        width: 100% !important;
        text-align: center !important;
    }

    .price-display.col-3 > div:nth-child(1) {
        text-align: center !important;
    }

    .price-display.col-3 > div:nth-child(2) {
        text-align: center !important;
    }

    .price-display.col-3 > div:nth-child(3) {
        text-align: center !important;
        margin-top: 6px !important;
    }

    .price-display.col-3 .book-btn {
        width: 100% !important;
        padding: 10px 0 !important;
        font-size: 0.9rem !important;
    }

    .price-display .current-price {
        font-size: 1.1rem;
        margin-top: 0 !important;
    }

    /* Clean, highly optimized airline row on mobile: centered column layout */
    .hotel-all-airlines {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 8px 10px !important;
        background-color: #f8f9fa !important;
        border-radius: 6px !important;
        margin-bottom: 6px !important;
        border: 1px solid #e9ecef !important;
        gap: 6px !important;
    }

    .hotel-all-airlines img {
        width: auto !important;
        max-width: 80px !important;
        height: auto !important;
        max-height: 24px !important;
        object-fit: contain !important;
        margin: 0 0 4px 0 !important;
        align-self: center !important;
    }

    .hotel-all-airlines > div:nth-child(2) {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 0.72rem !important;
        width: 100% !important;
    }

    .hotel-all-airlines > div:nth-child(3) {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 0.72rem !important;
        width: 100% !important;
    }

    .hotel-all-airlines > div:nth-child(4) {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 4px 0 0 0 !important;
        padding: 0 !important;
        text-align: center !important;
        width: 100% !important;
    }

    .hotel-all-airlines > div:nth-child(4) > div {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        color: #2b7a78 !important;
        text-align: center !important;
    }

    .hotel-all-airlines > div:nth-child(4) .airline-toggle {
        width: 100% !important;
        font-size: 0.65rem !important;
        padding: 3px 6px !important;
        margin-top: 2px !important;
        white-space: normal !important;
        text-align: center !important;
    }

    /* Hide other mobile flight options by default, only display first option */
    .hotel-all-airlines:nth-of-type(n+2) {
        display: none !important;
    }

    /* Display other mobile flight options as grid when show-all-flights class is active */
    .hotel-compact.show-all-flights .hotel-all-airlines {
        display: grid !important;
    }

    /* Image carousel height reduce on mobile */
    .image-carousel {
        height: 9rem;
    }

    /* Image caption text truncation */
    .image-caption span {
        max-width: 18ch;
        font-size: 0.75rem;
    }


    .total-results {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: rgba(255, 255, 255, 0.9);
        padding: 8px 16px;
        border-radius: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        white-space: nowrap;
    }

    .search-filters {
        width: 85%;
        position: fixed;
        left: -100%;
        top: 0;
        z-index: 1030;
        transition: left 0.3s ease;
        height: 100vh;
    }

    .search-filters.active {
        left: 0;
    }

    .close-sidebar {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        z-index: 1031;
    }

    .search-results {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .map-column {
        order: 1;
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 1025;
        height: auto;
    }

    .map-column .map-container {
        height: 35vh;
        min-height: 200px;
    }

    .listings-column {
        order: 2;
        width: 100%;
    }

    #menu-toggle {
        position: fixed;
        bottom: 55px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1010;
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        background-color: #009DCE;
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        transition: all 0.2s ease-in-out;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        animation: pulse-blink 2s infinite ease-in-out;
    }

    #menu-toggle:hover {
        animation: none;
        background-color: #0283ab;
        color: white;
        transform: translateX(-50%) translateY(-1px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    #menu-toggle:active {
        transform: translateX(-50%) translateY(0);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    }

    @keyframes pulse-blink {
        0%, 100% {
            transform: translateX(-50%) scale(1);
            opacity: 0.95;
            box-shadow: 0 4px 10px rgba(0, 157, 206, 0.4);
        }
        50% {
            transform: translateX(-50%) scale(1.06);
            opacity: 1;
            box-shadow: 0 4px 20px rgba(0, 157, 206, 0.8), 0 0 0 10px rgba(0, 157, 206, 0.3);
        }
    }

    #sorting {
        padding-left: 15px !important;
        font-size: 0.85rem;
        position: relative;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 769px) {

    #menu-toggle,
    .close-sidebar {
        display: none;
    }

    /* Compact typography for Greek translations on desktop */
    .search-filters {
        font-size: 0.8rem;
    }
    .search-filters .form-label {
        font-size: 0.78rem;
        margin-bottom: 3px;
    }
    .search-filters .form-select,
    .search-filters .form-control {
        font-size: 0.78rem;
        padding: 4px 8px;
    }
    .search-filters .btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    .search-filters h6 {
        font-size: 0.85rem;
    }

    .hotel-compact .hotel-name {
        font-size: 0.88rem;
    }
    .hotel-compact .btn-sm {
        font-size: 0.68rem;
        padding: 3px 6px;
    }
    .hotel-compact .hotel-addr {
        font-size: 0.72rem;
    }
    .hotel-compact .room-type {
        font-size: 0.72rem;
    }
    .hotel-compact .hotel-all-airlines {
        font-size: 0.72rem;
        padding: 4px 0 !important;
    }
    .hotel-compact .hotel-all-airlines img {
        height: 14px;
        width: auto;
    }

    .price-display {
        font-size: 0.72rem !important;
        padding: 8px 4px !important;
        align-self: flex-start !important;
        margin-top: 10px !important;
    }
    .price-display .current-price {
        font-size: 1.05rem !important;
        margin-top: 4px !important;
    }
    .price-display .book-btn {
        font-size: 0.78rem !important;
        padding: 8px 4px !important;
        width: 100% !important;
        min-width: 80px !important;
        white-space: normal !important;
        line-height: 1.2 !important;
    }
    /* Remove Bootstrap px-md-4 shift on the button wrapper inside price column */
    .price-display > div:last-child {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-top: 6px !important;
    }
    #hotel-listing {
        padding-right: 0 !important;
    }
    .hotel-compact {
        padding-right: 5px !important;
    }
}