:root {
    --white: #fff;
    --black: #000;
    --primary: #1e40af;
    --second: #ffddb3;
    --body: #140f08
}
.icon-solid {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}
ul {
    padding: 0;
}
h1,
h2,
h3,
h4,
h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25
}

a,
button,
i,
img {
    transition: all ease .4s;
    color: #232323;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeindown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@media screen and (max-width:996px) {
    .fadeindown {
        animation: none
    }
}

.line-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.line-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.line-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.home-banner {
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.vuta-container.custom {
    width: min(1650px, 100%)
}

.home-banner .box-title {
    padding-top: 20vh
}

.home-banner .box-title h2 {
    text-shadow: 1px 1px 1px #000;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 60px;
    margin-bottom: 60px
}

.home-banner .box-title h2 span {
    font-size: 48px;
    text-transform: capitalize;
}

.home-banner .search-form {
    max-width: 720px;
    margin: 0 auto;
    margin-bottom: 20px
}

.home-banner .search-form .vuta-input {
    height: 48px;
    border-radius: 9999px;
    background: #fff;
    color: #000;
}

.home-banner .search-form form {
    position: relative
}

.home-banner .search-form form button {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 9999px 9999px 0;
    width: 60px;
    height: 48px
}

.home-banner .search-form form button svg {
    height: 24px !important;
    width: 24px !important
}

.home-banner .propose {
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 20px
}

.home-banner .propose ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.home-banner .propose ul li {
    width: 49%
}

.home-banner .propose ul li a {
    display: flex;
    color: #000;
    margin-bottom: 10px;
    height: 40px;
    align-items: center;
    padding-left: 45px;
    background: var(--primary);
    border-radius: 99999px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

@media (max-width:996px) {
    .home-banner .propose ul li a {
        padding-left: 35px;
    }
}

.home-banner .propose ul li a span {
    margin-bottom: 3px;
}

.home-banner .propose ul li a:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.home-banner .list-tour {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

.home-banner .list-tour:hover .box-btn a {
    opacity: 1 !important;
    margin-top: 30px !important
}

.home-banner .list-tour:hover .box-img img {
    transform: scale(1.1)
}

.home-banner .list-tour>a {
    position: absolute;
    inset: 0;
    z-index: 2
}

.home-banner .list-tour .box-img {
    aspect-ratio: 4/6;
    overflow: hidden
}

.home-banner .list-tour .box-img img {
    height: 100%;
    transition: all ease .5s
}

.home-banner .list-tour .box-content {
    position: absolute;
    left: 50%;
    text-align: center;
    top: 50%;
    z-index: 3;
    width: 100%;
    transform: translateX(-50%) translateY(-50%)
}

.home-banner .list-tour .box-content h4 {
    text-shadow: 1px 1px 1px #000;
    color: #fff
}

.home-banner .list-tour .box-content .ratting i {
    color: #ffc000
}

.home-banner .list-tour .box-content .box-btn a {
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    padding: 5px 15px;
    color: #ddd;
    margin-top: 80px;
    opacity: 0
}

.home-banner .list-tour:hover .box-content .box-btn a {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff !important
}

.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    padding: 10px 0;
    background-image: linear-gradient(180deg, #333 0, rgba(0, 0, 0, 0) 100%)
}

.header .vuta-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header .logo img {
    width: 120px
}

@media screen and (max-width:1200px) {
    .header .header-menu {
        display: none
    }
}

.header .header-menu .accordion {
    display: flex;
    gap: 40px
}

.header .header-menu .accordion>li .link>a {
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    display: flex;
    font-size: 15px;
    align-items: center;
    height: 50px
}

.header .header-menu .accordion>li.active .link>a,
.header .header-menu .accordion>li:hover .link>a {
    color: #fff
}

.header .header-menu .accordion .dropdown {
    position: relative
}

.header .header-menu .accordion .dropdown:hover .submenu {
    top: 100%;
    visibility: visible;
    opacity: 1
}

.header .header-menu .accordion .dropdown .link>a {
    position: relative;
    padding-right: 10px
}

.header .header-menu .accordion .dropdown .link>a::before {
    position: absolute;
    content: "\f078";
    font-family: fontawesome;
    right: -5px;
    font-size: 12px;
    top: 14px
}

.header .header-menu .accordion .dropdown .submenu {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all ease .4s;
    visibility: hidden;
    top: calc(100% + 10px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1)
}

.header .header-menu .accordion .dropdown .submenu li:last-child a {
    border-bottom: 0
}

.header .header-menu .accordion .dropdown .submenu li a {
    color: #141414;
    display: flex;
    padding: 10px 15px;
    border-bottom: 1px solid var(--primary);
    display: flex;
    white-space: nowrap
}

.header .header-menu .accordion .dropdown .submenu li a:hover {
    background: var(--primary);
    color: #fff
}

.header .header-right ul {
    /*display: flex;*/
    gap: 40px
}

.header .header-right ul li {
    position: relative
}

.header .header-right ul li a {
    font-size: 15px
}

.header .mobile-btn {
    display: none
}

@media screen and (max-width:1200px) {
    .header .mobile-btn {
        display: block
    }
}

.header .mobile-btn #mobile-btn span {
    background: var(--primary);
    margin-bottom: 5px
}

.header .mobile-btn #mobile-btn span:last-child {
    margin-bottom: 0
}

.language .dropdown button {
    font-size: 14px;
    border: 1px solid var(--primary);
    transition: all .3s;
    color: #fff;
}

.language .dropdown .dropdown-menu {
    padding-left: 12px;
    padding-right: 12px;
    min-width: 120px;
}

.language .dropdown .dropdown-menu li a {
    font-size: 14px;
    transition: color .2s;
}

.language .dropdown img {
    width: 16px;
    height: 12px !important;
}

.experience-item .box-img {
    aspect-ratio: 1/1;
}

.experience-item .box-img img {
    height: 100%;
    object-fit: cover;
}

.right-sidebar-bg .check-in {
    padding: 0 25px;
    margin-bottom: 10px;
}

.right-sidebar-bg .check-in .gr-input {
    margin-bottom: 10px;
}

.right-sidebar-bg .check-in .gr-input .vuta-input {
    height: 45px;
}

.right-sidebar-bg .check-in .gr-input .quantity-wrapper {
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    font-family: sans-serif;
}

.thread a {
    background: #000;
    border-radius: 6px;
}

.tiktok a {
    background: #000;
    border-radius: 6px;
}

.tiktok a svg g path,
.thread a svg g path {
    fill: #fff !important;
}

.quantity-input {
    height: 36px;
    text-align: center;
    border: none;
    font-size: 16px;
    background: 0 0;
    outline: 0;
}

.quantity-btn {
    width: 30px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    border: none;
    transition: all ease .4s;
    font-size: 20px;
    cursor: pointer;
    transition: background .2s;
}

.right-sidebar-bg .check-in label {
    margin-bottom: 5px;
    font-weight: 600;
}

#main {
    padding-top: 0px;
}

.product_details_main {
    font-style: normal;
}

.product_details_main .tour-feature-item .icon {
    flex-shrink: 0;
}

.tour-feature-item img {
    height: 24px;
}

.product_details_main .product_details_container h2 {
    font-size: 24px;
    margin: 10px 0 15px;
}

.product-list-w-grid .info-gr span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product-list-w-grid .desc {
    text-align: justify;
}

.elementor-shape-bottom {
    bottom: -1px;
    animation: wave 9s cubic-bezier(.36, .45, .63, .53) infinite;
    width: 200vw;
    direction: ltr;
    left: 0;
    z-index: 999;
    line-height: 0;
    overflow: hidden;
    position: fixed;
}

.elementor-shape svg {
    display: block;
    left: 50%;
    height: 200px;
    position: relative;
    transform: translateX(-50%);
    width: calc(100% + 1.3px);
}

.elementor-shape .ux-shape-fill {
    fill: #ffc;
    transform: rotateY(0deg);
    transform-origin: center;
}

@keyframes wave {
    0% {
        margin-left: 0
    }
    50% {
        margin-left: -100vw
    }
    100% {
        margin-left: 0
    }
}

.home-banner {
    background-repeat: no-repeat;
}

.home-banner .wraper {
    height: 100%;
}

.home-banner .list-tour {
    margin-bottom: 20px;
}

.list-kind-room .room-item {
    display: flex;
    border: 1px solid #dedede;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.list-kind-room .room-item .box-img {
    aspect-ratio: 1/1;
    flex-shrink: 0;
    max-width: 300px;
    height: 100%;
    width: 100%;
}

.product_details_main .tour-feature {
    margin-left: 0;
}

.list-kind-room .room-item .box-img img {
    height: 100%;
    object-fit: cover;
}

.list-kind-room .room-item .box-content {
    width: calc(100% - 300px);
    padding: 20px;
    max-height: 300px;
    overflow-y: scroll;
}

.list-kind-room .room-item .box-content .left {
    width: 70%;
}

.list-kind-room .room-item .box-content .right {
    width: 30%;
    text-align: right;
}

.list-kind-room .room-item .box-content .right .old-price {
    color: #888;
    text-decoration: line-through;
}

.list-kind-room .room-item .box-content .right .new-price {
    font-weight: 600;
    color: #ff0000;
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.quantity-input {
    height: 36px;
    text-align: center;
    border: none;
    font-size: 16px;
    background: 0 0;
    outline: 0;
    width: calc(100%);
}

.list-kind-room .room-item .box-content h4 a {
    font-size: 22px;
    color: var(--primary);
    text-align: left;
}

.list-kind-room .room-item .box-content ul {
    padding-left: 20px;
}

.list-kind-room .room-item .box-content ul li {
    list-style: none;
    position: relative;
    font-size: 15px;
    margin-left: 0;
    text-align: left;
}

.list-kind-room .room-item .box-content ul li::before {
    position: absolute;
    content: "\f00c";
    color: var(--primary);
    font-size: 14px;
    left: -20px;
    font-family: "fontawesome";
}

.list-kind-room .room-item .box-content ul li:last-child {
    margin-bottom: 0;
}

.list-kind-room .room-item .box-content .quantity-wrapper {
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.list-kind-room .room-item .box-content .select-wrapper .number-control {
    justify-content: right;
}

@media (max-width:1200px) {
    .header .mobile-btn {
        min-width: 100px;
    }
    #menu-mobile .mobile-logo img {
        width: 100px;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 20px;
    }
    #menu-mobile .mobile-logo {
        text-align: center;
    }
    .header.fixed-top {
        background: #fff;
        transition: all ease 0.4s;
        padding: 0;
    }
    .header.fixed-top .language .dropdown button {
        font-size: 14px;
        border: 1px solid var(--primary);
        transition: all .3s;
        color: var(--primary);
    }
}

.mobile {
    display: none;
}

.pc {
    display: block;
}
.box-img a {
    display: unset;
}
.home-banner .wraper {
    overflow-y: scroll;
}
.list-kind-room .room-item .box-img {
    position: relative;
}
.list-kind-room .room-item .box-img > a {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 1;
}
.list-kind-room .room-item .box-img a.btn-danger {
    position: absolute;
    inset: unset;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    z-index: 2;
    
}
.product_details_container .title {
    padding: 20px;
    font-size: 24px;
    font-weight: 700;
    color: red;
    background: var(--second);
    margin-bottom: 20px;
}
.product_details_container .right-sidebar-bg .box-btn {
    padding: 0 25px;
    padding-bottom: 10px;
}
.product_details_container .right-sidebar-bg .box-btn button {
    width: 100%;
}
.product_details_container .right-sidebar-bg #list-room-choosen li {
    margin-left: 0;
    font-weight: 600;
}
.product_details_container .right-sidebar-bg #list-room-choosen {
    padding-left: 25px;
}
.product_details_container .title .price {
    margin-bottom: 0;
}
.label-choosen {
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #828282;
}
@media screen and (max-width: 996px) {
    .home-banner .mobile li {
        text-align: center;
        margin-bottom: 10px;
    }
    .home-banner .mobile li a {
        background: var(--primary);
        color: #fff;
        display: inline-flex;
        font-size: 14px;
        justify-content: center;
        align-items: center;
        height: 35px;
        gap: 5px;
        padding: 15px 20px;
        border-radius: 9999px;
    }
    .home-banner .mobile li i {
        text-shadow: 1px 1px 1px #000
    }
    .home-banner .mobile li a svg path {
        fill: #fff;
    }
    .home-banner .box-title h2 span {
        font-size: 30px;
    }
    .home-banner .box-title {
        padding-top: 15vh;
    }
    .mobile {
        display: block;
    }
    .pc {
        display: none;
    }
    .home-banner .box-title h2 {
        font-size: 32px;
    }
    .list-kind-room .room-item {
        flex-direction: column;
    }
    .list-kind-room .room-item .box-img {
        max-width: 100% !important;
        aspect-ratio: 16/9 !important;
    }
    .list-kind-room .room-item .box-content {
        width: calc(100%);
        max-height: unset;
    }
    .list-kind-room .room-item .box-content h4 a {
        text-align: center;
    }
    .list-kind-room .room-item .box-content .d-flex {
        flex-direction: column;
        gap: 10px;
    }
    .list-kind-room .room-item .box-content .d-flex .right {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }
    .list-kind-room .room-item .box-content .left {
        width: 100%;
    }
    .list-kind-room .room-item .box-content .d-flex .price {
        text-align: left;
    }
    .list-kind-room .room-item .box-content .right .new-price {
        margin-bottom: 0;
    }
    .product_details_main .product_details_container h2 {
        font-size: 20px;
    }
    .home-banner {
        position: relative;
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    }
    .home-banner .list-tour .box-content .box-btn a {
        margin-top: 40px;
        opacity: 1;
        font-size: 14px;
        background: var(--primary);
        border: 1px solid var(--primary);
        color: #fff !important;
    }
    .header .logo img {
        width: 70px;
    }
    .elementor-shape-bottom {
        position: fixed;
    }
}

.product_details_main .guest-wrapper .select-wrapper .number-control {
    display: flex;
    gap: 10px
}

.product_details_main .guest-wrapper .select-wrapper input {
    max-width: 30px;
    text-align: center
}

.product_details_main .guest-wrapper .select-wrapper span {
    min-width: 34px;
    height: 34px;
    background: #fff;
    border: 1px solid #727272;
    box-sizing: border-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #727272;
    transition: all .3s;
    cursor: pointer
}

.product_details_main .guest-wrapper .select-wrapper span:hover {
    background: var(--main-color);
    color: var(--white)
}

.product_details_main .guest-wrapper .select-wrapper span:active {
    transform: scale(.9)
}

.product_details_main .guest-wrapper .select-wrapper span.disabled {
    opacity: .7;
    pointer-events: none
}

.price.has-discount .origin span {
    font-size: 16px;
    font-weight: normal;
    text-decoration-line: line-through;
    color: #727272;
}

.typing-bubble {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    padding: 10px 15px;
    max-width: fit-content;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #999;
    border-radius: 50%;
    animation: blink 1.4s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% {
        opacity: 0.2;
        transform: translateY(0px);
    }
    20% {
        opacity: 1;
        transform: translateY(-3px);
    }
    40% {
        opacity: 0.2;
        transform: translateY(0px);
    }
}

.text {
    font-size: 14px;
    color: #666;
    margin-left: 10px;
}

.review-box {
    margin-top: 15px;
    padding: 30px;
    border: 1px solid #eaeef3;
    border-radius: 5px;
    color: #1a2b48;
    font-weight: 500;
}

.review-box .review-box-score {
    padding: 30px 0 !important;
    text-align: center;
    border-right: 1px solid #d7dce3;
    padding-right: 20px;
}

.review-box .review-box-score .review-score {
    line-height: 50px;
    font-size: 72px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #5191fa;
}

.review-score-base {
    font-size: 14px;
}

.note_review {
    font-style: italic;
    margin-bottom: 0;
}

.review-sumary .item {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.review-box .item .label {
    position: relative;
    display: block;
    padding-left: 0;
    color: #1a2b48;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    width: 30%;
    margin-top: 0 !important;
    margin-right: 3%;
}

.review-box .item .progress {
    position: relative;
    height: 8px;
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
    background: #eee;
    margin-bottom: 0;
    overflow: inherit;
}

.review-title {
    margin-bottom: 10px;
}

.review-box .item .progress .percent {
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    background: #3cb22b;
    border-radius: 10px;
}

.review-box .review-sumary .item .number {
    width: 7%;
    font-size: 14px;
    margin-left: 3%;
}

.review-box .vuta-row {
    align-items: center;
}

.review-box {
    margin-bottom: 30px;
}

.review-list .review-item {
    padding-top: 10px;
    padding-bottom: 12px;
    border-top: 1px solid #d9d9d9;
    font-size: 14px;
    display: flex;
    gap: 20px;
}

.review-list .review-item .avatar {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.review-list .review-item .avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.review-list .review-item .list li {
    list-style: none;
    margin-left: 0;
}

.review-list .review-item .list li svg {
    width: 20px !important;
    height: 20px !important;
}

.review-list .review-item .list li i {
    margin-right: 5px;
}

.home-footer {
    text-align: center;
    padding: 50px 0;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}

.home-footer h2 {
    margin-bottom: 20px;
}

.home-footer i {
    text-shadow: 1px 1px 1px #000;
}

.home-footer li {
    margin-bottom: 10px;
}

.home-footer i svg path {
    fill: #fff;
}

.footer-fixed {
    display: none;
}

.widget-box .form-price-preview .guest-wrapper {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.right-sidebar-bg .check-in .gr-input {
    margin-bottom: 5px;
}

.widget-box {
    padding: 0 0 10px 0;
}

.widget-box .form-price-preview .total {
    margin-top: 10px;
}

/* .product_details_container {
    overflow: hidden;
} */
.product_details_main .right-sidebar-bg {
    top: 130px;
}
#button-contact-vr {
    position: fixed;
    bottom: 140px;
    right: 0;
    right: -16px;
    transform: scale(0.6);
}
.back-to-top {
    right: 10px;
}
@media (max-width:1400px) {
    .vuta-container {
        width: 90%;
    }
}
@media (max-width:996px) {
    .review-box .review-box-score {
        border-right: 0;
    }
    .widget-box .widget-heading {
        margin-bottom: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }
    .booking-bottom {
        position: fixed;
        left: 0;
        bottom: 73px;
        width: 100%;
        background: var(--white);
        padding: 10px 15px;
        border-top: 1px solid var(--light-grey-color, #eaeef3);
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 9;
        box-shadow: 0 4px 10px 0 #000;
    }
    .review-box {
        margin-top: 15px;
        padding: 15px;
        border: 1px solid #eaeef3;
        border-radius: 5px;
        color: #1a2b48;
        font-weight: 500;
    }
    .review-box .item .label {
        width: 40%;
    }
    .typing-bubble {
        width: 100%;
        display: flex;
        justify-content: center;
        max-width: 100%;
        margin-bottom: 10px;
    }
    #footer .box-img {
        text-align: center;
    }
    .product_details_service .service-header .meta {
        display: block;
    }
    .modal-dialog .check-in {
        padding-left: 25px;
        padding-right: 25px;
    }
        #button-contact-vr {
            right: 0;
        }
    .modal-dialog .check-in label {
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 14px;
    }
    .overlay-fixed .btn-close-wrapper {
        background: #fff;
        padding: 0;
    }
    .overlay-fixed .btn-close-wrapper .close-btn {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        right: 15px;
        float: unset !important;
        top: 15px;
        background: rgba(0, 0, 0, .5);
        color: #fff;
        padding: 0 !important;
    }
    .home-footer {
        padding: 50px 0 75px;
    }
    #button-contact-vr {
        display: none;
    }
    .back-to-top {
        /* display: none !important; */
    }
    .footer-fixed {
        display: block;
    }
    #footer {
        padding-bottom: 75px;
    }
    .home-fixed ul li {
        width: 30% !important;
    }
    .home-fixed ul li:first-child {
        display: none;
    }
    .modal-dialog .wrapper {
        overflow-y: scroll;
        max-height:550px;
        padding-top: 10px;
    }
    .contact-form .box-btn {
        padding-left: 25px;
        padding-right: 25px;
    }
    .modal-dialog .contact-form-2 {
        border-radius: 0;
        border: 0;
        padding-top: 10px;
        padding-bottom: 0;
        box-shadow: none;
    }
    .modal-dialog .vuta-input {
        font-size: 14px;
    }
}

.slick-track {
    margin-left: 0;
}

.overlay-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 9999;
}

@media screen and (max-width: 575px) {
    .booking-modal .modal-dialog {
        max-width: 100%;
        margin: 0;
        padding: 10px;
    }
}

.contact .contact-box {
    margin-bottom: 40px;
}

.contact .contact-box a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 24px;
}

.contact .contact-box svg {
    height: 40px !important;
    width: 40px !important;
}

.contact .form-contact {
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact .form-contact textarea {
    min-height: 100px;
}

.contact .form-contact .form-group {
    margin-bottom: 15px;
}

.contact .form-contact .form-group label {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
}

.contact .form-contact .primary-btn {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .25rem;
    height: 40px;
    transition: all ease 0.4s;
    color: #fff;
    background: var(--primary);
    width: 100%;
}

.contact .form-contact .primary-btn:hover {
    filter: brightness(1.1);
}

.contact-form-2 {
    padding: 30px 25px;
    border: 1px solid #dedede;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    border-radius: 8px;
}

.widget-box {
    margin-bottom: 20px;
}

.contact-form .gr-input {
    margin-bottom: 15px;
}

.contact-form .gr-input textarea {
    min-height: 100px;
}

.contact-form .box-btn {
    display: flex;
    gap: 10px;
}

.contact-form .box-btn button,
.contact-form .box-btn a {
    display: flex;
    width: calc(50% - 5px);
    align-items: center;
    height: 38px;
    justify-content: center;
    border-radius: .25rem;
}

.contact-form .box-btn button {
    background: var(--primary);
    transition: all ease 0.4s;
    color: #fff;
}

.contact-form .box-btn button:hover,
.contact-form .box-btn a:hover {
    filter: brightness(1.1);
}

.contact-form .box-btn a {
    background: var(--second);
}

.widget-box .widget-heading .price .new span {
    font-size: 30px;
    color: var(--main-color);
}

.footer-fixed {
    position: fixed;
    z-index: 999;
    width: 100%;
    bottom: 0;
    left: 0;
    box-shadow: 0 4px 5px 0 #000;
    padding: 5px;
    background: #fff;
}

.footer-fixed ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-fixed ul li {
    width: calc(25% - 10px);
}

.footer-fixed ul li img {
    display: block;
    width: 36px;
    margin: 0 auto;
    margin-bottom: 5px;
    height: 36px;
}

.footer-fixed ul li a {
    text-align: center;
    font-size: 14px;
}

.booking-bottom .price {
    font-size: 14px;
    font-weight: 500;
}

.booking-bottom .price span {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

.feedback .feedback-slider .item {
    padding: 0 25px;
}

.feedback .feedback-slider .item .feedback-item {
    text-align: center;
}

.feedback .feedback-slider .item .feedback-item .box-img {
    height: 60px;
    width: 60px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.feedback {
    padding-top: 20px;
}

.feedback .box-title h2 {
    margin-bottom: 60px;
    text-align: center;
}

.feedback .feedback-slider .item .feedback-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feedback .feedback-slider .item .feedback-item .ratting {
    margin-bottom: 10px;
}

.feedback .feedback-slider .item .feedback-item .box-img img {
    object-fit: cover;
}


.home-banner {
    background: unset !important;
    height: auto;
}

.home-banner .wraper {
    overflow: unset;
}

.home-body {
    
    background-image: url(https://ninhbinhbest.com/storage/general/diem-den-bai-dinh.jpg);
    background-size: cover;
  background-position: center;
  height: 100%;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.list-kind-room .room-item .box-content ul li p {
    font-size: 15px !important;
}
@media screen and (max-width: 996px) {
  .list-kind-room .room-item .box-content h4 a {
    text-align: center;
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .product-list.list-style .product-item .box-content .footer {
    flex: unset;
    background: rgba(0, 0, 0, .03);
    border-radius: .5rem;
    padding: 1rem 1rem .5rem;
    padding-top: .5rem;
    width: 100%;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}


.gallery-loading{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.7);
    z-index:10;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.travel-grid .item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

/* Ảnh */
.travel-grid .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* Hover zoom */
.travel-grid .item:hover img {
    transform: scale(1.05);
}

/* Overlay text */
.travel-grid .item h4 {
    position: absolute;
    left: 16px;
    bottom: 16px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    z-index: 2;
}

/* overlay gradient */
.travel-grid .item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* ===== CUSTOM SIZE ===== */
.travel-grid .item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.travel-grid .item-tall {
    grid-row: span 2;
}
.ticket-search {
    position: relative;
    z-index: 2;
}
.ticket-search form {
    background: #fff;
    box-shadow: 0 0 28px 6px rgba(0, 0, 0, .2);
    border-radius: 16px;
    width: 888px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px !important;
    margin-top: -73px;
}
.ticket-search form .box-title {
    border-bottom: 1px solid #ddd;
    color: #444;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-align: left;
}
.ticket-search form .box-input {
    display: flex;
    align-items: center;
    gap: 5px;
}
.ticket-search form .box-input input {
    border: 0;
    border-radius: 0;
    padding: 0;
    height: 24px;
}
.ticket-search form .box-input input:focus {
    outline: none !important;
    border: 0;
    box-shadow: unset !important;
}
.ticket-search form .box-input label {
    font-size: 14px;
    line-height: 16px;
}

.ticket-search form .primary-btn {
    flex-shrink: 0;
    background: var(--primary);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #000;
    padding-left: 20px;
    padding-right: 20px;
}
.ticket-search form .primary-btn:hover {
    background: var(--second);
}
.ticket-intro  {
    padding: 60px 0;
}
.ticket-intro .intro-item {
    text-align: center;
}
.ticket-intro .intro-item svg path {
    fill: var(--primary) !important;
}

.ticket-intro .intro-item p {
    font-size: 20px;
    font-weight: 700;
    padding-top: 15px;
}

.ticket-filter .list-filter ul li:nth-child(n+6):not(.show-more) {
    display: none;
}

/* khi mở ra */
.ticket-filter .list-filter.open ul li {
    display: inline-block !important;
}

/* giữ nút ... luôn hiện */
.ticket-filter .list-filter ul li.show-more {
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
}
.ticket-filter .list-filter ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.ticket-filter .list-filter ul li a {
    display: flex;
    height: 32px;
    border: 1px solid var(--primary);
    background: #fff;
    border-radius: 0.5rem;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
}
.ticket-filter .list-filter ul li.active a,
.ticket-filter .list-filter ul li a:hover {
    background: var(--primary);
}

.ticket {
    padding: 60px 0;
}
.ticket-travel .box-title,
.ticket .box-title {
    text-align: center;
    margin-bottom: 30px;
}
.ticket-travel .box-title h2,
.ticket .box-title h2 {
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}
.ticket-travel .box-title p,
.ticket .box-title p {
    color: #888;
    font-style: italic;
}
.ticket .ticket-item .box-img{
    aspect-ratio: 3/2;
    position: relative;
    z-index: 1;
}
.ticket .ticket-item .box-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.ticket .ticket-item {
    position: relative;
    border: 1px solid #dedede;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all ease 0.1s;
}
.ticket .ticket-item:hover {
    box-shadow: 0 0 2px 2px #e5e5e7;
}

.ticket .ticket-item > a{
    position: absolute;
    inset: 0;
    z-index: 4;
    content: "";
}

.ticket .ticket-item .box-img .label {
    position: absolute;
    z-index: 2;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    padding: 3px 5px;
    border-radius: 5px;
    top: 5px;
    left: 5px;
}
.ticket .ticket-item .box-img .label span {
    font-size: 16px;
}
.ticket .ticket-item .box-content {

    padding: 15px;
}
.ticket .ticket-item .box-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
    min-height: 39px;
    transition: all ease 0.4s;
}
.ticket .ticket-item .box-content .d-flex {
    gap: 15px;
    color: #7e7e7e;
    font-size: 14px;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgb(222, 222, 222);
}
.ticket .ticket-item .box-content .d-flex svg {
    height: 18px !important;
    width: 18px !important;
}
.ticket .ticket-item .box-content .d-flex svg path {
    fill: #7e7e7e !important;
}
.ticket .ticket-item .box-content .box-btn {
    display: flex;
    justify-content: center;
}
.ticket .ticket-item .box-content .box-btn a {
    border: 2px solid var(--primary);
    color: red;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    height: 40px;
    padding-left: 15px;
    display: flex;
    padding-right: 15px;
}
.ticket .ticket-item:hover h4 {
    color: var(--primary);
} 
.ticket .ticket-item:hover .box-btn a {
    background: var(--primary);
    color: #fff;
}
.travel-grid .item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.travel-grid .item .box-img {
    height: 100%;
}
.ticket-banner .box-img img {
    min-height: 250px;
}

.detail-wrap {
    display: flex;
    gap: 30px;
}

/* TOC */
.desc .toc {
    width: 260px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.desc .toc ul {
    list-style: none;
    padding: 0;
}

.desc .toc li {
    margin-bottom: 10px;
}

.desc .toc a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.desc .toc a.active {
    font-weight: bold;
    color: #007bff;
}

/* level */
.desc .toc .lv3 {
    padding-left: 10px;
}

.desc .toc .lv4 {
    padding-left: 20px;
}

/* CONTENT */
.desc .content {
    flex: 1;
    position: relative;
}

/* giới hạn chiều cao */
.desc .content-inner {
    max-height: 400px;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
}

/* fade dưới */
.desc .content-inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(to top, #fff, transparent);
}

/* khi mở */
.desc .content.open .content-inner {
    max-height: none;
}

.desc .content.open .content-inner::after {
    display: none;
}

/* button */
.desc .read-more {
    text-align: center;
    margin-top: 10px;
}
.review-wrap {
    max-width: 900px;
}

/* SUMMARY */
.review-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #cfe0d3;
    padding: 20px;
    border-radius: 15px;
}

.score {
    background: #2f6f91;
    color: #fff;
    font-size: 24px;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
}

.toggle-detail {
    text-align: center;
    margin: 15px 0;
    cursor: pointer;
    color: #007bff;
}

/* DETAIL */
.review-detail {
    display: none;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
}

.review-detail.active {
    display: flex;
}

.review-detail .row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.bar {
    flex: 1;
    height: 4px;
    background: #eee;
    position: relative;
}

.bar i {
    display: block;
    height: 100%;
    background: #ff6600;
}

/* right */
.right .line {
    flex: 1;
    height: 1px;
    background: #ccc;
}

/* REVIEW LIST */
.review-list .item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.review-list .head {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.review-list .head > div p{
    color: #858585;
    font-size: 14px;
}
.review-list .item {
    display: none;
}
.review-summary .total {
    font-size: 20px;
    font-weight: 700;
}
.load-more {
    text-align: center;
    margin-top: 15px;
}
.point {
    background: #2f6f91;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: bold;
}
@media screen and (max-width: 996px) {
    .feedback .slick-arrow.slick-prev {
        left: 10px;
    }
    .feedback .slick-arrow.slick-next {
        right: 10px;
    }
    .ticket-search form {
        width: calc(100% - 20px);
    }
    .ticket-intro .intro-item p {
        font-size: 16px;
    }
    .ticket-intro .intro-item svg {
        height: 40px !important;
        width: 40px !important;
    }
    .ticket-intro [class^="vuta-col-"] {
        margin-bottom: 10px;
    }
    .ticket-intro {
        padding: 30px 0 20px;
    } 
    .ticket-filter .list-filter ul li {
        width: calc(100%/2 - 8px);
    }
    .ticket {
        padding: 30px 0;
    }
    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .travel-grid .item-lg {
        grid-column: span 1;
        grid-row: span 1;
    }

    .travel-grid .item-tall {
        grid-row: span 1;
    }
    .ticket-filter .list-filter ul li a {
        font-size: 14px;
    }
}
#lightgallery-ticket .slick-prev {
    left: 10px;
}
#lightgallery-ticket .slick-next {
    right: 10px;
}
#lightgallery-ticket a img {
    width: 100%;
}
#lightgallery-ticket {
    position: relative;
}
.gallery-wrap .gallery-count {
    background: rgba(0, 0, 0, .3);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    color: #fff;
    position: absolute;
    bottom: 10px;
    right: 10px;
    content: "";
    gap: 5px;
    z-index: 1;
    font-size: 16px;
}
.gallery-wrap .gallery-count .material-symbols-outlined {
    font-size: 20px;
}
.gallery-wrap {
    position: relative;
}
.ticket-detail  {
    padding-top: 140px;
    background-color: #fafafa;
    padding-bottom: 20px;
}
.ticket-detail .info-ticket {
    background: #fff;
    box-shadow: 0 0 14px rgba(0, 0, 0, .16);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px
}
.ticket-detail .info-ticket h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.ticket-detail .address {
    margin-bottom: 10px;
    color: #828282;
    display: flex;
    font-size: 14px;
    align-items: center;
}
.ticket-detail .address span {
    font-size: 16px;
}
.ticket-detail .review-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.ticket-detail .review-info .score {
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    background: #297aa8;
}

.ticket-detail .review-info .sell {
    padding-left: 20px;
    border-left: 1px solid #828282;
    color: #828282;
    font-size: 14px;
}
.ticket-detail  .price {
    text-align: center;
    font-size: 14px;
    color: #828282;
    margin-bottom: 10px;
}
.ticket-detail  .price span {
    font-weight: 700;
    color: red;
    font-size: 24px;
}
.ticket-detail .box-btn .primary-btn {
    background: var(--primary);
    color: #fff;
    border-radius: 0.5rem;
    height: 40px;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    transition: all ease 0.4s;
}
.ticket-detail .box-btn .primary-btn:hover {
    background: var(--second);
    color: #000;
}
.ticket-detail .box-info {
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px 0;
    display: flex;
    flex-wrap: wrap;
}
.ticket-detail .box-info ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.ticket-detail .box-info ul li {
    width: calc(50%);
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.ticket-detail .box-info ul li span {
    color: var(--primary);
}
.highlight-bgr  {
    padding: 60px 0;
}
.highlight-bgr .box-bgr {
    background: var(--second);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 50px;
}
.highlight-bgr .box-bgr h2 {
    color: var(--primary);
    text-align: center;
}
.highlight-bgr .box-bgr ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.highlight-bgr .box-bgr ul li span {
    color: var(--primary);
}
.ticket-price .wrapper {
    max-width: 888px;
    margin: 0 auto;
}
.ticket-price .wrapper h2{
   margin-bottom: 15px;
}
.ticket-price .wrapper .list-item .price-item{
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .06);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
}
.ticket-price .wrapper .list-item .price-item .d-flex {
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}
.ticket-price .wrapper .list-item .price-item h4 {
    font-size: 16px;
}
.ticket-price .wrapper .list-item .price-item .right .top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.ticket-price .wrapper .list-item .price-item .right .top span {
    color: red;
    font-weight: 700;
}
.ticket-price .wrapper .list-item .price-item .right .top button {
    padding:5px 30px;
    border-radius: 0.5rem;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ticket-price .wrapper .list-item .price-item .right {
    text-align: right;
}
.ticket-price .wrapper .list-item .price-item .right .bottom {
    font-size: 14px;
    color: #828282;
}

.ticket-price {
    padding-bottom: 60px;
}
.rules-ticket .wrapper {
    max-width: 888px;
    margin: 0 auto;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .06);
    border-radius: 24px;
    padding: 24px;
}
.rules-ticket .wrapper h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.rules-ticket .wrapper li {
    display: flex;
    margin-bottom: 10px;
    gap: 5px;
}
.rules-ticket .wrapper .ul-check-orange li span{
    color: var(--primary);
}   
.rules-ticket .wrapper .ul-check-gray li span{
    color: #cdcdcd; 
}   
.rules-ticket .wrapper [class^="vuta-col-"]:last-child {
    padding-left: 15px;
    border-left: 1px solid #e5e5e7;
}
.rules-ticket .wrapper .list-dot {
    padding-left: 15px;
}
.rules-ticket .wrapper .list-dot li {
    list-style: disc;
    display:inline flow-root list-item;
}
.rules-ticket {
    padding-bottom: 60px;
}
.faqs .box-title {
    margin-bottom: 20px;
}
.faqs .faq {
    padding-right: 40px;
}
.faqs .faq ul li a {
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faqs .faq ul li .hidden-content {
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.faqs .faq ul li.active {
    background-color: #f1f1f1;
    padding: 15px 15px 3px 15px;
    padding-top: 0;
}
.faqs .faq ul li.active a {
    color: var(--primary);
}
.faqs .support {
    border: 2px solid var(--primary);
    padding: 13px 13px 20px 15px;
    border-radius: 5px;
}
.faqs .support .title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.faqs .support .title img {
    height: 85px;
    width: 85px;
}
.faqs .support .title .avatar {
    flex-shrink: 0;
}
.faqs .support .title h4 {
    width: max-content;
    font-size: 16px;
    border-bottom: 1px solid #b1c3eb;
    margin-top: 20px;
    padding-bottom: 15px;
    font-weight: 700;
}
.faqs .support .title {
    margin-bottom: 15px;
}
.faqs .support p {
    font-weight: 600;
    margin-bottom: 10px;
}
.faqs .support .support-contact{
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.faqs .support .support-contact .app-chat img {
    height: 32px;
    width: 32px;
}
.faqs .support .support-contact .hotline .hot {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 5px;
}
.faqs .support .support-contact .hotline .hot a {
    color: #d40a0a;
    display: flex;
    align-items: center;
}
.faqs .support .support-contact .hotline .nor {
    font-weight: 600;
}

.faqs .support .support-contact .app-chat {
    display: flex;
    align-items: center;
    gap: 3px;
}
.faqs .support .support-contact .app-chat a {
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 5px rgb(0, 0, 0, 0.1);
}
.faqs .support  .primary-btn {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    transition: all ease 0.4s;
    width: 100%;
}
.faqs .support  .primary-btn:hover {
    background: var(--second);
    color: #000;
}
.faqs {
    padding-bottom: 60px;
}
.desc .detail-wrap .toc ul {
    background: #f9f9f9;
    padding: 15px 15px 15px 20px;
    font-size: 14px;
    max-height: 80vh;
    overflow-y: auto;

}
.desc .detail-wrap .toc .box-title {
    margin-bottom: 15px;
}
.desc .detail-wrap article {
    flex: 1;
}
.desc .detail-wrap article figure {
    margin-bottom: 10px;
}
.desc .detail-wrap {
    margin-bottom: 60px;
}
.desc .related .box-title{
    margin-bottom: 15px;
}   
.desc .related .related-item{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border: 1px solid #cfe0d3;
    border-radius: 10px;
}   
.desc .related .related-item .box-img {
    aspect-ratio: 1/1;
    height: 90px;
    width: 90px;
    border-radius: 6px;
    flex-shrink: 0;
    overflow: hidden;
}
.desc .related .related-item .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.desc .related .related-item {
    position: relative;
    margin-bottom: 15px;
}
.desc .related .related-item > a {
    position: absolute;
    inset: 0;
    content: "";
}
.desc .related .related-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.desc .related .related-item .price {
    display: flex;
    padding: 5px 15px;
    border: 2px solid var(--primary);
    color: var(--primary);
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 8px;
}
.desc .related {
    padding-bottom: 60px;
}
.review-atc .review-wrap{
    margin: 0 auto;
    max-width: 888px;
}
.review-atc .review-wrap .point {
    display: flex;
    height: 52px;
    width: 52px;
    align-items: center;
    justify-content: center;
}
.review-atc .review-wrap .load-more {
    display: flex;
    justify-content: center;
}
.review-atc .review-wrap .load-more button {
    border: 1px solid var(--primary);
    height: 40px;
    border-radius: 6px;
    padding-left: 15px;
    padding-right: 15px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    color: var(--primary);
}

.booking-box {
    display: none;
}
.booking-box .calendar {
    width: 100%;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}
.booking-box .calendar .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.booking-box .calendar .calendar-header .nav {
    border: none;
    background: #f1f5f9;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}
.booking-box .calendar .calendar-header .month {
    font-weight: 600;
}
.booking-box .calendar .week,
.booking-box .calendar .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}
.booking-box .calendar .days .day {
    padding: 8px;
    margin: 2px;
    display: flex;
    height: 32px;
    width: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
}
.booking-box .calendar .days .day.disabled {
    color: #e2e8f0;
    pointer-events: none;
}
.booking-box .calendar .days .day.check {
    background: var(--primary);
    color: #000;
}

.booking-box .policy {
    border-radius: 16px;
    background: #fbfbfb;
    padding: 20px;
    font-size: 14px;
    margin-bottom: 35px;
}
.booking-box .policy ul li {
    margin-bottom: 10px;
    display: flex;
    width: calc(100%/3 - 8px);
    gap: 20px;
}
.booking-box .policy ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
.booking-box .policy ul li span {
    font-weight: 700;
}
.booking-box h4 {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.booking-box .sl .sl-item {
    margin-bottom: 10px;
}
.booking-box .sl .sl-item .item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e7;
}
.booking-box .sl .sl-item .item .control {
    display: flex;
    align-items: center;
}
.booking-box .sl .sl-item .item .control button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    border: 2px solid var(--primary);
    background: var(--primary);
    color: #000;
    border-radius: 50%;
}
.booking-box .sl .sl-item .item .control input {
    text-align: center;
    width: 50px;
}
.booking-box .sl .sl-item label {
    font-weight: 600;
}
.booking-box .sl .sl-item  label span {
    color: #828282;
    font-size: 14px;
    font-weight: 400;
}
.booking-box .sl .sl-item .item .box-price {
    color: #828282;
}
.booking-box .sl .sl-item .item .box-price .price {
    font-weight: 600;
    font-size: 20px;
    color: red;
}
.booking-box .bottom {
    padding-top: 20px;
    padding-bottom: 10px;
    border-top: 1px solid #e2e8f0;
    text-transform: uppercase;
    margin-top: 20px;
    font-weight: 600;
}
.booking-box .sum span {
    color: red;
    font-weight: 700;
}
.booking-box .box-btn {
    display: flex;
    justify-content: right;
}
.booking-box .box-btn button {
    background: var(--primary);
    color: #fff;
    height: 40px;
    border-radius: 8px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 120px;
}
.booking-box .gr-input label {
    text-align: left;
    font-size: 12px;
    color: #828282;
    margin-bottom: 5px;
}
.booking-box .gr-input {
    margin-bottom: 10px;
}
.booking-box .sum {
    text-align: right;
    margin-bottom: 10px;
}
.booking-box .gr-input input {
    border-radius: 0.5rem;
}

#button-contact-vr {
    z-index: 800;
}
.desc .read-more button {
    color: #828282;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}
article h2,
article h3,
article h4 {
    margin-bottom: 10px;
}
#footer .footer-col-item ul {
    padding-left: 0;
}
.footer-fixed ul {
    margin-bottom: 0;
}
#footer .footer-col-item ul li {
    padding: 0;
    margin-bottom: 10px;
}
#footer .footer-col-item ul li a {
    color: #232323;
}
#modalRoomContent ul,
.highlight-bgr ul {
    padding-left: 20px;
}
#modalRoomContent ul li {
    margin-bottom: 10px;
}
.modal-title {
    font-weight: 600;
}
#modalRoomContent ul li,
.highlight-bgr ul li {
    position: relative;
}
a {
    color: #000;
}

.highlight-bgr ul li p {
    text-align: left !important;
}
#modalRoomContent ul li::before,
.highlight-bgr ul li::before {
    content: "\f00c";
    font-family: fontawesome;
    left: -20px;
    position: absolute;
    top: 0;
    color: var(--primary);
}
@media (max-width:1200px) {
    .vuta-container {
        width: 100%;
    }
}
@media (max-width:996px) {
    .ticket-detail {
        padding-top: 90px;
        background-color: #fafafa;
    }
    .highlight-bgr {
        padding: 20px 0 0;
    }
    .ticket-price {
        padding-bottom: 20px;
    }
    .rules-ticket {
        padding-bottom: 20px;
    }
    .faqs .faq {
        margin-bottom: 20px;
    }
    .desc .detail-wrap {
        flex-direction: column;
    }
    .desc .toc {
        width: 100%;
        position: unset;
    }
    .desc .related {
        padding-bottom: 20px;
    }
}

.booking {
    padding-top: 150px;
}
.booking .box-title {
    text-align: center;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 26px;
    padding: 8px 12px;
    background-color: #f1f3f4;
    border: 1px solid #e2e2e2;
    text-align: center;
    color: #333;
}
.booking .box-title h2 {
    font-size: 16px;
}
.booking .box-title h2 span {
    color: red;
}

.booking .box-item {
    border: 1px solid #d7dce3;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 15px;
}
.booking .box-item .item{
    padding: 15px;
    display: flex;
}
.booking .box-item .item .box-img {
    height: 130px;
    width: 220px;
}
.booking .box-item .item .box-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.booking .box-item .item .box-content {
    padding-left: 15px;
}
.booking .box-item .item .box-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}
.booking .box-item .item .box-content .star span {
    font-size: 16px;
    color: #ffc000;
}
.booking .box-item .item .box-content .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.booking .box-item .item .box-content .rating .score {
    font-size: 14px;
    display: flex;
    height: 32px;
    width: 32px;
    align-items: center;
    border-radius: 4px;
    padding: 0;
    justify-content: center;
}

.booking .box-item .item .box-content .address {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #828282;
}
.booking .box-item .box,
.booking .box-item .title {
    padding: 15px;
    border-bottom: 1px solid #eaeef3
}
.booking .box-item .title h3 {
    color: #333;
}
.booking .box-item .box:last-child {
    border-bottom: 0;
}
.booking .box-item .d-flex {
    justify-content: space-between;
    gap: 15px;
}
.booking .box-item .d-flex .box-img {
    width: 120px;
    height: 100px;
    flex-shrink: 0;
}
.booking .box-item .d-flex .box-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.booking .box-item .d-flex h4 {
    margin-bottom: 10px;
}
.booking .box-item .change {
    color: var(--primary) !important;
    display: inline-block;
    width: fit-content;
    border-bottom: 2px solid var(--primary);
}

.booking .box-item .list-info li {
    margin-bottom: 10px;
}
.booking .box-item .list-info li label {
    font-weight: 700;
    width: 30%;
}
.booking .box-item .ad-info {
    background: #f5f5f5;
    border-radius: 3px;
    padding: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.booking .box-item .ad-info ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.booking .box-item .ad-info ul li:last-child {
    margin-bottom: 0;
}
.booking .box-item .ad-info ul li input {
    height: 30px;
    width: 100px;
    text-align: center;
}
.booking .box-item .ad-info ul li label span {
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
}
.booking .box-item .ad-info ul li label {
    font-weight: 700;
}
.booking .box-item .voucher .voucher-infor {
    display: flex;
    gap: 10px;
}
.booking .box-item .voucher .voucher-infor input {
    max-width: 300px;
}
.booking .box-item .voucher .voucher-infor button {
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
    background: var(--primary);
    color: #fff;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
}
.booking .box-item .voucher .hidden {
    padding-top: 10px;
    display: none;
}
.booking .box-item .voucher label {
    cursor: pointer;
}
.booking .box-item .total ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.booking .box-item .total ul li span {
    font-weight: 700;
}
.booking .box-item .total ul {
    border-bottom: 1px solid #eaeef3;
    margin-bottom: 15px;
}
.booking .box-item .sum ul li {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
}
.booking .box-item .sum ul li span {
    color: red;
}
.booking .box-item .free-service p {
    font-size: 16px;
    color:#00d900;
    display: flex;
    align-items: center;
    font-weight: 400;
    gap: 5px;
    margin-top: 8px;
}
.booking .box-item .free-service p span {
    font-size: 18px;
}
.booking .box-item .slogan {
    padding: 15px;
    margin-top: 10px;
    border-radius: 6px;
    background: var(--second);
    font-size: 14px;
}
.booking .box-item .body-form {
    padding: 15px;
}
.booking .box-item .body-form .gr-input {
    margin-bottom: 10px;
}
.booking .box-item .body-form label {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.booking .box-item .body-form label span {
    color: red;
}
.booking .box-item .body-form textarea {
    min-height: 100px;
}
.booking .box-btn button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: 0.5rem;
    background: var(--primary);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
}
.booking .note {
    font-size: 14px;
    padding: 15px;
    margin-top: 15px;
}
.booking .note span {
    color: var(--primary);
    font-size: 18px;
}
.booking .note p {
    display: flex;
    gap: 5px;
    align-items: self-start;
    margin-bottom: 10px;
}
@media (max-width:996px) {
    .booking {
        padding-top: 90px;
    }
    .booking .box-item .item {
        flex-direction: column;
    }
    .booking .box-item .item .box-img {
        aspect-ratio: 16/9;
        width: 100%;
        height: auto;
    }
    .booking .box-item .item .box-content {
        padding-left: 0;
        padding-top: 10px;
    }
    .booking .box-item h3 {
        font-size: 20px;
    }
    .booking .box-item .ad-info {
        margin-top: 10px;
    }
}


.section_blog_eat  {
    margin-bottom: 60px;
}

.back-to-top i {
    color: #fff;
}

.post-main {
    margin-top: 90px;
}

.box-content > div > p {
    text-align: left;

   
}

.header-top--booking-mobile {
    display: none;
}

#search_block .search-btn i {
    color: #fff;
}

.feedback-item--avatar {
    padding: 0;
    margin-bottom: 0;
    background: none;
}

@media (max-width: 575.98px) {
    .bread-crumb {
        padding: 20px 0 !important;
    }

    .section_blog_new {
        padding-top: 0 !important; 
    }

    .footer--main {
        padding-top: 20px;
    }
    .footer--main::before {
        position: static;
    }

    .section_banner_product .block_title {
        margin-bottom: 0;
        margin-top: 60px;
    }

    .as-tour--item {
        /* padding-left: 20px;
        padding-right: 20px; */
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }

    .as-tour--item .as-tour--content .as-tour--title {
        text-align: center;
        font-size: 16px;
    }

    .header-top--booking-mobile {
        display: block;

        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #f0c58d;
        border-color: #f0c58d;
        color: #1e4079;
        overflow: hidden;
        padding: 8px 20px;
        border-radius: 4px;
        text-transform: uppercase;
        font-family: Lato, sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 14px;
        line-height: 1.2;
        margin-left: auto;
    }

    .header-top--booking-mobile::before {
        content: "";
        position: absolute;
        inset: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
        transform: translateX(-120%);
        will-change: transform;
        pointer-events: none;
        animation: loop-translate-book linear 4s infinite;
    }

    .header-bottom--inner .header-bottom--logo {
        left: 45%;
        transform: translateX(-50%);
    }

    .section_banner_product {
        height: 470px;
    }

    
}

