@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
:root {
    --color: #222;
    --color-grayish: #ececec;
    --color-wheat: #fff;
    --color-gray: #a2a2a2;
    --color-gray2: #d4d4d4;
    --color-gray3: #f7f7f7;
    --color-yellow: #f1bb22;
    --price: #2487ce;
    --color-green: green;
    --old-price: #999;
    --color-orange: #ff5722;
    --color-blue: #2487ce;
    --color-red: #cc0000;
    --font-bold: 'Heebo';
    --font: 'Heebo';
    --font-number: 'Anton';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
}

body {
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container2 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2em;
}

/* Header */
.hotel-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    text-align: center;
}
.hotel-header .container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    align-content: center;
    flex-direction: row-reverse;
}
.hotel-header img{
    height: 80px;
}


.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.back-btn {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.back-btn:hover {
}

.admin-btn {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.admin-btn:hover {
    color: #495057;
    text-decoration: none;
}

/* Main Content */
.hotel-main {
    padding: 30px 0;
}

/* Hotel Overview */
.hotel-overview {
    margin-bottom: 1rem;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 10em 2em 2em;
    line-height: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    margin: 0;
}

.hotel-basic-info {
    /* background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef; */
}

.hotel-header-section {
    /* text-align: center;
    margin-bottom: 20px; */
}

.hotel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hotel-rating {
    /* display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 5px; */
    display: none;
}

.rating-stars {
    font-size: 18px;
}

.rating-number {
    font-weight: 600;
    color: #28a745;
    font-size: 18px;
}

.reviews-count {
    color: #6c757d;
    font-size: 14px;
}

.hotel-location {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0px;
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
}

.location-icon {
    font-size: 18px;
}

.promotion-banner {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.hotel-main-image {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: none;
}

.hotel-main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Content Grid */
.content-grid {
    display: flex;
    gap: 30px;
    flex-direction: row;
}

/* Hotel Info Sidebar */
.hotel-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 30%;
}

.contact-info {
    margin: 2em 0 0 ;
}

.hotel-packages-main h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
}

.hotel-description {
    color: #495057;
    line-height: 1.7;
}

.hotel-search-box {
    color: #495057;
    line-height: 1.7;
}

/* Gallery */
.hotel-gallery {
    margin: 2em 0 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {

}

.gallery-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

/* Features */
.hotel-features {
    /* תורש סגנון מ info-section */
}

.features-section, .hotel-gallery {
    margin-top: 2em;
    padding-top: 2em;
    border-top: 1px solid #ebebeb;
}

.features-section h3,
.info-section h3{
    font-size: 1.6em;
}


.highlights-list, .facilities-list {
    list-style: square;
    margin: 20px;
    display: grid;
    gap: 10px;
}

.img_hotel {
    width: 100%;
    margin: 0 0 2em;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.img_hotel img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}




.by_map{
    width: 100%;
    margin: 2em 0 0;
}


/* עבור מסכים גדולים יותר (דסקטופ) */
@media (min-width: 768px) {
    .highlights-list, .facilities-list {
        grid-template-columns: repeat(2, 1fr); /* 4 עמודות בדסקטופ */
    }
}

.highlights-list li, .facilities-list li {

}
/* 
.highlights-list li::before {
    content: '✨';
    position: absolute;
    right: 0;
    top: 8px;
} */

/* .facilities-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 8px;
    color: #28a745;
    font-weight: 600;
} */

/* Contact Info */
.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    padding: 5px 0;
}

.contact-icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.contact-icon a{
    color: var(--color);
    text-decoration: none;
}
.hotel-header .material-icons {
    border: 2px solid #222;
    border-radius: 50%;
    padding: 5px;
    margin: 0 0 0 12px;
    font-size: 15px;
}
.contact-item a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {

}

/* Hotel Identifiers */
.hotel-identifiers {
    margin-top: 15px;
}

.id-item {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 14px;
}

.id-item:last-child {
    border-bottom: none;
}

.id-item strong {
    color: #495057;
}

/* Packages Main */
.hotel-packages-main {
    min-height: 600px;
    width: 75%;
}

.packages-header {
    padding: 0 0 1rem;
}

.packages-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color);
    margin-bottom: 5px;
}

.packages-header p {
    color: var(--color);
    font-size: 1rem;
}

.packages-content {

}

/* Footer */
.hotel-footer {
    background: #343a40;
    color: #fff;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Loading State */
.packages-content:empty::before {
    content: 'טוען מחירים וחבילות...';
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: #6c757d;
    font-style: italic;
}

/* Error State */
.hotel-info-error {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #f5c6cb;
}

.pax {
    width: 100%;
    padding: 10px 0;
    display: flex;
    gap: 10px;
}
.material-icons{
    display: none;
}
.pax_adults,
.pax_children,
.pax_infants{
    width: 33.33%;
    float: right;
    border-radius: 5px;
    background: #fff;
    position: relative;
}
.t-check-in, .t-check-out{
    box-shadow: none !important;
}
.pax select{
    width: 100%;
    float: right;
    padding: 10px 10px 10px 30px;
    border-radius: 5px;
    text-align: left;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1;
    z-index: 1;
    background: none;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: 0 0;
    background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+PC9zdmc+);
    background-repeat: no-repeat;
    background-position-x: 5px;
    background-position-y: center;
    border: 1px solid #dfdfdf;
}
.pax select option {
    font-size: 1rem;
}
.pax label {
    position: absolute;
    right: 10px;
    top: 10px;
    line-height: 1;
    z-index: 0;
    width: 50px;
    font-size: 0.9rem;
}
#search {
    float: left;
    background: #ff5722;
    color: #fff;
    font-weight: 600;
    font-family: 'Heebo';
    width: 100%;
    border-radius: 5px;
    margin: 0;
    text-align: center;
    font-size: 1.5rem;
    padding: 10px 0;
    cursor: pointer;
    border: none;
    height: 50px;
}
/* Responsive Design */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hotel-packages-main {
        order: -1;
    }
}

@media (max-width: 768px) {

    .hotel-search-box {
        position: fixed;
        height: 100%;
        width: 100%;
        background: #fff;
        z-index: 9;
        left: 0;
        right: 0;
        top: 0;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 2em;
        flex-direction: column;
    }
    .search_compo {
        width: 100%;
    }
    .search_b {
        position: fixed;
        left: calc(50% - 75px);
        bottom: 1rem;
        z-index: 8;
        background: var(--color-orange);
        padding: 10px;
        width: 150px;
        font-size: 1rem;
        border-radius: 32px;
        text-align: center;
        color: var(--color-wheat);
        font-weight: 700;
    }
    .search_hide {
        width: 100%;
        text-align: center;
        text-decoration: underline;
        margin: 10px 0 0;
    }
    .hotel-header img{
        height: 60px;
    }

    .debug-section{
        display: none;
    }
    .hotel-info-sidebar {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    .packages-container {
        flex-direction: column !important;
    }
    .content-grid {
        display: flex;
        flex-direction: column;
    }
    .hotel-packages-main {
        width: 100%;
    }

    
    .hotel-title {
        font-size: 2rem;
    }
    
    /* .info-section {
        padding: 20px 0;
    } */


    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .gallery-item img {
        height: 200px;
    }
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .hotel-main {
        padding: 0 0 20px;
    }
    .img_hotel {
        width: 100vw;
        margin: 0 calc(-50vw + 50%) 2em;
        position: relative;
        border-radius: 0;
    }
    
    .img_hotel img{
        height: 250px;
}
    
    .hotel-basic-info {
        /* padding: 20px; */
    }
    
    .hotel-title {
        font-size: 1.6rem;
    }
    
    .hotel-rating {
        gap: 5px;
    }
    
    .promotion-banner {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .header-nav {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-section,
.hotel-basic-info,
.hotel-packages-main {
    animation: fadeInUp 0.6s ease-out;
}

.info-section:nth-child(1) { animation-delay: 0.1s; }
.info-section:nth-child(2) { animation-delay: 0.2s; }
.info-section:nth-child(3) { animation-delay: 0.3s; }
.info-section:nth-child(4) { animation-delay: 0.4s; }

/* Hover Effects */
.info-section:hover {

}



.price-before-discount {
    color: #999;
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto 2em;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
}


.hotel-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.hotel-meta span {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.package-section {
    overflow: hidden;
    width: 100%;
    background: var(--color-wheat);
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.section-header {
    padding: 0 0 1em;
}

.section-title {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.packages-grid {
    display: flex;
    padding: 0;
    flex-direction: column;
}

.package-card {
    border-bottom: 1px solid #e9ecef;
    padding: 0 0 1em;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 0 1em;
    text-decoration: none;
    flex-direction: row;
    gap: 5px;
}

.package-card:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.package-card:hover {
}

.package-success {

}

.package-error {

}
.package-error .price-amount{
    color: var(--color-red);
}
.package-error .date-range{
    color: var(--color-red);
    text-decoration: line-through;
}
.package-type {
    background: #667eea;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.package-dates {
    margin-bottom: 15px;
}

.date-range {
    text-align: right;
    font-weight: 600;
    color: #222;
    font-size: 1em;
    line-height: 1.2;
    width: 70%;
}

.date-range .date-details {
    font-size: 0.8em;
    color: #6c757d;
    font-weight: 500;
    display: inline-block;
}

.date-formatted {
    color: #6c757d;
    font-size: 0.9em;
}

.package-price {
    text-align: left;
    width: 100px;
    line-height: 1;
}

.price-amount {
    font-size: 1.5em;
    font-weight: 900;
    color: var(--color-blue);
    display: block;
}

.price-currency {
    font-size: 0.7em;
    line-height: 1;
    font-family: 'Heebo';
    font-weight: 400;
}
.price-starting {
    color: var(--color);
    font-size: 0.75em;
    font-weight: 700;
    margin: 0 0 3px;
}

.package-status {
    text-align: center;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: auto;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.status-success {
    background: var(--color-orange);
    color: var(--color-wheat);
}

.status-error {
    background: #f8d7da;
    color: #721c24;
}

.error-message {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.9em;
    border-left: 4px solid #ffc107;
    display: none;
}

.no-packages {
    text-align: center;
    padding: 40px;
    color: #6c757d;
    font-style: italic;
}

.debug-section {
    margin-top: 0;
    text-align: center;
    position: fixed;
    left: 10px;
    bottom: 0;
    width: 100px;
    display: none;
}


.debug-toggle {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    width: 100%;
    margin: 0 0 10px !important;
    line-height: 1;
}

.debug-toggle:hover {
}

#debug-json {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: left;
    overflow: auto;
    max-height: 400px;
}

#debug-json pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    white-space: pre-wrap;
}

.selected-date-card {
}

.selected-date-name {
    font-size: 0.8em;
}

.package-number {
    background: rgba(255,255,255,0.3);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

.nights-count {
    color: #495057;
    font-size: 0.85em;
    margin-top: 5px;
    font-weight: 500;
}

@media (max-width: 768px) {

    .package-section {
        font-size: 18px;
    }  
    .hotel-description {
        font-size: 1.1em;
    }
    .packages-header h2 {
        font-size: 1.5em;
    }
    
    .hotel-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    

}

/* אנימציות עדינות */
.date-range {
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* שיפור hover effects */
.package-card:hover .date-range {
}

.package-card:hover .package-price {
}

/* skeleton loader */

.flight-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 2em;
}

.flight-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.card-header {
    text-align: right;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.flight-option {
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
}

.flight-option:last-child {
    border-bottom: none;
    padding: 10px 0 0;
    margin: 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-direction: row;
    align-items: flex-start;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-text.small {
    height: 12px;
    width: 70%;
}

.skeleton-text.price {
    height: 32px;
    width: 80px;
}

.skeleton-header {
    height: 24px;
    width: 60%;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* end skeleton loader */















.dealhotelres {
    width: 100%;
    float: right;
    margin: 0 0 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
}
.dealhotelres_img {
    width: 100%;
    float: right;
    margin: 0 0 1em;
    position: relative;
    display: none;
}
.promotion_text {
    position: absolute;
    right: 20px;
    top: 20px;
    background: var(--color-yellow);
    color: var(--color-wheat);
    padding: 5px 10px;
    border-radius: 5px;
    /* max-width: 100%; */
    line-height: 1.2;
    width: auto;
    max-width: 70%;
}
.dealhotelres_img img {
    width: 100%;
    float: right;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}
.dealhotelres_info {
    width: calc(100% - 90px);
    float: right;
    line-height: 1;
    height: 60px;
}
.dealhotelres_title {
    font-size: 1em;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    float: right;
    color: var(--color);
}
.dealhotelres_dates {
    width: 100%;
    float: right;
    padding: 5px 0 0;
    font-size: 0.8em;
    color: var(--color-orange);
    font-weight: 700;
}
.dealhotelres_price {
    display: flex
;
    FONT-WEIGHT: 200;
    font-size: 1.8em;
    font-family: var(--font-number);
    flex-direction: column;
    line-height: 1;
    text-align: left;
    width: 90px;
    float: left;
    color: var(--color-blue);
}
.dealhotelres_nights {
    font-size: 12px;
    padding: 0 0 4px;
    font-family: var(--font);
    font-weight: 700;
    color: var(--color-orange);
}
.dealhotelres_deal_name {
    font-size: 12px;
    color: var(--color);
    padding: 5px 0 0;
    display: inline-block;
}
price {
    font-family: 'Anton';
}
.dealhotelres_price span {
    font-size: 0.7em;
    font-family: var(--font);
}
.dealhotelres_price s {
    color: #999;
    font-size: 0.5em !important;
    margin: 3px 0 0;
}

.footer {
    width: 100vw;
    float: left;
    background: var(--color-wheat);
    min-height: 70px;
    margin: 2rem calc(-50vw + 50%) 0;
    padding: 20px;
}
.footer_icons {
    float: right;
    width: 100%;
    text-align: center;
    background: #fff;
    margin: 0;
}
.footer .width {
    margin: auto;
    width: 100%;
    max-width: 1320px;
    padding: 0 2%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.footer_icon {
    padding: 20px;
    display: flex;
    font-weight: 500;
    line-height: 1;
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    font-size: 12px;
    flex-direction: column;
    justify-content: flex-start;
    width: 50%;
    align-items: center;
}
.footer_icons .material-symbols-outlined {
    font-size: 40px;
    margin: 0 0 10px;
}
.footer_icon span {
    text-align: center;
    width: 100%;
}
@media (min-width: 1024px) {
    .footer_icons .width {
        display: flex;
        padding: 30px;
        text-align: center;
        align-items: flex-start;
        justify-content: space-evenly;
        flex-direction: row;
    }
    .footer_icon {
        width: 215px;
    }
    .dealhotelres {
        width: calc(33.33% - 15px);
        margin: 0 0 15px 15px;
    }
}
@media (min-width: 1320px) {
    .dealhotelres {
        /* width: calc(25% - 30px); */
    }
}