﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.skeleton-box {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    height: 100%;
    border-radius: 0 0 0 12px;
    animation: shimmer 1.6s ease-in-out infinite;
}

.skeleton-two {
    border-radius: 0;
}

.skeleton-line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    animation: shimmer 1.6s ease-in-out infinite;
    border-radius: 6px;
    width: 20%;
    height: 16px;
}

.skeleton-wrapper {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    height: 500px;
    border-radius: 12px;
    animation: shimmer 1.6s ease-in-out infinite;
}

.skeleton-info {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    height: 227px;
    border-radius: 12px;
    animation: shimmer 1.6s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

/*--------------------------------------------------------------
# Search form
--------------------------------------------------------------*/
.background-campsite-detail #RRLocationDropDown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Prevent interaction when hidden */
    display: none;
}

    .background-campsite-detail #RRLocationDropDown.expanded {
        opacity: 1;
        visibility: visible;
        pointer-events: auto; /* Enable interaction when visible */
        display: block;
    }

#city-filter-data-rr,
#branch-filter-data-rr {
    display: none;
}

#dim {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    overflow: hidden;
    z-index: 9;
}

.background-campsite-detail {
    width: 100%;
    height: 73px;
    position: relative;
    background: var(--background-light);
}

    .background-campsite-detail .search-wrapper {
        background-color: rgba(243, 243, 243, .2);
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 16px 0;
    }

    .background-campsite-detail .input-box-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 7px;
    }

    .background-campsite-detail .input-wrapper {
        position: relative;
    }

    .background-campsite-detail .input-box-container .input-box {
        --w: 798px;
        position: relative;
        border-radius: 12px;
        background: #F5F5F5;
        padding: 11px 32px 12px 40px;
        height: 41px;
        cursor: pointer;
        width: var(--w);
    }

        .background-campsite-detail .input-box-container .input-box .icon {
            position: absolute;
            top: 14px;
            left: 14px;
            width: 14px;
            height: 14px;
        }

    .background-campsite-detail .input-box-container .input-box-c {
        width: calc(var(--w) - 632px);
        padding-right: 7px;
    }

    .background-campsite-detail .input-box-container .input-box input {
        width: 100%;
        height: 100%;
        outline: 0;
        border: 0;
        background-color: transparent;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .background-campsite-detail .location-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 25px;
    }

    .background-campsite-detail .location-boxs {
        border-radius: 8px;
        background: var(--background-light);
        width: 222px;
        height: 65px;
        display: flex;
        align-items: center;
        overflow: hidden;
        cursor: pointer;
    }

    .background-campsite-detail .select-rr .location-boxs img {
        width: 65px;
        height: 65px;
        border-radius: 8px;
        margin-right: 30px;
        object-fit: cover;
        transition: transform .3s ease 0s;
    }

    .background-campsite-detail .select-rr .location-boxs .loc-item-container .location-name {
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 0;
        width: 186px;
    }

    .background-campsite-detail .location-boxs:hover .icon {
        border-color: var(--text-light);
    }

    .background-campsite-detail .location-boxs .icon {
        border-radius: 50%;
        width: 10px;
        height: 10px;
        border: 2px solid var(--background-primary);
        position: absolute;
        top: 9px;
        left: 5px;
    }

    .background-campsite-detail .location-boxs .location-box {
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 0;
        width: 186px;
    }

    .background-campsite-detail #city-filter-data,
    .background-campsite-detail #branch-filter-data {
        display: none;
    }

    .background-campsite-detail .select-rr .search-found-container-rr {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 65px;
        background: var(--background-light);
        border-radius: 8px;
        color: var(--text-secondary);
        padding: 0 30px;
        margin-bottom: 1.5rem;
        cursor: pointer;
    }

    .background-campsite-detail .select-rr .place-boxs {
        width: 292px;
        padding-left: 26px;
        padding-right: 12px;
    }

    .background-campsite-detail .select-rr .location-boxs .rr-icon {
        width: 18px;
        height: 20px;
        border-radius: 0;
        margin-left: 30px;
        object-fit: contain;
    }

    .background-campsite-detail .select-rr .search-found-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 65px;
        background: var(--background-light);
        border-radius: 8px;
        color: var(--text-secondary);
        padding: 0 30px;
        margin-bottom: 1.5rem;
        cursor: pointer;
    }

        .background-campsite-detail .select-rr .search-found-container span {
            flex: 1;
            margin-left: 1.5rem;
        }

    .background-campsite-detail .select-dp {
        list-style: none;
        margin: 0;
        padding: 0;
        border-radius: 16px;
        background: #F9F9F9;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
        width: 100%;
        max-height: 480px;
        position: absolute;
        top: 57px;
        left: 0;
        border-top: 1px solid #D9D9D9;
        padding: 24px 3px 24px 28px;
        z-index: 1080;
        overflow: hidden;
    }

        .background-campsite-detail .select-dp .scrollable-content {
            overflow-y: auto;
            max-height: calc(326px - 37px);
            padding-right: 20px;
        }

    .background-campsite-detail .location-container .category-boxs {
        width: 118px;
        height: 28px;
        flex-shrink: 0;
    }

    .background-campsite-detail .select-rr .destination-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 25px;
    }

    .background-campsite-detail .select-rr .place-boxs .acount {
        color: var(--text-muted);
        font-size: 12px;
        line-height: normal;
    }

    .background-campsite-detail .select-rr .location-boxs .loc-name {
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 0;
        width: 186px;
        margin-left: 15px;
    }

    .background-campsite-detail .select-rr .location-boxs .city-item-container .flag-icon {
        width: 21px;
        height: 12px;
        border-radius: 3px;
        margin-right: 6px;
    }

    .background-campsite-detail .select-rr .city-item-container {
        flex: 1;
    }

    .background-campsite-detail .select-rr .place-boxs .cname {
        font-size: 12px;
        color: var(--text-muted);
        overflow: visible;
        text-overflow: unset;
        white-space: normal;
        width: 100%;
    }

    .background-campsite-detail .select-rr .place-boxs .camp-icon {
        width: 18px;
        height: 20px;
        border-radius: 0;
        object-fit: contain;
    }

    .background-campsite-detail .select-rr .rr-boxs .rr-name {
        font-size: 14px;
        line-height: normal;
        font-weight: 600;
        width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .background-campsite-detail .select-rr .tag-box {
        border-radius: 6px;
        background: #DAFEFF;
        font-size: 12px;
        font-weight: 500;
        color: var(--text-secondary);
        width: 84px;
        height: 18px;
        padding: 1px 4px;
        text-align: center;
    }

    .background-campsite-detail .select-rr .rr-boxs .rr-item-container {
        display: flex;
        align-items: center;
    }

    .background-campsite-detail .select-rr .rr-boxs .flag-icon {
        width: 21px;
        height: 12px;
        border-radius: 3px;
        margin-right: 6px;
    }

    .background-campsite-detail .select-rr .categories-box {
        position: relative;
        width: auto;
        height: 28px;
        background: #FFF5E9;
        border-radius: 16px;
        padding: 3px 29px 5px 38px;
        cursor: pointer;
    }

    .background-campsite-detail .select-rr .category-item-rr {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .background-campsite-detail .select-rr .categories-box .path-container {
        position: absolute;
        top: 2px;
        left: 10px;
    }

    .background-campsite-detail .select-rr .categories-box .title-category {
        color: #B5664F;
        font-size: 15px;
        line-height: normal;
        font-weight: 500;
    }

    .background-campsite-detail .select-rr .location-item-rr {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .background-campsite-detail .select-rr .state-box {
        display: flex;
        align-items: center;
        border-radius: 8px;
        background: var(--background-light);
        width: 222px;
        height: 65px;
        overflow: hidden;
        cursor: pointer;
    }

        .background-campsite-detail .select-rr .state-box > img {
            width: 65px;
            height: 65px;
            border-radius: 8px;
            margin-right: 30px;
            object-fit: cover;
            transition: transform .3s ease 0s;
        }

        .background-campsite-detail .select-rr .state-box:hover > img {
            transform: scale(1.05);
        }

        .background-campsite-detail .select-rr .state-box .title-state {
            font-size: 14px;
            line-height: normal;
            font-weight: 600;
        }

    .background-campsite-detail .select-rr .search-found-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 65px;
        background: var(--background-light);
        border-radius: 8px;
        color: var(--text-secondary);
        padding: 0 30px;
        margin-bottom: 1.5rem;
        cursor: pointer;
    }

        .background-campsite-detail .select-rr .search-found-container span {
            flex: 1;
            margin-left: 1.5rem;
        }

    .background-campsite-detail .select-rr .auto-rr {
        margin-bottom: 25px;
    }

    .background-campsite-detail .select-rr .flag-icon {
        width: 21px;
        height: 12px;
        border-radius: 3px;
        margin-right: 6px;
    }

    .background-campsite-detail .select-rr .title-country {
        color: var(--text-muted);
        font-size: 12px;
        line-height: normal;
        margin-bottom: 3px;
    }

    .background-campsite-detail .select-rr .city-box {
        position: relative;
        border-radius: 16px;
        background: var(--background-light);
        width: auto;
        height: 28px;
        cursor: pointer;
        padding: 3px 29px 5px 38px;
        transition: background .3s, color .3s;
    }

        .background-campsite-detail .select-rr .city-box:hover {
            color: var(--text-light);
            background: var(--background-primary);
        }

            .background-campsite-detail .select-rr .city-box:hover img {
                filter: brightness(0) invert(1);
            }

        .background-campsite-detail .select-rr .city-box > img {
            position: absolute;
            top: 8px;
            left: 10px;
        }

        .background-campsite-detail .select-rr .city-box .title-city {
            font-size: 15px;
            line-height: normal;
            white-space: nowrap;
        }

    .background-campsite-detail .select-rr .branch-item-rr {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .background-campsite-detail .select-rr .branch-box {
        display: flex;
        align-items: center;
        width: 292px;
        height: 65px;
        overflow: hidden;
        background: var(--background-light);
        border-radius: 8px;
        cursor: pointer;
    }

        .background-campsite-detail .select-rr .branch-box .campsite-img {
            width: 65px;
            height: 65px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 15px;
            transition: transform .3s ease 0s;
        }

        .background-campsite-detail .select-rr .branch-box:hover .campsite-img {
            transform: scale(1.05);
        }

        .background-campsite-detail .select-rr .branch-box .title-camp {
            text-overflow: ellipsis;
            white-space: nowrap;
            display: block;
            font-size: 14px;
            line-height: normal;
            font-weight: 600;
            max-width: 190px;
            overflow: hidden;
        }

        .background-campsite-detail .select-rr .branch-box .flag-icon {
            width: 21px;
            height: 12px;
            border-radius: 3px;
            margin-right: 6px;
        }

        .background-campsite-detail .select-rr .branch-box .category-flex {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }

        .background-campsite-detail .select-rr .branch-box .background-campsite-category {
            border-radius: 6px;
            background: #FFF5E9;
            width: 73px;
            height: 18px;
            color: #B5664F;
            font-size: 12px;
            font-weight: 500;
            line-height: normal;
            text-align: center;
            padding: 2px 4px;
        }

/*--------------------------------------------------------------
# Accommodation Detail
--------------------------------------------------------------*/
    .cart-detail {
        color: var(--text-primary);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

.details {
    padding: 1px 0 30px;
}

    .details .trip-container {
        margin-top: .6rem;
    }

#detail-accommodation .gallery-container {
    border-radius: 12px;
    border: 1px solid #EEE;
    background: var(--background-light);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 30px;
}

#detail-accommodation .acc-item-layout {
    padding: 1rem 2rem 1rem 1.5rem;
}

#detail-accommodation .acc-layout .acc-booking {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

#detail-accommodation .trip-container .flag-img {
    width: 21px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

#detail-accommodation .navigation-detail {
    line-height: 19px;
    color: #AAA;
}

    #detail-accommodation .navigation-detail a:hover {
        color: #333;
    }

.cart-detail {
    text-align: right;
}

.cart-icon {
    margin-left: 10px;
}

#detail-accommodation .acc-header {
    padding: 2rem 3rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#detail-accommodation .acc-title {
    color: var(--text-primary);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#detail-accommodation .acc-tag-box,
#detail-accommodation .acc-booking-detail .group-tag {
    border-radius: 6px;
    background: #FFF5E9;
    padding: .3rem .6rem;
    color: #B5664F;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

#detail-accommodation .acc-location {
    font-style: italic;
    color: #AAA;
}

#detail-accommodation .acc-flag {
    color: var(--text-muted);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#detail-accommodation .acc-rating {
    margin-left: 50px;
    padding-top: 5px;
}

#detail-accommodation .acc-price-from {
    font-size: 14px;
    color: #777;
}

#detail-accommodation .rate-text {
    font-weight: 700;
    text-align: left;
    color: #FFBE2C
}

#detail-accommodation .guest-wrapper {
    background: #F9F9F9;
    width: 100%;
    height: auto;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

#detail-accommodation .maximum-text {
    color: #AAA;
    font-size: 16px;
    font-weight: 400;
    text-align: right;
}

#detail-accommodation .cart-detail {
    text-align: right;
    font-size: 14px;
    color: var(--text-primary);
}

#detail-accommodation .rate-desc-text {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
    color: #FFBE2C
}

#detail-accommodation .review {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    padding-top: 0.2rem;
    cursor: pointer;
    color: #888;
}

#detail-accommodation .start-checked {
    color: #FFBE2C;
}

#detail-accommodation .start-disabled {
    color: #AAA
}

#detail-accommodation .acc-target {
    display: flex;
    align-items: center;
    background: var(--background-light);
    flex-wrap: wrap;
    gap: 10px;
    transition: all .3s ease;
    z-index: 1000;
}

    #detail-accommodation .acc-target.fixed {
        position: fixed;
        padding: 10px;
        justify-content: center;
        top: 47px;
        left: 0;
        right: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

#detail-accommodation .target-btn {
    border-radius: 8px;
    border: 1px solid var(--background-primary);
    background: var(--background-light);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    height: 33px;
    padding: .275px .75px;
    transition: .3s ease-in-out;
}

    #detail-accommodation .target-btn:hover {
        background-color: var(--background-secondary-hover);
        color: var(--text-light);
    }

        #detail-accommodation .target-btn:hover > img {
            filter: brightness(0) invert(1);
        }

        :is(#selectBooking, #about, #layout, #mapLocation) {
            width: 114px;
        }

#detail-accommodation #facility {
    width: 163px;
}

#detail-accommodation #operating {
    width: 134px;
}

#detail-accommodation .main-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

#detail-accommodation .photo-grid-container .main-photo {
    height: 359px;
}

    #detail-accommodation .photo-grid-container .main-photo > img {
        border-bottom-left-radius: 12px;
    }

#detail-accommodation .photo-grid-container .sub-grid-container {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 1fr 50%;
}


#detail-accommodation .photo-grid-container .img-box > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}


#detail-accommodation .photo-grid-container {
    display: grid;
    grid-gap: 0 4px;
    grid-template-columns: 1fr 38%;
}

#detail-accommodation .sub-img {
    width: 100%;
    height: 180px;
    position: relative;
}
/*
.hotel-detail .photo-grid-two {
    grid-template-columns: 1fr 15%;
}

    .hotel-detail .photo-grid-two .sub-grid-container {
        grid-template-columns: 1fr;
    }

        .hotel-detail .photo-grid-two .sub-grid-container .second-photo {
            height: 100%;
        }

        .hotel-detail .photo-grid-two .sub-grid-container .last-img:last-of-type > img {
            border-bottom-right-radius: 12px;
        }*/

#detail-accommodation .sub-grid-container .sub-img-container:last-child .sub-img img {
    border-bottom-right-radius: 12px !important;
    overflow: hidden;
    display: block;
}

#detail-accommodation .photo-grid-container .second-photo {
    position: relative;
    height: 177px;
}

#detail-accommodation .photo-grid-container .sub-grid-container .last-img:last-of-type > img {
    border-bottom-right-radius: 12px;
}

#detail-accommodation .photo-grid-container .sub-grid-container .transparent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(77, 77, 77, .5);
    border-bottom-right-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #detail-accommodation .photo-grid-container .sub-grid-container .transparent-box .see-all {
        color: var(--text-light);
        line-height: normal;
    }


#detail-accommodation .photo-single-container {
    display: block;
}

    #detail-accommodation .photo-single-container img {
        border-bottom-right-radius: 12px;
    }

#detail-accommodation .photo-grid-two {
    grid-template-columns: 1fr 15%;
}

    #detail-accommodation .photo-grid-two .sub-grid-container {
        grid-template-columns: 1fr;
    }

        #detail-accommodation .photo-grid-two .sub-grid-container .second-photo {
            height: 100%;
        }

        #detail-accommodation .photo-grid-two .sub-grid-container .last-img:last-of-type > img {
            border-bottom-right-radius: 12px;
        }

#detail-accommodation .photo-grid-three {
    grid-template-columns: 1fr 15%;
}

    #detail-accommodation .photo-grid-three .sub-grid-container .second-photo {
        height: auto;
    }

    #detail-accommodation .photo-grid-three .sub-grid-container {
        grid-template-columns: 1fr;
    }

#detail-accommodation .photo-grid-four {
    grid-template-columns: 1fr 15%;
}

    #detail-accommodation .photo-grid-four .sub-grid-container .second-photo {
        /*height: 177px;*/
        height: 116.3px;
    }

    #detail-accommodation .photo-grid-four .sub-grid-container {
        grid-template-columns: 1fr;
    }

#detail-accommodation .sub-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

#detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-container {
    display: grid;
    grid-gap: 0 4px;
    grid-template-columns: 1fr 25%;
}

#detail-accommodation .acc-booking-detail .ctgr-item .main-photo {
    height: 270px;
}

    #detail-accommodation .acc-booking-detail .ctgr-item .main-photo > img {
        border-top-left-radius: 12px;
    }

    #detail-accommodation .acc-booking-detail .ctgr-item .main-photo > .bottom-left-radius {
        border-bottom-left-radius: 12px;
    }

#detail-accommodation .acc-booking-detail .ctgr-item .img-box > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

#detail-accommodation .acc-booking-detail .ctgr-item .no-ctgr-img {
    border-top-left-radius: 12px;
    height: 253px;
    width: 423px;
}

#detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-container .sub-ctgr-grid-container {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 1fr;
}

#detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-container .second-ctgr-photo {
    position: relative;
    height: 63.7px;
}

#detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-container .sub-ctgr-grid-container .transparent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(77, 77, 77, .5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-container .sub-ctgr-grid-container .transparent-box .see-all {
        color: var(--text-light);
        font-size: 12px;
        line-height: normal;
    }

#detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-two {
    grid-template-columns: 1fr 25%;
}

    #detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-two .sub-ctgr-grid-container {
        grid-template-columns: 1fr;
    }

        #detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-two .sub-ctgr-grid-container .second-ctgr-photo {
            height: 100%;
        }

#detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-three {
    grid-template-columns: 1fr 25%;
}

    #detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-three .sub-ctgr-grid-container .second-ctgr-photo {
        height: 132.5px;
    }

    #detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-three .sub-ctgr-grid-container {
        grid-template-columns: 1fr;
    }

#detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-four {
    grid-template-columns: 1fr 25%;
}

    #detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-four .sub-ctgr-grid-container .second-ctgr-photo {
        height: 86.7px;
    }

    #detail-accommodation .acc-booking-detail .ctgr-item .photo-ctgr-grid-four .sub-ctgr-grid-container {
        grid-template-columns: 1fr;
    }

.ctgr-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    z-index: 1055;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

    .ctgr-gallery-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .ctgr-gallery-modal .ctgr-gallery-modal-dialog {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        inset: 0;
        margin: 48px;
    }

    .ctgr-gallery-modal .ctgr-gallery-modal-content {
        background: #444D58;
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        max-width: 1920px;
        max-height: 1080px;
    }

    .ctgr-gallery-modal .ctgr-gallery-modal-header {
        background: var(--background-light);
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        padding-top: 10px;
        padding-left: 46px;
        padding-bottom: 10px;
        padding-right: 20px;
        display: flex;
        align-items: center;
    }

        .ctgr-gallery-modal .ctgr-gallery-modal-header h6 {
            font-size: 18px;
            font-weight: 700;
            line-height: normal;
            margin-right: auto;
            margin-bottom: 0;
        }

        .ctgr-gallery-modal .ctgr-gallery-modal-header .x-ctgr-gallery {
            cursor: pointer;
        }

    .ctgr-gallery-modal .ctgr-gallery-modal-body {
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
    }

        .ctgr-gallery-modal .ctgr-gallery-modal-body .swiperCtgrGallery {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

            .ctgr-gallery-modal .ctgr-gallery-modal-body .swiperCtgrGallery .swiper-slide {
                width: auto;
                margin: 0 auto;
            }

                .ctgr-gallery-modal .ctgr-gallery-modal-body .swiperCtgrGallery .swiper-slide > img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }

        .ctgr-gallery-modal .ctgr-gallery-modal-body .swiper-button-prev,
        .ctgr-gallery-modal .ctgr-gallery-modal-body .swiper-button-next {
            background: var(--background-light);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            color: var(--text-primary);
            transition: box-shadow .3s;
        }

            .ctgr-gallery-modal .ctgr-gallery-modal-body .swiper-button-prev:hover,
            .ctgr-gallery-modal .ctgr-gallery-modal-body .swiper-button-next:hover {
                box-shadow: 0 4px 20px 0 rgba(0,0,0,.5);
            }

        .ctgr-gallery-modal .ctgr-gallery-modal-body .swiperCtgrGallery .swiper-button-prev {
            left: 61px;
        }

        .ctgr-gallery-modal .ctgr-gallery-modal-body .swiperCtgrGallery .swiper-button-next {
            right: 61px;
        }

        .ctgr-gallery-modal .ctgr-gallery-modal-body .swiper-button-prev:after,
        .ctgr-gallery-modal .ctgr-gallery-modal-body .swiper-button-next:after {
            font-size: 12px;
        }

        .ctgr-gallery-modal .ctgr-gallery-modal-body .swiper-button-prev.swiper-button-disabled,
        .ctgr-gallery-modal .ctgr-gallery-modal-body .swiper-button-next.swiper-button-disabled {
            opacity: 0;
            pointer-events: none;
        }

        .ctgr-gallery-modal .ctgr-gallery-modal-body .swiper-middle-wrapper {
            padding-top: 12px;
            padding-left: 49px;
            padding-bottom: 12px;
            padding-right: 40px;
            background: #222;
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
        }

            .ctgr-gallery-modal .ctgr-gallery-modal-body .swiper-middle-wrapper h1 {
                font-size: 18px;
                font-weight: 700;
                color: var(--text-light);
                line-height: normal;
                margin-bottom: 0;
            }

            .ctgr-gallery-modal .ctgr-gallery-modal-body .swiper-middle-wrapper .swiper-pagination {
                color: var(--text-light);
                font-size: 18px;
                line-height: normal;
                position: relative;
                margin-left: auto;
                width: auto;
                bottom: 0;
            }

    .ctgr-gallery-modal .swiperCtgrThumbs.swiper {
        margin-left: unset;
        margin-right: unset;
    }

    .ctgr-gallery-modal .swiperCtgrThumbs .swiper-slide {
        width: 179px !important;
    }

        .ctgr-gallery-modal .swiperCtgrThumbs .swiper-slide.resize-175 {
            width: 150px !important;
        }

        .ctgr-gallery-modal .swiperCtgrThumbs .swiper-slide > img {
            width: 100%;
            height: 112px;
            object-fit: cover;
        }

    .ctgr-gallery-modal .thumb-p {
        position: relative;
        padding-top: 30px;
        padding-left: 38px;
        padding-bottom: 28px;
        padding-right: 38px;
    }

        .ctgr-gallery-modal .thumb-p .swiper-button-prev,
        .ctgr-gallery-modal .thumb-p .swiper-button-next {
            background: var(--background-light);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            color: var(--text-primary);
            transition: box-shadow .3s;
            top: 95px;
        }

            .ctgr-gallery-modal .thumb-p .swiper-button-prev:hover,
            .ctgr-gallery-modal .thumb-p .swiper-button-next:hover {
                box-shadow: 0 4px 20px 0 rgba(0,0,0,.5);
            }

        .ctgr-gallery-modal .thumb-p .swiper-button-prev {
            left: 20px;
        }

        .ctgr-gallery-modal .thumb-p .swiper-button-next {
            right: 20px;
        }

            .ctgr-gallery-modal .thumb-p .swiper-button-prev:after,
            .ctgr-gallery-modal .thumb-p .swiper-button-next:after {
                font-size: 12px;
            }

            .ctgr-gallery-modal .thumb-p .swiper-button-prev.swiper-button-disabled,
            .ctgr-gallery-modal .thumb-p .swiper-button-next.swiper-button-disabled {
                opacity: 0;
                pointer-events: none;
            }

        .ctgr-gallery-modal .thumb-p .swiper-slide-thumb-active > img {
            border: 5px solid var(--background-primary);
        }

#booking .acc-detail {
    display: block;
    background: var(--background-light);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding-bottom: 0.5rem;
}

#booking .remark {
    color: #AAA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


#booking .acc-sel {
    background-color: var(--background-primary);
}

#booking .acc-sel-detail {
    padding: 6px 20px 6px 10px;
    border-radius: 12px 12px 0px 0px;
}

#booking .acc-occ-detail {
    color: var(--text-light);
    font-size: 18px;
    font-style: normal;
}

#booking .acc-type {
    display: flex;
}

#booking .acc-cat-ava {
    color: #777;
    font-size: 12px;
    font-weight: 400;
}

#booking .unit-guestType {
    display: none;
}

#booking .btn-booking {
    background: var(--background-primary);
    color: var(--text-light);
    width: 30%;
    border-radius: 12px;
    height: 42px;
    float: right;
    margin-right: 1.5rem;
}

#booking .acc-group-accommodation-title {
    font-size: 16px;
    font-weight: 700;
    color: #777;
    margin-bottom: 0;
    text-transform: capitalize;
}

#booking .capacity-subtitle {
    color: var(--text-primary);
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#accommodation-booking .addon_details {
    border-radius: 12px;
    background: var(--background-light);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

#booking .unit-desc {
    color: #AAA;
    font-size: 14px;
}

#booking .unavailable {
    color: #CCC;
    font-size: 14px;
    font-weight: 700;
}

#booking .guest-wrapper .selected {
    outline: 0;
    background: var(--background-primary);
    color: var(--text-light);
    border: 1px solid #AAA;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
}

    #booking .guest-wrapper .selected .lot-Subtitle,
    #booking .guest-wrapper .selected .lot-price {
        color: var(--text-light);
    }


#booking .active {
    background: #AAA;
}

#booking .btn-cancel {
    border: 2px solid var(--background-secondary);
    border-radius: 12px;
    width: 250px;
    height: 45px;
    color: var(--text-light);
    font-size: 18px;
    max-width: 100%;
}

    #booking .btn-cancel:disabled {
        border: 3px solid #AAA;
        color: #AAA;
        background-color: var(--background-light);
    }

#booking .btn-add-to-cart {
    border-radius: 12px;
    width: 232px;
    height: 45px;
    color: var(--text-light);
    background-color: var(--background-secondary);
    font-weight: 700;
    transition: all .3s ease;
}

#booking .btn-add-to-cart:hover {
    background-color: var(--background-secondary-hover);
}

    #booking .btn-add-to-cart:disabled {
        background-color: #AAA;
    }

#booking .btn-clear {
    border-radius: 12px;
    border: 3px solid #AAA;
    background: var(--background-light);
    width: 112px;
    height: 45px;
    color: #AAA;
    font-style: normal;
    font-weight: 700;
    transition: .3s ease-in-out;
}

#booking .btn-clear:hover {
    background: #AAA;
    color: var(--text-light);
}

#booking .btn-sold-out {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    background: #FF6262;
    border-radius: 6px;
    padding: .5rem;
    width: 105px;
    display: block;
    float: right;
    max-width: 100%;
}

#information-detail {
    margin-top: 1.5rem;
}

    #information-detail .information-wrapper {
        border-radius: 12px;
        background: var(--background-light);
        border: 1px solid #EEE;
        box-shadow: 0px 2px 4px 0px #00000040;
        padding: 2rem 3rem;
        position: relative;
        margin-bottom: 1.5rem;
    }

        #information-detail .information-wrapper .grey-wrapper {
            border-radius: 12px;
            background: #F9F9F9;
            margin: 1rem 0;
            padding: 1rem;
        }

        #information-detail .information-wrapper .more-about {
            font-size: 16px;
            color: var(--text-orange);
            cursor: pointer;
            position: absolute;
            bottom: 15px;
            text-decoration-line: underline;
        }

@media (min-width: 992px) {
    #information-detail .information-wrapper .grey-wrapper .col-lg-1-5 {
        flex: 0 0 12.5%; /* 100% / 8 = 12.5% */
        max-width: 12.5%;
    }
}

#information-detail .nav-pills .nav-item .nav-link, .nav-pills .nav-link {
    border: none;
    width: 75px;
    text-align: center;
    color: #AAA;
    background-color: transparent;
    font-size: 14px;
}

#information-detail .nav-pills .nav-link.active {
    background-color: transparent;
    border-right: none;
    border-top: none;
    border-left: none;
    color: #777;
    width: 75px;
    font-size: 14px;
    text-align: center;
}

#information-detail .overview, .map {
    padding: 0 1rem;
}

    #information-detail .overview img, .map iframe {
        object-fit: fill;
        width: 100%;
        height: 130px;
        border: 1px solid #AAA;
    }

#detail-accommodation .acc-left-title-icon {
    width: 8px;
    height: 25px;
    background: var(--background-primary);
}

#detail-accommodation .acc-left-title-text {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin-left: 1rem;
    padding-top: 0.2rem;
}

#detail-accommodation .acc-booking-detail {
    border-radius: 12px;
    margin-bottom: 1rem;
    background: var(--background-light);
    border: 1px solid #DDD;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
}

#detail-accommodation .acc-group {
    border: 1px solid #AAA;
}

#detail-accommodation .acc-booking-detail .ctgr-name {
    color: #000;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#detail-accommodation .acc-booking-detail .ctgr-attr {
    color: var(--text-primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#detail-accommodation .acc-booking-detail .grey-wrapper {
    border-radius: 12px;
    background: #F9F9F9;
    padding: 1rem;
    height: 171px;
    position: relative;
}

    #detail-accommodation .acc-booking-detail .grey-wrapper .title {
        color: #888;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        margin-bottom: .5rem;
    }

    #detail-accommodation .acc-booking-detail .grey-wrapper .desc {
        color: #888;
        font-family: Roboto;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

#detail-accommodation .col-lg-1-7 {
    flex: 0 0 14.2857%;
    max-width: 14.2857%;
}

#detail-accommodation .group-start-checked {
    color: #FFBE2C
}

#detail-accommodation .group-rate-text {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
    color: #FFBE2C
}

#detail-accommodation .group-rating {
    padding-top: 1.2rem;
}

#detail-accommodation .group-price {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--text-primary);
    margin-left: 30px;
    padding-top: 1.2rem;
    margin-left: 30px;
}

#detail-accommodation .group-checkin {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--text-primary);
    padding-top: 0.95rem;
    margin-left: 30px;
}

#detail-accommodation .group-checkout {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--text-primary);
    padding-top: 0.95rem;
    margin-left: 30px;
}

#detail-accommodation .group-camp {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--text-primary);
    padding-top: 1.2rem;
    margin-left: 30px;
}

#accommodation-booking:last-child {
    border-radius: 0 0 12px 12px;
}

#detail-accommodation .ctg-title {
    color: #777;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

#detail-accommodation .acc-group-detail {
    background: #F9F9F9;
}

#detail-accommodation .acc-group-accommodation {
    padding: 1.5rem;
}

#detail-accommodation .acc-accommodation-header-title {
    font-weight: 700;
    font-size: 14px;
    color: #777;
    margin-bottom: 1rem;
}

#detail-accommodation .group-detail-main-img {
    height: 253px;
    width: 310px;
    border-radius: 12px 0px 0px 0px;
}


#detail-accommodation .group-detail-sub-div {
    width: 113px;
    height: 63.2px;
    overflow: hidden;
    position: relative;
}

#detail-accommodation .overlay-background {
    position: relative;
    filter: brightness(.5);
}

#detail-accommodation .group-detail-sub-div .more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 400;
}

#detail-accommodation .group-detail-sub-img {
    width: 113px;
    height: 63px;
    border: 1px solid #AAA;
}

#detail-accommodation .group-detail-sub-title {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: #777;
    padding-top: 10px;
    padding-bottom: 5px;
}

#detail-accommodation .group-detail-descbox {
    border-radius: 12px;
    font-size: 14px;
    background: var(--background-light);
    color: #666;
    height: 214px;
    position: relative;
    padding: 1rem;
}

#detail-accommodation .catdesc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    -webkit-box-orient: vertical;
}

#detail-accommodation .group-detail-faci {
    display: flex;
    align-items: center;
    gap: 10px;
}

#detail-accommodation .group-detail-faci-text {
    margin-left: 5px;
}


#detail-accommodation .group-detail-faci-img {
    width: 15px;
    height: 15px;
}

#detail-accommodation .profile-img-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #DDD;
}

#detail-accommodation .profile-img {
    width: 40px;
    height: 40px;
}

#detail-accommodation .profile-detail {
    margin-left: 10px;
}

#detail-accommodation .profile-rating-name {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
}

#detail-accommodation .profile-rating-date {
    font-family: Roboto;
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0em;
    text-align: left;
    color: #666;
}

#detail-accommodation .profile-rating-star .svg-inline--fa.fa-w-18 {
    width: 1rem;
}

#detail-accommodation .group-rating-title {
    font-family: Roboto;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0em;
    text-align: left;
    color: #666;
}

#detail-accommodation .group-rating-desc {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: #666;
}

#detail-accommodation .group-see-more {
    font-size: 12px;
    color: #FB8D20;
    cursor: pointer;
    position: absolute;
    bottom: 15px;
    right: 1rem;
}

#overallAboutModal .modal-body,
#overallFacilityModal .modal-body,
#aboutModal .modal-body,
#facilityModal .modal-body,
#galleryModal .modal-body {
    padding: 1rem 2.5rem;
}

#detail-accommodation .overview .more {
    top: 65%;
}

#detail-accommodation .map-content {
    position: relative;
    padding: 1.5rem 0 0;
    height: 384px;
}

#detail-accommodation .overview-img {
    height: 695px;
    border-radius: 12px;
}

#detail-accommodation .btn-lot-sel {
    width: 100%;
    font-weight: 700;
    line-height: 1.25rem;
    color: var(--text-primary);
    padding: 0.5rem;
    background: var(--background-light);
    border: 1px solid #DDD;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    min-height: 5rem;
    height: auto;
    transition: .3s ease-in-out;
}

    #detail-accommodation .btn-lot-sel:hover {
        border: 1px solid var(--background-primary);
    }

#detail-accommodation .btn-lot-sel-occ {
    width: 100%;
    line-height: 1.25rem;
    background: #F7F4F0;
    border: 1px solid #DDD;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    font-weight: 700;
    color: #CCC;
    padding: .5rem;
    margin-top: .5rem;
    margin-bottom: .5rem;
    min-height: 5rem;
}


#detail-accommodation .circle-icon {
    color: var(--text-secondary);
    margin-top: 4px;
}

#detail-accommodation .maximum-text {
    color: #AAA;
}

#detail-accommodation .lot-price {
    color: var(--background-primary);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}

#detail-accommodation .lot-Subtitle {
    color: #AAA;
    text-align: center;
    font-size: 10px;
    line-height: normal;
}

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    z-index: 1055;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

    .gallery-modal.open {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .gallery-modal .gallery-modal-dialog {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        inset: 0;
        margin: 48px;
    }

@media (max-width: 1440px) {
    .gallery-modal .gallery-modal-dialog {
        margin: 2% 10%;
    }
}

.gallery-modal .gallery-modal-content {
    background: #444D58;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    max-width: 1920px;
    max-height: 1080px;
}

.gallery-modal-header {
    background: var(--background-light);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding-top: 10px;
    padding-left: 46px;
    padding-bottom: 10px;
    padding-right: 20px;
    display: flex;
    align-items: center;
}

    .gallery-modal-header h6 {
        font-size: 18px;
        font-weight: 700;
        line-height: normal;
        margin-right: auto;
        margin-bottom: 0;
    }

.gallery-modal .gallery-modal-header .x-gallery {
    cursor: pointer;
}

.gallery-modal-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

    .gallery-modal-body .mySwiper2 {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

        .gallery-modal-body .mySwiper2 .swiper-button-next {
            right: 61px;
        }

        .gallery-modal-body .mySwiper2 .swiper-button-prev {
            left: 61px;
        }

    .gallery-modal-body .swiper-button-prev.swiper-button-disabled, .gallery-modal .gallery-modal-body .swiper-button-next.swiper-button-disabled {
        opacity: 0;
        pointer-events: none;
    }

@media (max-width: 1440px) {
    .gallery-modal-body .mySwiper2 .swiper-slide > img {
        height: 26rem !important;
    }
}

.gallery-modal-body .mySwiper2 .swiper-slide > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-modal-body .swiper-button-prev, .gallery-modal-body .swiper-button-next {
    background: var(--background-light);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: var(--text-primary);
    transition: box-shadow .3s;
}

    .gallery-modal-body .swiper-button-prev:after, .gallery-modal-body .swiper-button-next:after {
        font-size: 12px;
    }

.gallery-modal-body .swiper-middle-wrapper {
    padding-top: 12px;
    padding-left: 49px;
    padding-bottom: 12px;
    padding-right: 40px;
    background: #222;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

    .gallery-modal-body .swiper-middle-wrapper h1 {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-light);
        line-height: normal;
        margin-bottom: 0;
    }

    .gallery-modal-body .swiper-middle-wrapper .swiper-pagination-fraction {
        top: 12px;
        left: -33px;
    }

    .gallery-modal-body .swiper-middle-wrapper .swiper-pagination {
        color: var(--text-light);
        font-size: 18px;
        line-height: normal;
        text-align: right;
    }

.thumb-p {
    position: relative;
    padding-top: 30px;
    padding-left: 38px;
    padding-bottom: 28px;
    padding-right: 38px;
}

    .thumb-p .swiperThumbs.swiper {
        margin-left: unset;
        margin-right: unset;
    }

.swiperThumbs .swiper-slide {
    width: 179px !important;
}

    .swiperThumbs .swiper-slide > img {
        width: 100%;
        height: 112px;
        object-fit: cover;
    }

@media (max-width: 1440px) {
    .swiperThumbs .swiper-slide .img-fluid {
        height: 7rem;
    }
}

.thumb-p .swiper-slide-thumb-active > img {
    border: 5px solid var(--background-primary);
}

.swiper-middle-wrapper .swiper-pagination-fraction {
    left: -33px;
}

.swiper-middle-wrapper .swiper-pagination {
    color: var(--text-light);
    font-size: 18px;
    line-height: normal;
    text-align: right;
}

.gallery-modal-body .mySwiper2 .swiper-slide {
    width: auto;
    margin: 0 auto;
}

.gallery-modal-body .mySwiper .swiper-slide {
    width: 179px !important;
}

.thumb-p .swiper-button-next {
    right: 20px;
}

    .thumb-p .swiper-button-prev:after, .thumb-p .swiper-button-next:after {
        font-size: 12px;
    }

.thumb-p .swiper-button-prev {
    left: 20px;
}

.thumb-p .swiper-button-prev, .thumb-p .swiper-button-next {
    background: var(--background-light);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: var(--text-primary);
    transition: box-shadow .3s;
    top: 95px;
}

    .thumb-p .swiper-button-prev.swiper-button-disabled,
    .thumb-p .swiper-button-next.swiper-button-disabled {
        opacity: 0;
        pointer-events: none;
    }

#branchmap {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.cart-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1000;
    display: flex;
    justify-content: end;
    transition: opacity .3s ease, visibility .3s ease;
}

    .cart-info-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .cart-info-modal .cart-info-content {
        background: var(--background-light);
        width: 400px;
        height: 100%;
    }

    .cart-info-modal .cart-info-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--background-primary);
        border-radius: 0;
        height: 97px;
        padding: 20px;
        color: var(--text-light);
    }

        .cart-info-modal .cart-info-header h5 {
            flex: 1;
            text-align: center;
            margin-bottom: 0;
            font-size: 18px;
            font-weight: 700;
        }

        .cart-info-modal .cart-info-header i{
            cursor: pointer;
        }

    .cart-info-modal .cart-info-body {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 80vh;
    }

    .cart-info-modal .btn-add-more {
        background: var(--background-light);
        border: 3px solid var(--background-secondary);
        color: var(--text-orange);
        width: 314px;
        height: 45px;
        border-radius: 12px;
        padding: 8px;
        transition: .3s ease-in-out;
        font-weight: 700;
    }

    .cart-info-modal .btn-add-more:hover {
        color: var(--text-light);
        background: var(--background-secondary-hover);
    }

    .cart-info-modal .btn-to-cart {
        border: 0;
        outline: 0;
        background: var(--background-secondary);
        color: var(--text-light);
        width: 314px;
        height: 45px;
        border-radius: 12px;
        padding: 8px;
        transition: .3s ease-in-out;
        font-weight: 700;
    }

        .cart-info-modal .btn-to-cart:hover {
            background-color: var(--background-secondary-hover);
        }

    .cart-info-modal .cartinfo-modal-dialog {
        right: 0px;
        -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
        -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
        -o-transition: opacity 0.3s linear, right 0.3s ease-out;
        transition: opacity 0.3s linear, right 0.3s ease-out;
    }

.cart-info-modal #cartinfo-detail {
    height: 100%;
    width: 100%;
}

.cart-info-modal .cart-item-date {
    color: var(--text-primary);
    font-size: 14px;
}

.cart-info-modal .cart-item-acc-name {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.cart-info-modal .cart-item-acc-name-child {
    color: var(--text-primary);
    font-weight: 400;
    font-size: 14px;
}

.cart-info-modal .cart-item-acc-addon {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 14px;
}

.cart-info-modal .cart-item-acc-addon-child {
    color: var(--text-primary);
    font-weight: 400;
    font-size: 14px;
}

.cart-info-modal .cart-item-child-span {
    margin-left: 0.7rem;
}
/*
.cart-info-modal .cart-item-addon {
    background: #ECFAFB;
}*/

.cart-info-modal .cart-price-title {
    font-size: 14px;
    text-align: right;
}

.cart-info-modal .cashback-wrapper {
    margin: 0 0 3rem 0;
}

    .cart-info-modal .cashback-wrapper .bg-cashback {
        background: #E1FDEE;
        height: 68px;
        color: #1E8D78;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        width: 396px;
        display: flex;
        align-items: center;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }

    .cart-info-modal .cashback-wrapper .cb-policy-lbl {
        color: var(--text-primary);
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
    }

    .cart-info-modal .cashback-wrapper .cb-policy {
        color: var(--text-primary);
        font-size: 12px;
        font-weight: 700;
        text-decoration-line: underline;
    }


.remove-add-cart-modal {
    --l: 1rem;
    --r: 1rem;
    --s: 350px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3s ease, visibility .3s ease;
}

    .remove-add-cart-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .remove-add-cart-modal .removecart-modal-dialog {
        margin-left: var(--l);
        margin-right: var(--r);
        position: relative;
        width: auto;
    }

    .remove-add-cart-modal .removecart-modal-dialog-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100% - var(--l) * 2);
    }

    .remove-add-cart-modal .removecart-modal-content {
        background: var(--background-light);
        width: var(--s);
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
    }

    .remove-add-cart-modal .removecart-modal-body {
        padding: 36px 29px 26px;
        height: 100%;
        text-align: center;
    }

        .remove-add-cart-modal .removecart-modal-body h6 {
            margin-bottom: 30px;
            font-weight: 700;
        }

        .remove-add-cart-modal .removecart-modal-body span {
            line-height: normal;
            margin-bottom: 35px;
            display: block;
        }

        .remove-add-cart-modal .removecart-modal-body .btn-no {
            background: var(--background-secondary);
            border-radius: 12px;
            color: var(--text-light);
            line-height: normal;
            font-size: 16px;
            font-weight: 700;
            height: 41px;
            border: 0;
            outline: 0;
            transition: .3s ease-in-out;
            margin-bottom: 30px;
            width: 222px;
        }

            .remove-add-cart-modal .removecart-modal-body .btn-no:hover {
                background: var(--background-secondary-hover);
            }

/*.btn-modal {
    background: var(--background-secondary);
    width: 222px;
    font-size: 18px;
    font-weight: 700;
    color: #FCFCFC;
}*/

.remove-add-cart-modal .removecart-modal-body .btn-yes {
    font-size: 16px;
    background-color: transparent;
    width: fit-content;
    margin: 0 auto;
    outline: 0;
    border: 0;
    font-weight: 700;
    line-height: normal;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.more-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 1000;
}

.more-modal.open {
    opacity: 1;
    visibility: visible;
}

.more-modal .more-content {
    background: var(--background-light);
    width: 500px;
    border-radius: 16px;
}

.more-modal .more-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #DDD;
}

    .more-modal .more-header h5 {
        margin-bottom: 0;
        font-size: 18px;
    }

    .more-modal .more-header i {
        cursor: pointer;
    }

    .more-modal .category-description,
    .more-modal .category-facility {
        padding: 1rem;
    }

        .more-modal .category-facility {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

            .more-modal .category-facility .location-label {
                width: 110px;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                overflow: hidden;
                text-overflow: ellipsis;
                line-height: 1.4em;
                max-height: calc(1.4em * 2);
            }

/*--------------------------------------------------------------
# Language Modal
--------------------------------------------------------------*/
            .camp-modal {
                position: fixed; /* Stay in place */
                left: 0;
                top: 0;
                width: 100%; /* Full width */
                height: 100%; /* Full height */
                background-color: rgba(68,68,68,.5);
                overflow: hidden; /* Enable scroll if needed */
            }

    .camp-modal .camp-dialog {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }

    .camp-modal .camp-dialog-centered {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: calc(100% - 1.75rem * 2);
    }

    /* Modal Content */
    .camp-modal .camp-content {
        background-color: #FEFEFE;
        padding: 50px;
        border-radius: 16px;
        text-align: center;
        width: 100%;
        height: 286px;
    }

        .camp-modal .camp-content h5 {
            margin-bottom: 2rem;
        }

        .camp-modal .camp-content .close-modal-dialog {
            margin-top: 2rem;
        }