﻿#page .same-tour-area .same-tour-area-head,
#page .tour-group .tour-group-head,
#page .hotels .hotels-head,
#page .hotels .choose-city,
#page .visa .visa-head,
#page .tourism .tourism-head {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: space-between;
    width: 100%;
}

.same-tour-area,
.destinations,
.tour-group,
.hotels,
.banners,
.visa,
.tourism,
.why-tripall-head,
.footer-content-area,
#page {
    width: 75% !important;
    margin: auto;
}

p {
    margin: 0px !important;
}

#page *,
#page *:before,
#page *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*===title template====*/

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .title-container h3 {
        display: inline;
        margin: 0px 10px;
        font-size: 16px;
    }

/*-----------------------------hotel priview and map-----------------------------*/
.hotel-preview-and-map {
    display: flex;
    width: 75%;
    margin: auto;
    gap: 0px;
}

.map {
    width: 25%;
    padding: 0px 0px 0px 5px;
    position: relative;
}

    .map iframe {
        border-radius: 7px;
        filter: brightness(0.9);
        transition: 0.15s;
        width: 100%;
        height: 100%;
    }

        .map iframe:hover {
            filter: brightness(1);
        }

    .map .map-address {
        position: absolute;
        bottom: 30px;
        right: 10px;
        left: 15px;
        display: flex;
        gap: 5px;
        align-items: center;
    }

        .map .map-address .icon {
            width: 35px;
            height: 35px;
            border-radius: 7px;
            background-color: white;
            color: var(--first-color);
            display: flex;
            flex-shrink: 0;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .map .map-address .text {
            background-color: white;
            height: 35px;
            display: flex;
            align-items: center;
            width: fit-content;
            width: 100%;
            padding: 0px 5px;
            border-radius: 7px;
            color: var(--second-color);
            overflow: hidden;
        }

            .map .map-address .text address {
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;
                font-family: vazir;
                font-style: normal;
                margin: 0;
            }

    .map:hover .map-address .text address {
        animation: marquee 10s infinite linear;
        -webkit-line-clamp: unset;
        white-space: nowrap;
        margin: 0;
    }

@keyframes marquee {
    0%,90%,100% {
        transform: translateX(0);
    }

    60% {
        transform: translateX(100%);
    }

    60.0001% {
        transform: translateX(-60%);
    }
}



.hotel-preview-container {
    width: 75%;
    margin: auto;
    position: relative;
    padding: 0px 5px 0px 0px;
}

    .hotel-preview-container .view-all-button {
        position: absolute;
        z-index: 7;
        bottom: 10px;
        left: 15px;
    }

        .hotel-preview-container .view-all-button button {
            font-family: inherit;
            border-radius: 7px;
            border: none;
            padding: 5px 10px;
            color: white;
            font-size: 12px;
            background-color: #acabaf4f;
            backdrop-filter: blur(20px);
        }

            .hotel-preview-container .view-all-button button:hover {
                cursor: pointer;
            }

    .hotel-preview-container .hotel-preview-area {
        display: grid;
        grid-template-columns: auto auto auto auto;
        grid-template-rows: auto auto;
        width: 100%;
        margin: auto;
        gap: 10px;
        height: 350px;
        position: relative;
    }


        .hotel-preview-container .hotel-preview-area #tp1 {
            grid-column: 1/2;
            grid-row: 1/2;
        }

        .hotel-preview-container .hotel-preview-area #tp2 {
            grid-column: 1/2;
            grid-row: 2/3;
        }


        .hotel-preview-container .hotel-preview-area #tp3 {
            grid-column: 2/3;
            grid-row: 1/2;
        }

        .hotel-preview-container .hotel-preview-area #tp4 {
            grid-column: 2/3;
            grid-row: 3/2;
        }

        .hotel-preview-container .hotel-preview-area #tp5 {
            grid-column: 3/5;
            grid-row: 1/3;
        }

        .hotel-preview-container .hotel-preview-area :is(#tp1, #tp2, #tp3, #tp4, #tp5) {
            border-radius: 10px;
        }

            .hotel-preview-container .hotel-preview-area :is(#tp1, #tp2, #tp3, #tp4, #tp5) img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 10px;
            }

        .hotel-preview-container .hotel-preview-area .hotel-preview-img {
            position: relative;
        }

            .hotel-preview-container .hotel-preview-area .hotel-preview-img img {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 5;
            }

            .hotel-preview-container .hotel-preview-area .hotel-preview-img .img-cover {
                width: 100%;
                height: 100%;
                position: absolute;
                background-color: hsla(0, 0%, 0%, 0.3);
                z-index: 6;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 10px;
                opacity: 0;
                transition: 0.3s;
            }

                .hotel-preview-container .hotel-preview-area .hotel-preview-img .img-cover button {
                    font-family: inherit;
                    background-color: white;
                    color: var(--second-color);
                    border: none;
                    border-radius: 25px;
                    padding: 5px 15px;
                    transition: 0.3s;
                }

                    .hotel-preview-container .hotel-preview-area .hotel-preview-img .img-cover button:hover {
                        cursor: pointer;
                        background-color: var(--second-color);
                        color: white;
                    }

            .hotel-preview-container .hotel-preview-area .hotel-preview-img:hover .img-cover {
                opacity: 1 !important;
            }

/*----------------------------Gallery Viewer---------------------------------*/
#galleryViewer {
    opacity: 0;
    display: none;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.1s;
}

    #galleryViewer #swiper-gallery {
        width: 100%;
        background: none;
        z-index: 1001;
        position: relative;
    }

        #galleryViewer #swiper-gallery .swiper-slide {
            text-align: center;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            #galleryViewer #swiper-gallery .swiper-slide img {
                max-width: 100%;
                border: 3px solid #ddd;
                border-radius: 10px;
                width: calc(60vw + 5rem);
                aspect-ratio: 16 / 9;
            }

    #galleryViewer #gallery-thumbnails {
        z-index: 1001;
    }

        #galleryViewer #gallery-thumbnails img {
            max-width: 100%;
            height: auto;
            cursor: pointer;
            margin-right: 10px;
            border: 2px solid #ddd;
            border-radius: 5px;
            height: 100%;
        }

        #galleryViewer #gallery-thumbnails .swiper-slide-thumb-active img {
            border: 4px solid var(--second-color);
        }

    #galleryViewer #close-btn {
        position: absolute;
        top: 2rem;
        right: 5%;
        font-size: 40px;
        cursor: pointer;
        color: #fff;
        z-index: 1001;
    }

    #galleryViewer #dark-overlay {
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1000;
    }

    #galleryViewer #image-count {
        position: absolute;
        top: 2rem;
        left: 5%;
        color: #fff;
        font-size: 25px;
        z-index: 1001;
    }

/*---------------------------#page setting--------------------------*/

#page {
    display: grid;
    grid-template-columns: 25% 75%;
    align-items: start;
    color: #000 !important;
    padding: 0px;
    line-height: 30px;
}

    #page article {
        grid-column: 2 / 3;
        padding: 0px 5px 0px 0px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #page aside {
        grid-column: 1 / 2;
        height: fit-content;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0px 0px 0px 5px;
    }

section {
    height: fit-content;
    padding: 0px;
}

#page #articleAndAside aside {
    grid-column: 2 / 3;
}

#page #articleAndAside article {
    grid-column: 1 / 2;
}

button, input, input::placeholder, textarea {
    font-size: 14px !important;
}


/*--------------------------sidebar--------------------------*/

.sidebar-item {
    width: 100%;
    border-radius: 7px;
    border: none;
    padding: 10px 0px;
    box-shadow: 0px 0px 1px var(--caption-color);
    background-color: white;
    overflow: hidden;
}

/*--------------------------sidebar - book-item--------------------------*/

#page #onlineReserve {
    overflow: visible;
   
    /*pointer-events: none;*/
    /*user-select: none;*/
}

#page #comingSoon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    pointer-events: none;
    user-select: none;
}

#page .book-item {
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    #page .book-item .title {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        color: var(--first-color);
    }

        #page .book-item .title span {
            font-size: 13px;
        }

        #page .book-item .title p {
            font-size: 18px;
        }


    /*---book item selects general syles---*/
    #page .book-item .book-select {
        position: relative;
        background-color: var(--bg-font-color);
        width: 100%;
        border-radius: 7px;
        padding: 10px ;
        display: flex !important;
        justify-content: space-between;
    }

        #page .book-item .book-select .book-select-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0px ;
            transition: 0.3s ease;
        }

            #page .book-item .book-select .book-select-title .chevron-icon {
                transition: 0.3s ease;
            }

                #page .book-item .book-select .book-select-title .chevron-icon.rotate {
                    transform: rotate(-180deg) translateY(4px);
                }

            #page .book-item .book-select .book-select-title:hover {
                cursor: pointer;
            }

            #page .book-item .book-select .book-select-title span {
                font-size: 14px;
            }


        #page .book-item .book-select .book-select-content {
            position: absolute;
            top: 90%;
            width: 100%;
            background-color: var(--bg-font-color);
            z-index: 99;
            transition: 0.15s ease-in-out;
            padding-bottom: 5px;
            border-radius: 0px 0px 7px 7px;
            transition: 0.2s ease;
            opacity: 0;
            z-index: -1;
        }

            #page .book-item .book-select .book-select-content.active {
                opacity: 1;
                z-index: 9;
            }

            #page .book-item .book-select .book-select-content p {
                padding: 0px 10px;
            }

    /*---select date-----*/
    #page .book-item .select-date-area .select-date-content {
        display: flex;
        flex-direction: column;
    }

        #page .book-item .select-date-area .select-date-content.active {
            z-index: 100;
        }


        #page .book-item .select-date-area .select-date-content .item {
            border-radius: 7px;
            background-color: white;
            gap: 10px;
            margin: 5px 10px;
            transition: 0.2s;
        }

            #page .book-item .select-date-area .select-date-content .item.active {
                background-color: var(--second-color);
            }

                #page .book-item .select-date-area .select-date-content .item.active span {
                    color: white !important;
                }
            #page .book-item .select-date-area .select-date-content .item span {
                font-size: 14px;
                font-weight: 400;
            }

            #page .book-item .select-date-area .select-date-content .item .col2 {
                text-align: left;
            }


    /*---select travelers-----*/

    #page .book-item .select-travelers-area {
        user-select: none;
    }

        #page .book-item .select-travelers-area .select-travelers-content .item {
            background-color: white;
            margin: 5px 10px;
            border-radius: 7px;
            padding: 3px 10px;
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

            #page .book-item .select-travelers-area .select-travelers-content .item .row {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

                #page .book-item .select-travelers-area .select-travelers-content .item .row .travelers-type {
                    display: flex;
                    flex-direction: column;
                }

                    #page .book-item .select-travelers-area .select-travelers-content .item .row .travelers-type span.caption-color {
                        font-size: 12px;
                        line-height: 25px;
                    }


                #page .book-item .select-travelers-area .select-travelers-content .item .row .travelers-num {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                    #page .book-item .select-travelers-area .select-travelers-content .item .row .travelers-num .travelers-num-content {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        background-color: var(--bg-font-color);
                        border-radius: 7px;
                        padding: 2px 7px;
                        gap: 10px;
                    }

                        #page .book-item .select-travelers-area .select-travelers-content .item .row .travelers-num .travelers-num-content .icon {
                            color: white;
                            width: 20px;
                            height: 20px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            border-radius: 5px;
                            background-color: var(--second-color);
                        }

                            #page .book-item .select-travelers-area .select-travelers-content .item .row .travelers-num .travelers-num-content .icon:hover {
                                cursor: pointer;
                            }
    /*---btn---*/

    #page .book-item .button {
        width: 100%;
    }

        #page .book-item .button button {
            width: 100%;
            padding: 10px 0px;
            font-family: inherit;
            background-color: var(--first-color);
            border: 1px solid var(--first-color);
            color: white;
            border-radius: 7px;
            transition: 0.1s;
        }

            #page .book-item .button button:hover {
                cursor: pointer;
                color: var(--first-color);
                background-color: white;
                font-weight: bold
            }

/*--------------------------sidebar - reservation request--------------------------*/

#page .reservation-request {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

    #page .reservation-request .search-tour-input {
        padding: 0px 10px;
    }

    #page .reservation-request .icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--second-color);
        color: white;
        font-size: 17px;
        margin: auto;
    }

    #page .reservation-request .search-input {
        position: relative;
        outline: none;
        overflow: hidden;
        height: 45px;
        user-select: none;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }


        #page .reservation-request .search-input input {
            width: 100%;
            height: 100%;
            border: none;
            outline: none;
            padding-right: 10px;
            overflow: hidden;
            border-radius: 5px;
            background-color: var(--bg-font-color) !important;
        }

            #page .reservation-request .search-input input::placeholder {
                font-family: vazir;
                color: var(--border-first-color);
            }

        #page .reservation-request .search-input .icon-input {
            position: absolute;
            height: 35px;
            width: 45px;
            background-color: var(--second-color);
            border: none;
            border-radius: 7px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            top: 50%;
            left: 13px;
            transform: translate(-4%, -50%);
        }

        #page .reservation-request .search-input .icon:hover {
            cursor: pointer;
        }

        #page .reservation-request .search-input .icon:active {
            filter: brightness(0.9);
        }

/*--------------------------sidebar - distance of --------------------------*/

#page .distance-of {
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    #page .distance-of .title {
        display: flex;
        align-items: center;
        gap: 7px;
        width: 100%;
        color: var(--first-color);
    }

    #page .distance-of .content {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

        #page .distance-of .content .item {
            display: flex;
            align-items: self-start;
            gap: 5px;
            position: relative;
            top: 5px;
        }
#btnDiscountCalc{
    width:100%;
    margin:5px auto;
}
/*----------------------------- article -------------------------*/
#page .article-item {
    width: 100%;
    border-radius: 7px;
    border: none;
    padding: 10px 0px;
    box-shadow: 0px 0px 1px var(--caption-color);
    background-color: white;
    overflow: hidden;
}

/*----------------------------- article - rate and share -------------------------*/

#page article .hotel-details-content {
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    #page article .hotel-details-content .rate-and-share {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        #page article .hotel-details-content .rate-and-share .share {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: flex-end;
        }

    #page article .hotel-details-content .icons {
        display: flex;
        align-items: center;
        color: var(--caption-color);
        gap: 10px;
        font-size: 18px;
    }

        #page article .hotel-details-content .icons > button {
            border: none;
            background: none;
            padding: 0;
            display: flex;
        }

        #page article .hotel-details-content .icons .icon {
            color: var(--caption-color);
            font-size: 18px;
            transition: 0.2s;
        }

        #page article .hotel-details-content .icons > button:hover .icon {
            color: var(--second-color);
        }

        #page article .hotel-details-content .icons > button:hover .svg-icon {
            fill: var(--second-color);
        }

    #page article .hotel-details-content .rate-and-share .rate {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    #page article .hotel-details-content .stars {
        display: flex;
        gap: 2px;
        align-items: center;
        color: #FFC107;
    }

    #page article .hotel-details-content .tags {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        #page article .hotel-details-content .tags .tag {
            padding: 0px 12px;
            border-radius: 7px;
            display: flex;
            align-items: center;
        }

            #page article .hotel-details-content .tags .tag span {
                font-size: 12px;
            }

            #page article .hotel-details-content .tags .tag.green-tag {
                color: #54BA1D;
                background-color: rgb(84, 186, 29, 0.1);
            }

            #page article .hotel-details-content .tags .tag.orange-tag {
                color: #FF8400;
                background-color: #FF84001a;
            }


    /*----------------------------- article - hotel details content -------------------------*/

    #page article .hotel-details-content .title {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
    }

        #page article .hotel-details-content .title .title-content {
            display: flex;
            flex-direction: column;
            gap: 5px;
            width: 100%;
        }

    #page article .hotel-details-content h3 {
        margin: 0px;
        color: #52575C;
    }

    #page article .hotel-details-content .location {
        display: flex;
        align-items: center;
        gap: 5px;
        width: 100%;
        font-size: 1.1rem;
    }

    #page article .hotel-details-content .title .title-content .location span {
        width: 100% !important;
    }


    #page article .hotel-details-content .score {
        display: flex;
        gap: 10px;
        color: #54BA1D;
    }

        #page article .hotel-details-content .score .value {
            padding: 0px 10px;
            background-color: rgb(84, 186, 29, 0.1);
            border-radius: 7px;
        }

    #page article .hotel-details-content hr {
        width: 100%;
        height: 1px;
        opacity: 0.2;
    }


/*---------------------------article - tour information------------------------------*/

#page .tour-information {
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    #page .tour-information .title {
        display: flex;
        align-items: center;
        gap: 7px;
        color: var(--first-color);
        font-weight: bold;
        width: 100%;
    }

        #page .tour-information .title #mug {
            padding-bottom: 6px;
        }

        #page .tour-information .title .icon {
            font-size: 17px;
        }

    #page .tour-information .content .item-holder {
        display: flex;
        flex-wrap: wrap;
        row-gap: 12px;
        column-gap: 25px;
    }

        #page .tour-information .content .item-holder .item {
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.2s;
        }

/*---------------------------article - rules ------------------------------*/

#page .rules {
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    #page .rules .title-and-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #page .rules .title {
        display: flex;
        align-items: center;
        gap: 7px;
        color: var(--first-color);
        font-weight: bold;
        width: 50%;
    }

        #page .rules .title .icon {
            font-size: 17px;
        }


/*---------------------------article - related hotels ------------------------------*/

#page .related-hotel-area .related-hotel-content .items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
    row-gap: 20px;
}

    #page .related-hotel-area .related-hotel-content .items .item {
        display: flex;
        gap: 10px;
        padding: 5px;
        border: 1px solid var(--bg-font-color);
        transition: 0.15s;
    }

        #page .related-hotel-area .related-hotel-content .items .item:hover {
            border: 1px solid var(--second-color);
        }

        #page .related-hotel-area .related-hotel-content .items .item .content {
            width: 60%;
        }

            #page .related-hotel-area .related-hotel-content .items .item .content .details h4 {
                color: var(--font-color);
                font-size: 15px;
                font-weight: 500;
                transition: 0.15s;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;
                overflow: hidden;
                line-height: 30px;
                margin: 0;
            }

        #page .related-hotel-area .related-hotel-content .items .item:hover .content h4 {
            color: var(--second-color);
        }

        #page .related-hotel-area .related-hotel-content .items .item .content .details .stars {
            display: flex;
            align-items: center;
            color: #FFC107;
            font-size: 13px;
            margin: 5px 0;
        }

        #page .related-hotel-area .related-hotel-content .items .item .content .details .room-num {
            font-size: 13px;
        }

        #page .related-hotel-area .related-hotel-content .items .item .img {
            width: 30%;
            aspect-ratio: 1;
        }

            #page .related-hotel-area .related-hotel-content .items .item .img img {
                width: 100%;
                border-radius: 7px;
                object-fit: cover;
                height: 100%;
            }

@media screen and (max-width: 500px) {

    #page section {
        width: 100% !important;
        padding: 0px 10px;
    }

    #page {
        width: 100% !important;
    }

        #page hr {
            width: 93%;
        }
    #hotelMobileRateAndScore{
        margin-top:10px;
    }
    /*=========#page setting=========*/
    #page {
        grid-template-columns: 1fr;
    }

        #page article {
            grid-column: 1 / 3;
            padding: 0px;
        }

        #page aside {
            grid-column: 1 / 3;
        }

        /*========= hotel Mobile Head =========*/

        #page .hotel-mobile-head {
            display: flex !important;
            flex-direction: column;
        }

            #page .hotel-mobile-head h3 {
                font-size: 15px !important;
                font-weight: 500;
            }

            #page .hotel-mobile-head .rate-and-score {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin: 0px 0px 5px 0px;
            }

            #page .hotel-mobile-head .title {
                margin: 5px 0px;
            }

            #page .hotel-mobile-head .tags {
                display: grid;
                grid-template-columns: auto;
                grid-template-rows: auto;
                overflow-x: auto;
                white-space: nowrap;
                height: fit-content;
                position: relative;
                width: 100%;
                gap: 10px;
                padding-bottom: 5px;
                margin: 5px 0px 0px 0px;
            }

                #page .hotel-mobile-head .tags span {
                    font-size: 11px !important;
                    font-weight: bold;
                }

            #page .hotel-mobile-head .share {
                display: flex;
                gap: 12px;
                margin: 5px 0px 0px 0px;
            }
    /*=========tour preview=========*/

    .hotel-preview-and-map {
        width: 100%;
    }

    .hotel-preview-container .hotel-preview-area {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: auto;
        justify-content: space-between;
        overflow-x: auto;
        white-space: nowrap;
        height: fit-content;
        position: relative;
        width: 100%;
        gap: 10px;
    }

        .hotel-preview-container .hotel-preview-area .hotel-preview-img {
            width: 300px;
            height: 200px;
        }

            .hotel-preview-container .hotel-preview-area .hotel-preview-img img {
                width: 300px;
                height: 200px;
            }

            .hotel-preview-container .hotel-preview-area .hotel-preview-img .img-cover {
                display: none;
            }

        .hotel-preview-container .hotel-preview-area :is(#tp1, #tp2, #tp3, #tp4, #tp5) {
            grid-row: 1/2;
            grid-column: auto;
        }

    .hotel-preview-container {
        width: 95%;
    }

        .hotel-preview-container .view-all-button {
            position: absolute;
            z-index: 7;
            bottom: 10px;
            right: 15px;
        }

    /*=====tour info=====*/

    #page #tourInfoSection {
        margin-bottom: 10px;
    }

    #page .article-item.tour-information-area {
        overflow: visible !important;
    }

    #page .tour-information {
        position: relative;
        padding-bottom: 30px;
    }

        #page .tour-information .view-all-options-btn {
            position: absolute;
            height: 30px;
            width: 150px;
            background-color: white;
            box-shadow: 0px 0px 1px var(--caption-color);
            border: none;
            border-radius: 25px;
            color: var(--first-color);
            bottom: -20px;
            right: calc(50% - 75px - 5px);
            font-family: inherit;
        }

        #page .tour-information .content .item-holder .item:nth-child(n+7) {
            opacity: 0;
            visibility: hidden;
            position: absolute;
        }

        #page .tour-information .content.open .item-holder .item:nth-child(n+7) {
            position: unset;
            visibility: visible;
            opacity: 1;
        }

    /*=====mobile map=====*/

    #page section.map#mobileMap {
        height: 300px;
        padding: 0px 10px;
    }

    .map .map-address {
        bottom: 25px;
        right: 20px;
        left: 20px;
    }

        .map .map-address .text address {
            font-size: 12px;
            animation: marquee 10s infinite linear;
            -webkit-line-clamp: unset;
            white-space: nowrap;
        }

    @keyframes marquee {
        0%,90%,100% {
            transform: translateX(0);
        }

        45% {
            transform: translateX(100%);
        }

        45.0001% {
            transform: translateX(-100%);
        }
    }

    /*============ distance of ============*/

    #page .distance-of {
        gap: 10px;
    }

    /*=====related hotels=====*/

    #page .related-hotel-area .related-hotel-content .items {
        grid-template-columns: 1fr;
    }
}
#txtSubscribe{
    text-align:right;
    padding-right:5px !important;
}
@media screen and (min-width:768px) and (max-width: 1400px) {
    .hotel-preview-and-map, #page {
        width: 95% !important;
    }
    #page {
        grid-template-columns: 30% 60%;
    }
}
.distance-of span{
    font-size:14px;
}
@media screen and (min-width:768px) and (max-width: 1000px) {
    .hotel-preview-container .hotel-preview-area {
        grid-template-columns: auto auto;
    }

    #page {
        grid-template-columns: 40% 60% !important;
    }
        #page .related-hotel-area .related-hotel-content .items {
            grid-template-columns: 1fr 1fr;
        }
}



/*-----------------------------popups------------------------------*/
body .popups {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background-color: hsla(0, 0%, 0%, 0.6);
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    opacity: 0;
    user-select: none;
}

    body .popups ::-webkit-scrollbar {
        width: 4px;
    }

    body .popups ::-webkit-scrollbar-track {
        background-color: hsl(var(--first-color-hsl-light));
        margin-top: 40px;
        margin-bottom: 40px;
        border-radius: 20px;
    }

    body .popups ::-webkit-scrollbar-thumb {
        background-color: var(--first-color);
        margin-top: 40px;
        margin-bottom: 40px;
        border-radius: 20px;
    }

    body .popups.active {
        opacity: 1;
        z-index: 9999;
    }

    body .popups .popup-container {
        width: 50%;
        background-color: white;
        padding: 10px;
        border-radius: 7px;
        max-height: 85%;
        overflow: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 5px;
        height: fit-content !important;
    }

        body .popups .popup-container .title {
            width: 100%;
            border-radius: 7px;
            background-color: var(--first-color);
            color: white;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            body .popups .popup-container .title .title-content {
                padding: 10px 15px;
            }

    body .popups .title-content .popup-title-data,
    body .popups .title-content .popup-title-data span {
        font-size: 12px !important;
    }

    body .popups .popup-container .content .popup-item {
        background-color: white;
        width: 100%;
        margin: auto;
    }


.hide-pc {
    display: none;
}

.show-pc {
    display: block;
}


.date-picker {
    text-align: center;
}

#myDropdown_Package {
    max-height: 500px;
    padding: 20px 0;
    overflow-y: scroll;
    margin: 0;
    border-radius: 0px 0px 7px 7px !important;
    background-color: #f2f2f2;
}
#myDropdown_Package {
    display: none;
}
.borderRadius {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.child-counters h3 {
    white-space: nowrap !important;
}

@media screen and (max-width: 500px) {
    #firstModalBooking, #SecendModalBooking {
        width: 100%;
        max-height: 0;
        position: fixed;
        bottom: 62px;
        left: 0px;
        right: 0px;
        transition: max-height 0.9s ease;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px;
        background-color: #fff;
        overflow: auto !important;
        line-height: 27px;
        transition: 0.5s !important;
        border-radius: 10px 10px 0px 0px;
        box-shadow: -2px 0px 5px rgb(182, 182, 182);
    }

    #onlineReserve {
        position: fixed;
        bottom: 60px;
        left: 0;
    }

    #openModal {
        background-color: var(--first-color);
        color: white;
        margin: 10px auto;
        position: relative;
        bottom: 0px;
        width: 90%;
        z-index: 55;
        padding: 12px 7px;
        border: none;
        border-radius: 7px;
        font-family: inherit;
    }

    #txtDate_PackageMobile_Filter, #txtDate_PackageMobile_FilterEnd {
        color: var(--first-color);
        padding: 2px 15px 0 !important;
        height: 50px;
        background-color: white;
        border: 1px solid var(--border-first-color) !important;
        border-radius: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0 auto;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        width: 95%;
    }

    .mobile-title {
        width: 100%;
        background-color: var(--second-color);
        color: white;
        padding: 10px 16px;
        border-radius: 7px;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        margin: 10px auto;
    }

    .next-btn-mobile {
        padding: 8px 0px;
        border-radius: 7px;
        background-color: var(--first-color);
        color: white;
        width: 100%;
        border: none;
        margin: 15px auto;
    }

    .contentModal {
        width: 95%;
    }

    .contentSecendModal {
        overflow: scroll;
        max-height: 780px;
        padding: 20px 0;
    }

    .background-btn {
        background: #ffff;
        height: 69px;
        width: 100%;
        position: fixed;
        display: flex !important;
        justify-content: center;
        align-items: center;
        bottom: 58px;
        border-radius: 7px 7px 0px 0px;
        z-index: 989;
        opacity: 1;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: translateY(0);
    }

    #back-to-top, #sticky_contact {
        bottom: 130px;
        z-index: 1000;
    }

    .adultBox {
        display: flex;
    }

    .overlayModal {
        position: fixed;
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        z-index: 1;
        background-color: rgba(0, 0, 0, 0.3);
    }
}

@media screen and (min-width:600px) and (max-width: 900px) {
    #page .book-item .book-select .book-select-title {
        flex-direction: column;
    }
}

@media screen and (min-width:1000px) and (max-width: 1600px) {
    .room-list h3 {
        flex-direction: row !important;
    }

        .room-list h3 span {
            white-space: nowrap;
        }

    .room-list .room-item div {
        flex-direction: row !important;
    }
}

@media screen and (min-width:600px) and (max-width: 1500px) {
    #page {
        width: 95% !important;
        grid-template-columns: 30% 70% !important;
    }

    .room-list .room-item div {
        flex-direction: column;
    }

    .search-box-counter {
        flex-direction: row !important;
    }

    .room-item span {
        white-space: nowrap;
    }
}
#page .book-item {
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
}

#formPackage {
    width: 90%;
    margin: 0 auto;
}

#page .book-item .title {
    display: flex;
    align-items: center;
    flex-direction:row;
    gap: 7px;
    width: 100%;
    color: var(--first-color);
}

.book-select-content .calendarsPickerRangeStart, .calendarsPickerRangeEnd {
    direction: rtl;
    font-size: 14px;
    color: var(--first-color);
    padding: 2px 15px 0 !important;
    height: 50px;
    background-color: white;
    border: 1px solid var(--border-first-color) !important;
    border-radius: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}
.search-box-counter-number {
    display: flex;
    justify-content: center;
}