﻿
:root {
    --orange: #f58220;
    --orange-dark: #d96710;
    --orange-soft: #fff3e8;
    --green: #0b9b7d;
    --ink: #222;
    --muted: #666;
    --line: #e7e7e7;
    --bg: #f6f6f6;
    --white: #fff;
    --success: #178a5b;
    --danger: #e33d3d;
    --shadow: 0 10px 32px rgba(0,0,0,.08);
    --r: 12px;
    --rl: 18px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font: 15px/1.5 Arial,"Segoe UI",sans-serif
}

button, input {
    font: inherit
}

button {
    cursor: pointer
}

.container {
    width: min(1180px,calc(100% - 32px));
    margin: auto
}

.header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.header-inner {
    height: 70px;
    display: grid;
    grid-template-columns: 150px minmax(240px,1fr) auto;
    gap: 20px;
    align-items: center
}

.logo {
    width: 145px;
    display: block
}

.search {
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    overflow: hidden
}

    .search input {
        flex: 1;
        border: 0;
        outline: 0;
        padding: 0 13px;
        min-width: 0
    }

    .search button {
        width: 50px;
        border: 0;
        background: var(--orange);
        color: #fff;
        font-size: 18px
    }

.head-actions {
    display: flex;
    gap: 16px
}

.head-action {
    background: none;
    border: 0;
    color: #555;
    font-size: 13px
}

    .head-action b {
        display: block;
        font-size: 19px;
        color: #333
    }

.breadcrumb {
    padding: 13px 0;
    color: #777;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.product-overview {
    display: grid;
    grid-template-columns: minmax(0,1fr) 330px;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 16px
}

.product-head {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    margin: 0
}

    .product-head h1 {
        font-size: 28px;
        line-height: 1.32;
        margin: 0 0 10px;
        font-weight: 650;
        letter-spacing: -.012em
    }

.product-meta {
    display: flex;
    gap: 10px 18px;
    align-items: center;
    flex-wrap: wrap;
    color: #555;
    font-size: 14px
}

.rating-link {
    color: var(--orange-dark);
    font-weight: 600;
    text-decoration: none
}

    .rating-link .stars {
        color: #f2a100;
        letter-spacing: 1px
    }

.sold {
    font-weight: 600
}

.location {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    margin-top: 12px;
    color: #555
}

.highlights {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid #eee
}

.highlight {
    display: flex;
    gap: 9px
}

    .highlight i {
        font-style: normal;
        color: var(--orange);
        font-weight: 600
    }

    .highlight span {
        color: #444
    }

.price-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 26px rgba(0,0,0,.06)
}

.price-box-label {
    font-size: 14px;
    color: #666
}

.price-box-value {
    font-size: 32px;
    line-height: 1.15;
    color: var(--orange);
    font-weight: 900;
    margin: 4px 0 9px
}

.price-box-note {
    color: #777;
    font-size: 13px;
    line-height: 1.55
}

.price-box-cta {
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 18px;
    transition: .2s
}

    .price-box-cta:hover {
        background: var(--orange-dark);
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(245,130,32,.22)
    }

.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 205px 205px;
    gap: 8px;
    margin-bottom: 16px;
    order: -1
}

.photo {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #ddd;
    border: 0;
    padding: 0
}

    .photo.main {
        grid-row: 1/3
    }

    .photo img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .35s
    }

    .photo:hover img {
        transform: scale(1.025)
    }

.photo-count {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(0,0,0,.72);
    color: white;
    border-radius: 18px;
    padding: 6px 11px;
    font-size: 12px
}

.anchor-shell {
    position: sticky;
    top: 70px;
    z-index: 35;
    background: var(--bg);
    padding: 8px 0
}

.anchor {
    display: flex;
    overflow: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px
}

    .anchor a {
        white-space: nowrap;
        padding: 12px 17px;
        text-decoration: none;
        color: #444;
        font-weight: 600;
        border-bottom: 3px solid transparent
    }

        .anchor a.active {
            color: var(--orange);
            border-color: var(--orange)
        }

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 15px;
    align-items: start;
    transition: grid-template-columns .28s ease
}

    .booking-layout.has-selection {
        grid-template-columns: minmax(0,1fr) 354px
    }

    .booking-layout > aside {
        display: none;
        opacity: 0;
        transform: translateX(0px)
    }

    .booking-layout.has-selection > aside {
        display: block;
        animation: summaryIn .28s ease forwards;
        opacity: 1;
        position: sticky;
        top: 138px;
    }

@keyframes summaryIn {
    to {
        opacity: 1;
        transform: none
    }
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 16px
}

.card-pad {
    padding: 20px
}

.card h2 {
    margin: 0;
    font-size: 22px
}

.subtext {
    color: #777;
    font-size: 13px;
    margin-top: 3px
}

.booking-card {
    overflow: hidden
}

.booking-header {
    padding: 0 20px 20px;
    /*border-bottom: 1px solid #eee;*/
    display: none;
}

.date-trigger {
    margin-top: 15px;
    width: 100%;
    min-height: 56px;
    border: 1px solid #ddd;
    border-radius: 9px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 13px;
    text-align: left
}

    .date-trigger:hover {
        border-color: var(--orange)
    }

    .date-trigger b {
        display: block
    }

    .date-trigger small {
        display: block;
        color: #777;
        margin-top: 2px
    }

    .date-trigger .change {
        color: var(--orange);
        font-weight: 600
    }

.date-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 2px
}

    .date-section-head h2 {
        margin: 0;
        line-height: 1.35;
        font-weight: 600;
        font-size: 14px !important;
    }

.date-helper {
    color: #777;
    font-size: 13px;
    padding-top: 4px;
    text-align: right
}

.date-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 16px 1px 5px;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
}

    .date-list::-webkit-scrollbar {
        height: 5px
    }

    .date-list::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 99px
    }

.date-btn, .custom-date {
    flex: 0 0 auto;
    min-width: 88px;
    min-height: 68px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 9px 10px;
    text-align: center;
    color: #444;
    transition: border-color .18s,background .18s,color .18s,transform .18s;
    scroll-snap-align: start
}

    .date-btn:hover:not(:disabled), .custom-date:hover:not(:disabled) {
        border-color: var(--orange);
        color: var(--orange);
        transform: translateY(-1px)
    }

    .date-btn.active, .custom-date.active {
        background: #EAF8F5;
        border: 2px solid #00A98F;
        color: #008C78;
        font-weight: 650;
        padding: 8px 9px;
        box-shadow: 0 5px 14px rgba(0,169,143,.10)
    }

    .date-btn b, .custom-date b {
        display: block;
        font-size: 14px;
        line-height: 1.3;
        font-weight: 600
    }

    .date-btn small, .custom-date small {
        display: block;
        color: inherit;
        font-size: 13px;
        margin-top: 3px
    }

    .date-btn .sold-out, .custom-date .sold-out {
        display: block;
        color: #aaa;
        font-size: 11px;
        margin-top: 2px
    }

    .date-btn:disabled, .custom-date:disabled {
        opacity: .62;
        background: #f5f5f5;
        cursor: not-allowed;
        color: #999
    }

    .date-btn.custom-date b, .custom-date b {
        font-size: 19px;
        line-height: 1
    }

.chosen-date {
    margin-top: 12px;
    color: #555;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 7px;
    padding: 10px 12px;
    font-size: 13px;
    display: none;
}

    .chosen-date b {
        color: var(--orange-dark)
    }

.package-list {
    padding: 0 20px 20px
}

.package {
    border: 1px solid #ddd;
    border-radius: 11px;
    margin-top: 14px;
    overflow: hidden;
    transition: .2s
}

    .package.selected {
        border-color: var(--orange);
        box-shadow: 0 0 0 2px rgba(245,130,32,.09)
    }

.package-main {
    display: grid;
    grid-template-columns: minmax(0,1fr) 150px;
    gap: 16px;
    padding: 17px
}

.package-name {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4
}

.package-points {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 8px
}

    .package-points .pill {
        font-size: 11px;
        border-radius: 4px;
        padding: 3px 7px;
        background: #EAF8F5;
        color: #008C78;
        border: 1px solid #BFEAE2;
        font-weight: 500;
    }

        .package-points .pill.orange {
            background: #EAF8F5;
            color: #008C78;
            border-color: #BFEAE2
        }

.package-info-btn {
    border: 0;
    background: none;
    color: #555F66;
    padding: 8px 0 0;
    font-weight: 600
}

    .package-info-btn:hover {
        color: #343A40
    }

.package-side {
    text-align: right;
    align-self: center
}

    .package-side small {
        color: #777;
        display: block
    }

    .package-side strong {
        display: block;
        color: var(--orange);
        font-size: 22px;
        margin: 2px 0 8px
    }

.select-package {
    height: 39px;
    min-width: 110px;
    border: 0;
    border-radius: 7px;
    background: var(--orange);
    color: #fff;
    font-weight: 600
}

    .select-package:hover {
        background: var(--orange-dark)
    }

.ticket-panel {
    border-top: 1px solid #eee;
    background: #fafafa;
    display: none
}

.package.open .ticket-panel,
.package.open .booking-header {
    display: block
}

.ticket-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) 125px 118px;
    gap: 14px;
    align-items: center;
    padding: 15px 17px;
    border-top: 1px solid #e9e9e9
}

    .ticket-row:first-child {
        border-top: 0
    }

.ticket-name {
    font-weight: 600
}

.ticket-rule {
    font-size: 12px;
    color: #777;
    margin-top: 3px
}

.rule-btn {
    border: 0;
    background: none;
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 0
}

.ticket-price {
    text-align: right
}

    .ticket-price strong {
        display: block;
        color: var(--orange);
        font-size: 18px
    }

    .ticket-price del {
        color: #aaa;
        font-size: 11px
    }

.stepper {
    height: 38px;
    display: flex;
    border: 1px solid #d8d8d8;
    border-radius: 7px;
    overflow: hidden;
    background: #fff
}

    .stepper button {
        width: 36px;
        border: 0;
        background: white;
        font-size: 19px
    }

        .stepper button:not(:disabled):hover {
            background: var(--orange-soft);
            color: var(--orange)
        }

        .stepper button:disabled {
            color: #ccc
        }

    .stepper output {
        min-width: 38px;
        display: grid;
        place-items: center;
        font-weight: 600
    }

.stock {
    font-size: 11px;
    color: #999;
    text-align: right;
    margin-top: 4px
}

.order-card {
    position: sticky;
    top: 128px;
    box-shadow: 0 8px 26px rgba(20,20,20,.07);
    overflow: hidden
}

.order-title {
    padding: 16px 18px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    font-weight: 650;
    font-size: 18px
}

.order-body {
    padding: 0 17px 18px
}

.order-date {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background: #fafafa;
    border-radius: 7px;
    padding: 9px 10px;
    font-size: 13px
}

.order-lines {
    display: grid;
    gap: 10px;
    margin-top: 13px
}

.order-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    font-size: 13px
}

    .order-line small {
        display: block;
        color: #777;
    }

    .order-line i {
        font-size: 12px;
        padding: 3px 0;
        display: block;
        font-style: normal;
    }

.order-empty {
    display: none !important
}

.divider {
    border: 0;
    border-top: 1px dashed #ddd;
    margin: 14px 0
}

.coupon {
    display: flex;
    gap: 7px
}

    .coupon input {
        min-width: 0;
        flex: 1;
        height: 40px;
        border: 1px solid #ddd;
        border-radius: 7px;
        padding: 0 10px
    }

    .coupon button {
        border: 0;
        border-radius: 7px;
        background: #333;
        color: #fff;
        padding: 0 13px;
        font-weight: 600
    }

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 9px
}

.discount {
    color: var(--success)
}

.grand-total {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 12px
}

    .grand-total strong {
        font-size: 25px;
        color: var(--orange)
    }

.order-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 15px
}

.btn {
    height: 44px;
    border-radius: 7px;
    font-weight: 600;
    border: 0
}

.btn-primary {
    background: var(--orange);
    color: #fff
}

    .btn-primary:hover {
        background: var(--orange-dark)
    }

.btn-outline {
    background: #fff;
    color: var(--orange);
    border: 1px solid var(--orange)
}

.btn:disabled {
    opacity: .45;
    cursor: not-allowed
}

.content {
    padding: 21px
}

    .content h2 {
        margin: 0 0 12px
    }

    .content p, .content li {
        color: #555
    }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.info-item {
    background: #fafafa;
    border-radius: 8px;
    padding: 12px
}

.faq-item {
    border-top: 1px solid #eee
}

    .faq-item button {
        width: 100%;
        padding: 15px 0;
        border: 0;
        background: none;
        text-align: left;
        display: flex;
        justify-content: space-between;
        font-weight: 600
    }

.faq-answer {
    display: none;
    padding: 0 0 15px;
    color: #666
}

.faq-item.open .faq-answer {
    display: block
}

.mobile-bar {
    display: none
}

.modal, .sheet, .calendar {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none
}

    .modal.open, .sheet.open, .calendar.open {
        display: block
    }

.backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5)
}

.modal-box, .calendar-box {
    position: relative;
    width: min(520px,calc(100% - 30px));
    max-height: 86vh;
    overflow: auto;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin: 7vh auto;
    box-shadow: var(--shadow)
}

.close {
    position: absolute;
    right: 13px;
    top: 10px;
    border: 0;
    background: none;
    font-size: 27px;
    color: #666
}

.calendar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 9px 34px 16px
}

    .calendar-top button {
        width: 37px;
        height: 37px;
        border: 1px solid #ddd;
        border-radius: 50%;
        background: white;
        font-size: 22px
    }

.calendar-week, .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 6px
}

    .calendar-week div {
        text-align: center;
        color: #888;
        font-size: 12px;
        padding: 4px
    }

.day {
    aspect-ratio: 1;
    border: 0;
    border-radius: 50%;
    background: white;
    display: grid;
    place-items: center
}

    .day:not(:disabled):hover {
        background: var(--orange-soft)
    }

    .day.today {
        box-shadow: inset 0 0 0 1px var(--orange);
        color: var(--orange)
    }

    .day.selected {
        background: var(--orange);
        color: white
    }

    .day:disabled {
        color: #ccc;
        cursor: not-allowed
    }

.calendar-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 18px
}

.toast-zone {
    position: fixed;
    right: 18px;
    top: 84px;
    z-index: 99999999;
    display: grid;
    gap: 8px
}

.toast {
    background: #EAF8F5; /*#222;*/
    color: #008C78; /*#fff;*/
    border-radius: 8px;
    padding: 11px 14px;
    /*box-shadow: var(--shadow);*/
    border: 1px solid #BFEAE2;
    transition: .25s;
    opacity: 1;
}

    .toast.warning {
        background: var(--danger); /*#e10000;*/
        color: #fff;
    }

.lightbox-box {
    position: relative;
    width: min(1000px,calc(100% - 30px));
    margin: 5vh auto
}

    .lightbox-box img {
        width: 100%;
        max-height: 88vh;
        object-fit: contain;
        border-radius: 10px
    }

    .lightbox-box .close {
        color: #fff;
        font-size: 34px;
        right: 0;
        top: -40px
    }

@media(max-width:900px) {
    .product-overview {
        grid-template-columns: 1fr
    }

    .price-box {
        padding: 19px;
        box-shadow: none
    }

    .price-box-cta {
        margin-top: 14px
    }

    .header-inner {
        grid-template-columns: 130px 1fr auto;
        gap: 10px
    }

    .logo {
        width: 126px
    }

    .head-action span {
        display: none
    }

    .booking-layout, .booking-layout.has-selection {
        grid-template-columns: 1fr
    }

        .booking-layout > aside, .booking-layout.has-selection > aside {
            display: none
        }

    .order-card {
        display: none
    }

    .gallery {
        grid-template-rows: 170px 170px
    }

    .anchor-shell {
        top: 70px
    }

    .container {
        width: min(100% - 24px,760px)
    }

    .mobile-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        background: #fff;
        border-top: 1px solid #ddd;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 -8px 25px rgba(0,0,0,.08)
    }

    .mobile-total small {
        display: block;
        color: #777
    }

    .mobile-total strong {
        color: var(--orange);
        font-size: 19px
    }

    .mobile-bar button {
        height: 44px;
        border: 0;
        border-radius: 7px;
        background: var(--orange);
        color: white;
        padding: 0 22px;
        font-weight: 600
    }

    body {
        padding-bottom: 78px
    }
}

@media(max-width:640px) {
    body {
        background: #fff
    }

    .product-overview {
        display: block;
        margin: 0
    }

    .price-box {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        padding: 17px 14px 19px;
        border-top: 0
    }

    .price-box-value {
        font-size: 28px
    }

    .price-box-cta {
        width: 100%
    }

    .container {
        width: 100%
    }

    .header-inner {
        height: 58px;
        padding: 0 12px;
        grid-template-columns: 118px 1fr auto
    }

    .logo {
        width: 114px
    }

    .search {
        height: 38px
    }

    .head-actions {
        gap: 4px
    }

    .head-action:not(:last-child) {
        display: none
    }

    .breadcrumb {
        padding: 10px 14px;
        background: #fff
    }

    .product-head {
        border: 0;
        border-radius: 0;
        padding: 18px 14px 20px;
        margin: 0;
        border-bottom: 1px solid #eee
    }

        .product-head h1 {
            font-size: 22px
        }

    .product-meta {
        gap: 7px 13px;
        font-size: 13px
    }

    .highlights {
        font-size: 14px
    }

    .gallery {
        display: flex;
        overflow: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        margin: 0;
        border-bottom: 1px solid #eee
    }

    .photo, .photo.main {
        flex: 0 0 100%;
        height: 255px;
        border-radius: 0;
        scroll-snap-align: start
    }

    .photo-count {
        display: none
    }

    .anchor-shell {
        top: 58px;
        padding: 0;
        background: #fff;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee
    }

    .anchor {
        border: 0;
        border-radius: 0
    }

        .anchor a {
            padding: 11px 14px
        }

    .booking-layout, .booking-layout.has-selection {
        display: block
    }

    .card {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        margin-bottom: 10px
    }

    .card-pad, .booking-header, .content {
        padding: 17px 14px
    }

    .date-section-head {
        display: block
    }

    .date-helper {
        text-align: left;
        padding-top: 5px
    }

    .date-list {
        margin-right: -14px;
        padding-right: 14px
    }

    .date-btn {
        min-width: 82px;
        min-height: 66px
    }

    .chosen-date {
        margin-top: 10px
    }

    .package-list {
        padding: 0 12px 16px
    }

    .package-main {
        grid-template-columns: 1fr;
        gap: 11px;
        padding: 15px
    }

    .package-side {
        text-align: left;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end
    }

        .package-side strong {
            font-size: 20px
        }

    .select-package {
        min-width: 92px
    }

    .ticket-row {
        grid-template-columns: minmax(0,1fr) auto;
        gap: 10px;
        padding: 14px
    }

    .ticket-price {
        text-align: left;
        grid-column: 1/2
    }

    .stepper {
        grid-row: 1/3;
        grid-column: 2/3;
        align-self: center
    }

    .stock {
        display: none
    }

    .info-grid {
        grid-template-columns: 1fr
    }

    .modal-box, .calendar-box {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        margin: 0;
        border-radius: 18px 18px 0 0;
        max-height: 88vh;
        padding-bottom: calc(20px + env(safe-area-inset-bottom))
    }

    .calendar-grid {
        gap: 4px
    }

    .toast-zone {
        left: 12px;
        right: 12px;
        top: 70px
    }

    .toast {
        text-align: center
    }

    .sheet-box {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        border-radius: 18px 18px 0 0;
        padding: 20px 16px calc(18px + env(safe-area-inset-bottom));
        max-height: 82vh;
        overflow: auto
    }

    button:active, button:focus {
        outline: none !important;
        box-shadow: none !important;
    }

        button:focus:not(:focus-visible) {
            outline: none !important;
            box-shadow: none !important;
        }

    .detail-info-wrapper .title {
        color: var(--orange);
    }
}

#intro table img, #intro img {
    width: 100% !important;
    height: auto;
}

.lbl-alert-pack {
    color: #EA2127;
    display: block;
    font-size: 14px;
    padding: 5px 0;
    font-weight: 600;
}

.visible-quan .stepper button {
    opacity: 0.3;
    pointer-events: none;
}

.detail-info-wrapper {
    padding: 0;
}

.title-pack-detail {
    font-size: 16px;
    font-weight: 500;
}

.detail-info-wrapper .title {
    color: var(--orange);
}


.event {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 150px;
    bottom: 3px;
    left: calc(50% - 1.5px);
    content: " ";
    display: block;
    background: #3d8eb9;
}

    .event.busy {
        background: #f64747;
    }

.flatpickr-calendar {
    border-radius: 24px;
    padding: 15px;
    width: 340.875px;
}

.ticket-row.invalid div, .ticket-row.invalid strong, .ticket-row.invalid span, .ticket-row.invalid button {
    color: #ccc !important;
    pointer-events: none;
}

.flatpickr-day {
    position: relative;
    max-width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 0px;
    font-weight: 600;
    font-size: 16px;
    color: rgb(86 101 122);
}

.day-price {
    color: rgb(112, 117, 119);
    font-size: 10px;
    line-height: 12px;
    position: absolute;
    bottom: 2px;
    left: 7px;
    font-weight: 500;
}

.flatpickr-calendar {
    padding: 20px 15px;
}

.flatpickr-day:hover, .flatpickr-day.today:hover, .flatpickr-day.today:focus,
.flatpickr-day.today:hover, .flatpickr-day.today:focus {
    background: #EAF8F5;
    border-color: #BFEAE2;
}

.flatpickr-day.selected {
    background: #FF9100;
    border-color: none;
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
    color: rgb(86 101 122);
}

.flatpickr-day.ll-date-disabled {
    opacity: 0.5;
    color: #b7b7b7;
    cursor: not-allowed;
    pointer-events: none;
}

.flatpickr-day.nextMonthDay {
    color: rgba(57, 57, 57, 0.3) !important;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    top: 25px;
    padding: 0px 30px;
}

.order-line strong {
    display: block;
    font-weight: 400;
    padding-top: 4px;
    font-size: 13px;
    font-style: normal;
}

.order-line b {
    position: relative;
}

.order-line remove {
    position: absolute;
    bottom: 5px;
    left: 24px;
    cursor: pointer;
}

.blacklist-note {
    color: rgb(199 10 10);
    font-size: 10px;
    line-height: 12px;
    position: absolute;
    bottom: 2px;
    left: 0;
    font-weight: 600;
    white-space: nowrap;
}

.date-btn.disabled,
.date-btn.blacklist-date {
    opacity: 0.45;
    cursor: not-allowed;
}

.blacklist-label {
    display: block;
    font-size: 10px;
    color: #d32d55;
}

.popup-map .p-popup-wrapper .p-locs-tiltle {
    text-align: left;
    padding-left: 10px;
    margin: -10px 0 -4px;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    position: sticky;
    top: -16px;
    padding: 10px 0;
    background-color: #fff;
    z-index: 1;
}

    .popup-map .p-popup-wrapper .p-locs-tiltle img {
        position: absolute;
        top: 15px;
        right: 0px;
        height: 24px;
        width: 24px;
        cursor: pointer;
    }

.popup-map .p-popup-wrapper .map-frame {
    position: sticky;
    top: 24px;
    z-index: 1;
}

#acc-srch, #acc-list {
    display: none;
}

.popup-map .p-popup-wrapper {
    width: 650px !important;
    height: 442px !important;
    padding: 10px 30px;
    min-width: 650px;
}

.name-brand-map.name {
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding-bottom: 5px;
}
