

.popup-close-btn-event {
    position: absolute;
    width: 2rem;
    height: 2rem;
    
    top: -17.25px;
    right: -13.25px;
    z-index: 10001;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

    .popup-close-btn-event .icon-hover {
        display: none !important;
    }

    .popup-close-btn-event:hover .icon-default {
        display: none !important;
    }

    .popup-close-btn-event:hover .icon-hover {
        display: inline !important;
    }

.event-popup-cards-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: min-content;
    gap: 1.5rem 1.5rem;
    width: 100%;
    overflow-x: hidden;
    padding-right: 0rem;
    position: relative;
}

.event-popup-card {
    background: #E5F4E7;
    border-radius: 12px;
    padding: 1rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
    height: auto;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.event-popup-card-title {
    font-family: 'Arvo';
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.375rem;
    color: #242143;
    margin-bottom: 0.25rem;
}

.event-popup-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: flex-start;
    margin-top: 0;
}

.event-popup-card-price-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.event-popup-card-price {
    font-family: 'Arvo';
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.875rem;
    color: #F57121;
}

.event-popup-card-to-book {
    font-family: 'Arvo';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #242143;
    white-space: nowrap;
    display: inline-block;
}

.event-popup-card-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 242px;
    min-width: 120px;
    height: 2.5rem;
    padding: 0.75rem 1.5rem;
    background: #007B7C;
    border-radius: 8px;
    color: #fff;
    font-family: 'Futura';
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    border: none;
    cursor: pointer;
    margin: 0 auto 0 auto;
    align-self: center;
    transition: background 0.2s;
    white-space: nowrap;
    text-align: center;
}

    .event-popup-card-btn span, .event-popup-card-btn-text {
        width: auto;
        display: inline-block;
    }

    .event-popup-card-btn:hover {
        background: #005f60;
    }

    .event-popup-card-btn:disabled {
        background: #cccccc;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .event-popup-card-btn:disabled:hover {
        background: #cccccc;
    }

/* Sold Out Contact Message */
.event-sold-out-contact {
    background: #E5F4E7;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
    text-align: center;
    font-family: 'Futura';
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    line-height: 1.25rem;
    color: #242143;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.event-sold-out-contact span,
.event-sold-out-contact a {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Ensure contact line stays on one row on all mobile devices */
@media screen and (max-width: 480px) {
    .event-sold-out-contact {
        font-size: clamp(0.7rem, 2.2vw, 0.875rem);
        padding: 0.75rem 0.5rem;
    }
}

/* Extra small mobile devices */
@media screen and (max-width: 360px) {
    .event-sold-out-contact {
        font-size: clamp(0.65rem, 2vw, 0.8rem);
        padding: 0.75rem 0.4rem;
    }
}

.event-sold-out-phone {
    color: #007B7C;
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
}

.event-sold-out-phone:hover {
    color: #005f60;
    text-decoration: underline;
}

.event-popup-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 5;
    background: #e5f4e7 !important;
    color: #201944 !important;
    border: 2px solid #201944 !important;
    border-radius: 8px;
    font-family: 'Futura';
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .event-popup-back-btn:hover {
        background: #242143 !important;
        color: #fff !important;
        border-color: #201944 !important;
    }

.event-popup-detail-left-panel {
    padding: 1.5rem 1rem 1.5rem 1.5rem;
}

.event-popup-detail-right-panel {
    border-radius: 12px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

    .event-popup-detail-right-panel img {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .event-popup-detail-right-panel .event-popup-back-btn {
        margin-bottom: 1rem;
    }

    .event-popup-detail-right-panel .event-popup-card-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: #f57121;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .event-popup-detail-right-panel .event-popup-card-to-book {
        font-size: 1rem;
        font-weight: 400;
        color: #242143;
        margin-left: 0.25rem;
    }

    .event-popup-detail-right-panel .event-popup-card-btn {
        width: 100%;
        min-width: 0;
        margin: 1rem 0 0 0;
    }

    .event-popup-detail-right-panel .event-popup-back-btn {
        font-family: Futura;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 3.25rem !important;
        line-height: 2.5rem !important;
        padding: 0 !important;
        width: 100% !important;
        border-radius: 8px !important;
        margin: 0rem auto 0 auto !important;
    }

        .event-popup-detail-right-panel .event-popup-back-btn:hover {
            background: #242143 !important;
            color: #FFFFFF !important;
        }

.event-popup-detail-content {
    font-family: 'Futura';
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

    .event-popup-detail-content h2 {
        font-family: 'Arvo';
        font-weight: 700;
        font-size: 18px;
        color: black;
        margin: 20px 0 10px 0;
    }

        .event-popup-detail-content h2:first-child {
            margin-top: 0;
        }

    .event-popup-detail-content ul {
        list-style: none;
        padding: 0;
        margin: 10px 0;
    }

    .event-popup-detail-content li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

        .event-popup-detail-content li:before {
            content: "";
            background-image: url('../images/asticksvg.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: absolute;
            left: 0;
            top: 4px;
            width: 11.74px;
            height: 15.11px;
            opacity: 1;
        }

    .event-popup-detail-content p {
        margin: 8px 0;
    }

    .event-popup-detail-content strong {
        font-weight: 700;
        color: #242143;
    }

.event-popup-sticky-footer {
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 2000;
    background: #fff;
    box-shadow: 0px -6px 24px 0px rgba(36, 33, 67, 0.16);
    padding: 0.75rem 0rem 0.75rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding-bottom: calc(0rem + env(safe-area-inset-bottom, 0) + 0px);
}

@media (max-width: 1200px) {
    .event-popup-cards-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .event-popup-card.d-flex.flex-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .event-popup-detail-left-panel,
    .event-popup-detail-right-panel {
        padding: 0rem 0.5rem;
    }

    .event-popup-detail-right-panel {
        margin-top: 1rem;
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .event-popup-cards-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-height: none;
        padding-right: 0;
    }

    .event-popup-card {
        width: 100%;
        min-width: 0;
        padding: 0.75rem 0.5rem;
        font-size: 14px;
    }

    .event-popup-card-title {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    .event-popup-card-btn {
        width: 100%;
        min-width: 0;
        height: 44px;
        font-size: 15px;
        padding: 10px 0;
    }

        .event-popup-card-btn:hover {
            background: #005f60;
        }

        .event-popup-card-btn span, .event-popup-card-btn-text {
            width: 100%;
            font-size: 15px;
            height: auto;
        }

    .event-popup-card-footer {
        gap: 0.5rem;
        align-items: stretch;
    }

    .event-popup-card-price-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }

    .event-popup-card-btn {
        width: auto;
        max-width: 249px;
        min-width: 120px;
        padding: 0.75rem 1.5rem;
        margin: 0;
        align-self: center;
        text-align: center;
    }

        .event-popup-card-btn span {
            white-space: nowrap;
        }

    .event-popup-detail-left-panel,
    .event-popup-detail-right-panel {
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .event-popup-detail-right-panel {
        margin-bottom: 0 !important;
        margin-top: 0rem !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        align-items: stretch !important;
        padding: 0rem !important;
    }

    .event-popup-sticky-footer {
        position: sticky;
        bottom: 0;
        width: 100%;
        z-index: 2000;
        background: #fff;
        box-shadow: 0px -6px 24px 0px rgba(36, 33, 67, 0.16);
        padding: 1rem !important;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0)) !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

        .event-popup-sticky-footer .event-popup-card-footer {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: space-between !important;
            width: 100% !important;
            gap: 1rem !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .event-popup-sticky-footer .event-popup-card-price-group {
            display: flex !important;
            align-items: center !important;
            gap: 0.5rem !important;
            flex-shrink: 0 !important;
        }

        .event-popup-sticky-footer .event-popup-card-price {
            font-family: 'Arvo' !important;
            font-weight: 700 !important;
            font-size: 1.5rem !important;
            line-height: 1.5rem !important;
            color: #F57121 !important;
        }

        .event-popup-sticky-footer .event-popup-card-to-book {
            font-family: 'Arvo' !important;
            font-weight: 500 !important;
            font-size: 1rem !important;
            line-height: 1.1875rem !important;
            color: #242143 !important;
        }

        .event-popup-sticky-footer .event-popup-back-btn {
            display: none !important;
        }

        .event-popup-sticky-footer .event-popup-card-btn {
            background: #0B8C87 !important;
            color: #FFFFFF !important;
            border: none !important;
            border-radius: 8px !important;
            -webkit-border-radius: 8px !important;
            -webkit-appearance: none !important;
            appearance: none !important;
            overflow: hidden !important;
            padding: 0.9rem 1.5rem !important;
            font-family: 'Futura' !important;
            font-weight: 500 !important;
            font-size: 1rem !important;
            line-height: 1.5rem !important;
            text-transform: uppercase !important;
            cursor: pointer !important;
            transition: background 0.2s ease !important;
            white-space: nowrap !important;
            
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            box-sizing: border-box !important;
            margin: 0 !important;
        }

            .event-popup-sticky-footer .event-popup-card-btn:hover {
                background: #0a7a75 !important;
            }
}

@supports (-webkit-touch-callout: none) {
    @media (max-width: 480px) {
        .event-popup-sticky-footer .event-popup-card-btn {
            height: 38px !important;
            min-height: 38px !important;
            max-height: 38px !important;
            padding: 0 1.5rem !important;
            line-height: 38px !important;
            box-sizing: border-box !important;
        }

        .event-popup-sticky-footer-row .event-popup-card-btn {
            height: 38px !important;
            min-height: 38px !important;
            max-height: 38px !important;
            box-sizing: border-box !important;
        }
    }
}

@media (min-width: 768px) {
    .event-popup-card-btn,
    .event-popup-back-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 3.25rem;
        padding: 0;
        font-size: 1rem;
        line-height: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 699px) {
    .event-popup-back-btn.d-none.d-md-block {
        display: none !important;
    }

    .event-popup-card-footer-ipad {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .event-popup-back-btn.d-none.d-md-block {
        display: flex !important;
    }
}

html, body {
    overflow-x: hidden;
}

@supports (-webkit-touch-callout: none) {
    
    body.event-popup-open {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100vw;
        max-height: 100vh;
        
        touch-action: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
        
        body.event-popup-open + html,
        html.event-popup-open {
            overflow: hidden;
            -webkit-overflow-scrolling: touch;
            touch-action: none;
        }
    
    .event-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(51, 51, 51, 0.56);
        z-index: 1000;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100vw;
        max-height: 100vh;
        
        touch-action: pan-y;
        -webkit-touch-callout: none;
    }
    
    .event-popup-container {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 67.5rem;
        height: 90vh;
        max-height: 90vh;
        background: #fff;
        border-radius: 1rem;
        z-index: 1010;
        overflow: hidden; 
        display: flex;
        flex-direction: column;
        -webkit-overflow-scrolling: touch;
        
        top: calc(50% + env(safe-area-inset-top, 0) / 2);
        height: calc(90vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
        max-height: calc(90vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
        
        -webkit-transform: translate(-50%, -50%) translateZ(0);
        transform: translate(-50%, -50%) translateZ(0);
        
        max-width: calc(90vw - env(safe-area-inset-left, 0) - env(safe-area-inset-right, 0));
        width: calc(90vw - env(safe-area-inset-left, 0) - env(safe-area-inset-right, 0));
        
        touch-action: pan-y;
    }
    
    .event-popup-scroll-content,
    .event-popup-scroll-content-full {
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        flex: 1; 
        max-height: none; 
        height: auto;
        
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100%;
        width: 100%;
        
        touch-action: pan-y;
        
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    
    .event-popup-cards-section {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100%;
        width: 100%;
        
        touch-action: pan-y;
        -webkit-touch-callout: none;
    }
    
    .event-popup-sticky-footer,
    .event-customer-info-sticky-footer {
        position: sticky;
        bottom: 0;
        background: #fff;
        z-index: 2000;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100%;
        width: 100%;
        
        touch-action: pan-y;
        -webkit-touch-callout: none;
    }
    
    iframe {
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
        
        max-width: 100%;
        width: 100%;
        
        touch-action: pan-y;
        -webkit-touch-callout: none;
    }
    
    .event-popup-overlay-flex {
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100vw;
        max-height: 100vh;
        
        touch-action: pan-y;
        -webkit-touch-callout: none;
    }

    .event-popup-container img {
        margin-bottom: 5px;
        margin-right: 8px;
        max-width: 100%;
        height: auto;
        
        -webkit-touch-callout: none;
    }
    
    .event-popup-container {
        word-wrap: break-word;
        overflow-wrap: break-word;
        
        overscroll-behavior: contain;
    }
    
    .event-popup-container,
    .event-popup-overlay,
    .event-popup-scroll-content,
    .event-popup-scroll-content-full {
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    
    @media (max-width: 600px) {
        .event-popup-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            transform: none;
            width: 100vw;
            max-width: 100vw;
            height: calc(100vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
            max-height: calc(100vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
            padding: 0;
            border-radius: 0;
        }
    }
}

@font-face {
    font-family: 'Arvo';
    src: url('../fonts/Arvo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Arvo';
    src: url('../fonts/Arvo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Arvo';
    src: url('../fonts/Arvo-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Arvo';
    src: url('../fonts/Arvo-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura_Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura_MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura_Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura_CondensedMedium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura_CondensedExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

.event-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(51, 51, 51, 0.56);
    
    z-index: 1000;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    background: transparent !important;
}

@media (max-width: 699px) {
    body, html {
        overflow: hidden !important;
        position: fixed !important;
        width: 100vw !important;
        height: 100vh !important;
    }
}

#bookingFrame .event-popup-overlay-flex {
    background: transparent !important;
}

.event-popup-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.3rem 1.5rem;
    gap: 1.2rem;
    isolation: isolate;
    position: fixed;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 93vw;
    
    max-width: 64rem;
    height: auto;
    max-height: 90vh;
    background: #fff;
    border-radius: 1rem;
    z-index: 1010;
    overflow: hidden;
    box-sizing: border-box;
    
    top: calc(2rem + env(safe-area-inset-top, 0));
    max-height: calc(90vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
}

@media (max-width: 699px) {
    .event-popup-container {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        padding: 16px !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        z-index: 1010 !important;
        
        min-height: 100vh !important;
        min-width: 100vw !important;
    }

    .event-popup-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        z-index: 1000 !important;
        
        min-width: 100vw !important;
        min-height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
    }

    .event-popup-scroll-content,
    .event-popup-scroll-content-full {
        flex: 1 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 16px !important;
        height: auto !important;
        max-height: none !important;
    }

    .event-popup-header {
        padding: 16px 16px 8px 16px !important;
        margin-top: calc(env(safe-area-inset-top, 0) + 20px) !important;
        
        position: relative !important;
        top: 0 !important;
    }

    .event-popup-cards-section {
        
    }
}

@media (max-width: 480px) {
    .event-popup-container {
        padding: 12px !important;
    }

}

@media (max-width: 699px) {
    
    .event-popup-overlay,
    .event-popup-overlay.event-popup-overlay-flex {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        z-index: 1000 !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
    }

    .event-popup-container,
    .event-popup-container[style] {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        min-height: 100vh !important;
        min-width: 100vw !important;
        padding: 16px !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        z-index: 1010 !important;
    }
}

.event-popup-scroll-content {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    max-height: none;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.event-popup-scroll-content-full {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    max-height: none;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.event-popup-scroll-content-full {
    display: flex;
    flex-direction: column;
}
    
    .event-popup-scroll-content-full > .event-popup-card,
    .event-popup-scroll-content-full > .event-bookinginfo-card,
    .event-popup-scroll-content-full > .event-checkout-card,
    .event-popup-scroll-content-full > .event-pickatime-customer-info-card {
        flex: 1 0 auto;
        min-height: 100%;
    }

    .event-popup-scroll-content-full > .event-confirmation-card {
        flex: 1 0 auto;
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

.event-confirmation-card .event-confirmation-booking-details {
    flex: 0 0 auto;
}

.event-popup-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0rem 0 0;
    gap: 0.4rem;
    width: 100%;
    height: auto;
    margin-top: 0.2rem;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}

.event-popup-header-row {
    display: block;
    width: 100%;
}

.event-popup-title {
    width: 14rem;
    height: 2.1875rem;
    font-family: 'Arvo';
    font-style: normal;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2.1875rem;
    color: #007B7C;
}

.event-popup-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.event-popup-step {
    font-size: 0.9rem;
    line-height: 1.5;
    vertical-align: middle;
    display: flex;
    align-items: center;
    height: 1.5em;
}

.event-popup-step-arrow {
    margin: 0 0.25rem;
    color: #b0b0b0;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.5;
    vertical-align: middle;
    display: flex;
    align-items: center;
    height: 1.5em;
}

.event-popup-step.active {
    font-family: Futura;
    font-weight: 500;
    color: #242143;
}

.event-popup-step.inactive {
    font-family: Futura;
    font-weight: 500;
    color: rgba(36, 33, 67, 0.4);
}

.event-popup-divider {
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(36, 33, 67, 0.4);
    margin: 1rem 0 0.5rem 0;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    display: block !important;
}

@media (max-width: 600px) {
    .event-popup-divider {
        margin: 0.5rem 0 1rem 0;
        width: 100%;
        max-width: 100%;
    }
}

.event-popup-card {
    background: #E5F4E7;
    border-radius: 12px;
    
    padding: 1rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
    height: auto;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.event-popup-card-image {
    width: 100%;
    height: 140px;
    background: #fff no-repeat center/cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.event-popup-card-title {
    font-family: 'Arvo';
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.375rem;
    color: #242143;
    margin-bottom: 0.25rem;
}

.event-popup-card-desc {
    font-family: 'Futura';
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.1875rem;
    color: #242143;
    margin-bottom: 1.25rem;
}

.event-popup-card-btn {
    white-space: nowrap;
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .event-popup-card-btn span, .event-popup-card-btn-text {
        white-space: nowrap;
        width: auto;
        display: inline-block;
    }

.event-popup-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: flex-start;
    margin-top: 0;
}

.event-popup-card-price-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.event-popup-card-price {
    font-family: 'Arvo';
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.875rem;
    color: #F57121;
}

.event-popup-card-to-book {
    font-family: 'Arvo';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #242143;
    white-space: nowrap; 
    display: inline-block;
}

.event-popup-card-btn-partydetails {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 120px;
    height: 3.25rem;
    padding: 0.75rem 1.5rem;
    background: #007B7C;
    border-radius: 8px;
    color: #fff;
    font-family: 'Futura';
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    
    line-height: 19px;
    letter-spacing: 0;
    border: none;
    cursor: pointer;
    margin: 0 auto 0 auto;
    align-self: center;
    
    transition: background 0.2s;
    white-space: nowrap;
    text-align: center;
}

    .event-popup-card-btn-partydetails:hover {
        background: #005f60;
    }

.event-popup-card-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 242px;
    min-width: 120px;
    height: 2.5rem;
    padding: 0.75rem 1.5rem;
    background: #007B7C;
    border-radius: 8px;
    color: #fff;
    font-family: 'Futura';
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    border: none;
    cursor: pointer;
    margin: 0 auto 0 auto;
    align-self: center;
    
    transition: background 0.2s;
    white-space: nowrap;
    text-align: center;
}

    .event-popup-card-btn span, .event-popup-card-btn-text {
        width: auto;
        display: inline-block;
    }

    .event-popup-card-btn:hover {
        background: #005f60;
    }

.invisible {
    display: none !important;
}

@media (max-width: 1200px) {
    .event-popup-container {
        
        left: 0;
        transform: none;
    }
}

@media (max-width: 600px) {
    .event-popup-card-footer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .event-popup-card-price-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }

    .event-popup-card-btn {
        width: auto;
        max-width: 249px;
        min-width: 120px;
        padding: 0.75rem 1.5rem;
        margin: 0;
        align-self: center;
        text-align: center;
    }

        .event-popup-card-btn span {
            white-space: nowrap;
        }

    .event-popup-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
        min-width: 0;
        min-height: 0;
        padding: 0;
        border-radius: 0;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .event-popup-cards-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-height: none;
        padding-right: 0;
    }

    .event-popup-card {
        width: 100%;
        min-width: 0;
        padding: 0.75rem 0.5rem;
        font-size: 14px;
    }

    .event-popup-card-title {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    .event-popup-card-desc {
        font-size: 0.9rem;
        line-height: 1.1rem;
    }

    .event-popup-card-btn {
        width: 100%;
        min-width: 0;
        height: 44px;
        font-size: 15px;
        padding: 10px 0;
    }

        .event-popup-card-btn:hover {
            background: #005f60;
        }

        .event-popup-card-btn span, .event-popup-card-btn-text {
            width: 100%;
            font-size: 15px;
            height: auto;
        }

    .event-popup-header {
        padding: 0.25rem 0.25rem 0 0;
        gap: 0.25rem;
    }

    .event-popup-title {
        font-size: 1.2rem;
    }

    .event-popup-steps {
        font-size: 0.95rem;
        gap: 0.25rem;
        margin-top: 0.15rem;
        margin-bottom: 0.15rem;
    }

    .event-popup-divider {
        width: 100%;
        margin: 0.15rem 0 0.25rem 0;
    }

    .event-popup-scroll-content {
        flex: 1;
        max-height: none;
        padding-bottom: 0 !important; 
        -webkit-overflow-scrolling: touch;
    }

    .event-popup-sticky-footer {
        position: sticky;
        bottom: 0;
        width: 100%;
        z-index: 2000;
        background: #fff;
        
        box-shadow: 0px -6px 24px 0px rgba(36, 33, 67, 0.16);
        padding: 0.75rem 0rem 0.75rem 0rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;

        padding-bottom: calc(0rem + env(safe-area-inset-bottom, 0) + 0px);
    }

    .event-popup-scroll-content {
        padding-bottom: 90px !important;
    }

    .event-popup-scroll-content-has-sticky {
        padding-bottom: 160px !important;
    }
    
    .event-popup-steps, .event-popup-divider {
        display: none !important;
    }
    
    .event-popup-header-row {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.5rem 0 0.5rem 0.5rem;
    }

        .event-popup-header-row .event-popup-header-back-arrow {
            color: #179189;
            font-size: 2rem;
            font-weight: bold;
            margin-right: 0.5rem;
            cursor: pointer;
            line-height: 1;
        }

    .event-popup-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #007B7C;
        line-height: 1.8rem;
        display: flex;
        align-items: center;
        
    }

    .event-popup-header-row img[src*='arrowleft'] {
        width: 12px;
        height: 16px;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        top: -5px;
        margin-right: 10px;
    }

    .event-popup-title {
        display: inline-block;
        vertical-align: middle;
    }
}

.event-popup-detail-right-panel {
    
    border-radius: 12px;
    
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

    .event-popup-detail-right-panel img {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .event-popup-detail-right-panel .event-popup-back-btn {
        margin-bottom: 1rem;
    }

    .event-popup-detail-right-panel .event-popup-card-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: #f57121;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .event-popup-detail-right-panel .event-popup-card-to-book {
        font-size: 1rem;
        font-weight: 400;
        color: #242143;
        margin-left: 0.25rem;
    }

    .event-popup-detail-right-panel .event-popup-card-btn {
        width: 100%;
        min-width: 0;
        margin: 1rem 0 0 0;
    }

    .event-popup-detail-right-panel .event-popup-back-btn {
        font-family: Futura;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 3.25rem !important;
        line-height: 2.5rem !important;
        padding: 0 !important;
        width: 100% !important;
        border-radius: 8px !important;
        margin: 0rem auto 0 auto !important;
    }

        .event-popup-detail-right-panel .event-popup-back-btn:hover {
            
            background: #242143 !important;
            color: #FFFFFF !important;
        }

.event-popup-detail-left-panel {
    padding: 1.5rem 1rem 1.5rem 1.5rem;
}

.event-popup-detail-section-title {
    font-family: 'Arvo';
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
}

.event-popup-detail-section-subtitle {
    font-family: 'Futura';
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-popup-detail-list {
    margin: 0 0 1rem 0;
    padding-left: 0;
    list-style: none;
}

    .event-popup-detail-list li {
        margin-bottom: 0.5rem;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 0;
        position: relative;
        padding-left: 0;
        background: none;
        font-family: 'Futura';
        font-weight: 500;
        font-style: normal;
        color: inherit;
        letter-spacing: normal;
        border-radius: 0;
        padding: 0;
    }

.event-popup-detail-asterisk {
    color: #f57121;
    font-weight: bold;
    margin-right: 0.3em;
    font-size: inherit;
}

.event-popup-detail-term,
.event-popup-detail-reserve {
    font-family: 'Futura';
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
}

@media (max-width: 900px) {
    .event-popup-card.d-flex.flex-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .event-popup-detail-left-panel,
    .event-popup-detail-right-panel {
        padding: 0rem 0.5rem;
    }

    .event-popup-detail-right-panel {
        margin-top: 1rem;
        margin-bottom: 0;
    }

    .event-popup-container {
        
        padding: 0.5rem 0.5rem;
    }

    .event-popup-cards-section {
        gap: 1rem 0.5rem;
    }

    .event-popup-card {
        padding: 0.5rem 0.25rem;
        font-size: 0.95rem;
    }

    .event-popup-header {
        padding: 0 0.5rem 0 0;
        gap: 0.2rem;
    }

    .event-popup-card-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0.5rem;
        height: 44px;
    }

    .event-popup-detail-right-panel img:last-child {
        margin-bottom: 20px !important;
    }
}

.event-popup-scroll-content-has-sticky {
    padding-bottom: 90px !important;
}

@media (min-width: 601px) {
    .event-popup-scroll-content-has-sticky {
        padding-bottom: 1rem !important;
    }
}

.event-popup-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 5; 
}

@media (min-width: 768px) {
    .event-popup-card-btn,
    .event-popup-back-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        
        height: 3.25rem;
        padding: 0;
        font-size: 1rem;
        line-height: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .event-popup-header-row.party-detail-active {
        white-space: normal !important;
        word-break: break-word !important;
        margin-bottom: 25px;
    }

    .event-popup-detail-right-panel img {
        margin-top: 0.5rem;
    }
}

@media (max-width: 600px) {
    .event-popup-sticky-footer-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
        padding: 0;
    }

        .event-popup-sticky-footer-row .event-popup-sticky-footer-left {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 4px;
            flex: 1 1 auto;
            min-width: 0;
        }

        .event-popup-sticky-footer-row .event-popup-card-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #F57121;
            white-space: nowrap;
            margin-right: 0;
            display: inline;
        }

        .event-popup-sticky-footer-row .event-popup-card-to-book {
            font-size: 1rem;
            color: #242143;
            font-weight: 400;
            white-space: nowrap;
            margin-right: 0;
            display: inline;
        }

        .event-popup-sticky-footer-row .event-popup-card-btn {
            flex: 1 1 50%;
            max-width: 50%;
            min-width: 100px;
            margin: 0;
            height: 44px;
            font-size: 1rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            box-sizing: border-box;
            padding-left: 0;
            padding-right: 0;
        }
}

@media (max-width: 699px) {
    .event-popup-back-btn.d-none.d-md-block {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .event-popup-back-btn.d-none.d-md-block {
        display: flex !important;
    }
}

.event-popup-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 2rem 2rem 2rem;
    isolation: isolate;
    position: fixed;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    
    height: auto;
    
    width: 93vw;
    max-width: 64rem;
    
    background: #fff;
    border-radius: 1rem;
    z-index: 1010;
    box-sizing: border-box;
    min-height: 90vh;
}

.event-popup-card {
    background: #E5F4E7;
    border-radius: 12px;

    padding: 2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
    height: auto;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.event-popup-card-decor-top-left {
    position: relative;
    top: -17px;
    left: -15px;
    width: 38px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.event-popup-card-decor-top-right {
    position: absolute;
    top: 70px;
    right: 15px;
    width: 41px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.event-popup-detail-bg-bottom-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 340px;
    height: 130px;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transform: rotate(0deg);
}

.event-popup-card, .event-popup-detail-left-panel {
    color: #000;
    text-shadow: 0 1px 4px rgba(255,255,255,0.5);
}

.event-customer-info-form-bg {
    background: #e6f4ec;
    border-radius: 16px;
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    position: relative;
    min-height: 500px;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
}

@media (max-width: 768px) {
    .event-customer-info-bg-img {
        width: 220px;
        height: 80px;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: none;
        right: auto;
        top: auto;
    }
}

@media (max-width: 480px) {
    .event-customer-info-bg-img {
        width: 120px;
        height: 40px;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: none;
        right: auto;
        top: auto;
    }
}

.event-customer-info-form-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.event-customer-info-breadcrumbs {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: center;
}

.breadcrumb-link {
    color: #2ca6a4;
    cursor: pointer;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #201944;
    font-weight: bold;
}

.event-customer-info-form-container h2 {
    font-family: 'Arvo';
    font-weight: bold;
    color: #201944;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .event-popup-card-decor-top-right {
        top: 49px;
        right: 2px;
    }

    .event-customer-info-form-bg {
        border-radius: 0;
        min-height: 400px;
        width: 100vw;
        margin-left: -50vw;
        left: 50%;
        right: 50%;
        max-width: 100vw;
    }

    .event-customer-info-bg-img {
        width: 220px;
        height: 80px;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: none;
        right: auto;
        top: auto;
    }

    .event-customer-info-form-container {
        padding: 0;
    }

    .row > .col-md-6 {
        flex: 0 0 100%;
        width: 100%;
    }

    .event-customer-info-breadcrumbs {
        display: none !important;
    }

    .event-customer-info-back-arrow {
        display: inline-block;
        color: #201944;
        font-weight: bold;
        margin-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .event-customer-info-form-bg {
    }

    .event-customer-info-bg-img {
        width: 120px;
        height: 40px;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: none;
        right: auto;
        top: auto;
    }
}

.validation-message {
    color: #d9534f;
    font-size: 0.95rem;
    margin-top: 0.1rem;
}

.event-customer-info-form-bg.fill-popup {
    background: #e6f4ec;
    border-radius: 16px;
    padding: 2rem 2.5rem 2.5rem 2.5rem;
    width: 100%;
    min-height: 100%;
    max-width: 100%;
    margin: 0;
    left: 0;
    right: 0;
}

.event-customer-info-form-container.no-margin {
    max-width: 100%;
    margin: 0;
    padding: 0px;
}

.event-customer-info-section-title {
    font-family: 'Arvo';
    font-size: 1.5rem;
    font-weight: bold;
    color: #201944;
    margin-bottom: 1.2rem;
}

.event-customer-info-label {
    font-family: 'Futura';
    font-size: 1.1rem;
    font-weight: 500;
    color: #242143;
    margin-bottom: 0.3rem;
}

.event-customer-info-label-pick {
    font-family: 'Futura';
    font-size: 1.1rem;
    font-weight: 500;
    color: grey;
    margin-bottom: 0.3rem;
}

.event-customer-info-minimumbooking {
    font-family: 'Futura';
    font-size: 1.1rem;
    font-weight: 500;
    color: grey;
    margin-bottom: 0.3rem;
}

.event-customer-info-input,

input.input-validation-error {
    font-family: 'Futura';
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #fff;
    padding: 0.7rem 1rem;
    background: #fff;
    width: auto;
    margin-bottom: 0 !important;
}

input.event-customer-info-input:focus-visible {
    font-family: 'Futura';
    font-size: 1rem; 
    border-radius: 8px;
    border: 1px solid #006666;
    padding: 0.7rem 1rem;
    background: #fff;
    width: 100%;
    margin-bottom: 0 !important;
    outline: none !important;
    
}

.event-customer-info-input::placeholder {
    font-size: 1rem;
}

.event-customer-info-input:focus::placeholder,
input.event-customer-info-input:focus-visible::placeholder {
    font-size: 1rem;
}

.event-customer-info-input:focus,
input.event-customer-info-input:focus {
    border-color: #006666 !important;
    outline: none !important;
    
}

.event-customer-info-input.input-validation-error,
input.event-customer-info-input.input-validation-error {
    border-color: #d9534f;
    
}

.event-customer-info-divider {
    border: none;
    border-top: 1px solid #242143;
    width: 936px;
    max-width: 100%;
    height: 0;
    opacity: 1;
    margin: 1.2rem 0 1.2rem 0;
    border-width: 1px;
}

.event-customer-info-divider-party-details {
    border: none;
    border-top: 1px solid #242143;
    width: 936px;
    max-width: 100%;
    height: 0;
    opacity: 1;
    margin: 1.5rem 0 0rem 0; 
    border-width: 1px;
}

.event-customer-info-divider-checkout {
    border: none;
    border-top: 1px solid #242143;
    width: 936px;
    max-width: 100%;
    height: 0;
    opacity: 1;
    margin: 1.5rem 0 0rem 0; 
    border-width: 1px;
}

@media (max-width: 768px) {
    .event-customer-info-divider-party-details {
        margin: 1rem 0 1rem 0; 
    }

    .event-customer-info-divider-checkout {
        margin: 1rem 0 1.2rem 0; 
    }
}

.event-customer-info-booking-row {
    max-width: 260px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .event-customer-info-booking-row .event-customer-info-input {
        width: 100%;
        margin-bottom: 0.5rem;
    }

.event-customer-info-btn-row {
    display: flex;
    flex-direction: row;
    gap: 0.7rem;
    width: 100%;
    margin-top: 0.5rem;
    justify-content: flex-start;
}

.event-customer-info-btn, .event-customer-info-btn.primary, .event-customer-info-btn.outline {
    width: 50%;
    min-width: 0;
    box-sizing: border-box;
    font-family: 'Futura';
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 2rem;
    height: 3.25rem;
    letter-spacing: 0;
    border-radius: 6px;
    padding: 0.7rem 0;
    text-align: center;
}

    .event-customer-info-btn.primary {
        background: #0b8c87;
        color: #fff;
        border: 2px solid #0b8c87;
        position: relative;
        z-index: 1;
    }

        .event-customer-info-btn.primary:hover {
            
            background: #005f60;
            
            border: 2px solid #005f60;
            position: relative;
            z-index: 1;
        }

    .event-customer-info-btn.outline {
        background: #fff;
        color: #201944;
        border: 2px solid #201944;
    }

        .event-customer-info-btn.outline:hover {
            background: #f2f2f2;
        }

.event-customer-info-divider {
    border: none;
    border-top: 2px solid #d6e7de;
    margin: 0.7rem 0 2rem 0;
    width: 100%;
}

.event-customer-info-divider-new {
    
    border: 1px solid rgba(36, 33, 67, 0.4);
    margin: 0.7rem 0 2rem 0;
    width: 100%;
}

.event-popup-scroll-content-full {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

    .event-popup-scroll-content-full > .event-customer-info-card,
    .event-popup-scroll-content-full > .event-confirmation-card {
        flex: 0 0 auto;
        min-height: auto;
    }

@media (max-width: 768px) {
    .event-popup-scroll-content-full {
        height: auto;
        max-height: none;
        overflow-y: visible;
    }
}

.event-customer-info-card {
    background: #e6f4ec;
    border-radius: 16px;
    padding: 2rem 2rem 2.5rem 2rem;
    margin: 0 auto 1.5rem auto;
    max-width: 420px;
    box-shadow: none;
}

@media (max-width: 768px) {
    .event-customer-info-card {
        padding: 1.2rem 0.7rem 2rem 0.7rem;
        margin: 0 0.5rem 1.2rem 0.5rem;
        max-width: 100%;
        overflow-y: auto;
        max-height: calc(100vh - 200px);
        -webkit-overflow-scrolling: touch;
    }

    .event-customer-info-form-container {
        padding: 0;
    }

    .event-customer-info-section-title {
        font-size: 1.15rem;
        margin-bottom: 0.7rem;
        font-family: 'Arvo';
        font-weight: bold;
        color: #201944;
        text-align: left;
    }

    .event-customer-info-input {
        width: 100%;
        margin-bottom: 0rem;
    }

    .event-customer-info-btn.primary.w-100 {
        margin-top: 0.5rem;
        font-family: 'Futura';
        font-weight: 500;
        font-style: normal;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
        border-radius: 8px;
        padding: 0.9rem 0;
    }
}

@media (max-width: 768px) {
    .event-popup-header-row {
        white-space: nowrap;
    }

    .event-customer-info-divider {
        border: none;
        border-top: 1px solid #242143;
        width: 100%;
        height: 0;
        opacity: 1;
        margin: 0.05rem 0 0.7rem 0;
        border-width: 1px;
    }

    .event-customer-info-divider-new {
        
        border: 1px solid rgba(36, 33, 67, 0.4);
        width: 100%;
        height: 0;
        opacity: 1;
        margin: 0.05rem 0 1.5rem 0;
        border-width: 1px;
    }
}

@media (max-width: 768px) {
    .event-customer-info-card {
        padding-bottom: 4.5rem;
        
        max-width: 100%;
        margin: 0 auto;
        
        overflow-y: auto;
        max-height: calc(100vh - 200px);
        -webkit-overflow-scrolling: touch;
    }
}

.event-pickatime-flex-container {
    display: flex;
    gap: 1.5rem; 
    justify-content: center;
    align-items: stretch; 
    border-radius: 16px;
    padding: 1rem; 
}

.event-popup-container .event-pickatime-flex-container {
    margin-left: 0;
    margin-right: 0;
}

.event-pickatime-calendar-card, .event-pickatime-times-card {
    width: 456px;
    height: 446px;
    border-radius: 8px !important;
    padding: 12px; 
    opacity: 1;
    background: #fff;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 0 0 auto;
    overflow: visible; 
}

@media (max-width: 699px) {
    .event-pickatime-flex-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        background: none;
        padding: 0;
    }

    .event-pickatime-calendar-card, .event-pickatime-times-card {
        width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        padding: 16px !important;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }

    .event-pickatime-scroll-content {
        padding-bottom: 180px !important;
    }

    .event-customer-info-btn, .event-customer-info-btn.primary, .event-customer-info-btn.outline {
        width: 100% !important;
        min-width: 120px !important;
        margin-bottom: 0.5rem;
        font-family: 'Futura';
        font-weight: 500;
        font-style: normal;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
    }

    .event-customer-info-sticky-footer {
        position: sticky;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1050;
        background: #fff;

        box-shadow: 0px -6px 24px 0px rgba(36, 33, 67, 0.16);
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        bottom: 0;
        padding-bottom: 1.2rem;
        
        bottom: env(safe-area-inset-bottom, 0);
        padding-bottom: calc(0rem + env(safe-area-inset-bottom, 0) + 0px);
    }

    .event-customer-info-bg-img {
        z-index: 1;
    }
}

@media (max-width: 699px) {
    .event-pickatime-back-btn {
        display: none !important;
    }

    .event-customer-info-card.event-customer-info-form-bg.fill-popup {

        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(36,33,67,0.08);
        padding: 2rem 1.5rem 2.5rem 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-sizing: border-box;
        overflow-y: auto;
        max-height: calc(100vh - 200px);
        -webkit-overflow-scrolling: touch;
    }

    @media (max-width: 900px) {
        .event-customer-info-card.event-customer-info-form-bg.fill-popup {
            padding: 1rem 0.5rem 2rem 0.5rem;
            margin: 0 0 0.5rem 0;
            min-height: 320px;
            max-width: 100%;
            box-sizing: border-box;
            overflow-y: auto;
            max-height: calc(100vh - 200px);
            -webkit-overflow-scrolling: touch;
        }
    }

    .event-popup-container {
        border-radius: 20px;
        overflow: visible;
        
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .event-customer-info-sticky-footer {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1050;
        background: #fff;

        box-shadow: 0px -6px 24px 0px rgba(36, 33, 67, 0.16);
        width: 100%;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        box-sizing: border-box;
        
        padding-bottom: 1.2rem;
        
        padding-bottom: calc(0rem + env(safe-area-inset-bottom, 0));
        
        max-width: 420px;
        margin: 0 auto;
    }

        .event-customer-info-sticky-footer .event-customer-info-btn.primary.w-100 {
            width: 100% !important;
            min-width: 120px !important;
            margin-bottom: 0;
            height: 48px;
            font-family: 'Futura';
            font-weight: 500;
            font-style: normal;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0;
            border-radius: 8px;
            padding: 0.9rem 0;
            box-sizing: border-box;
            background: #0b8c87;
            color: #fff;
            border: 2px solid #0b8c87;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .event-popup-scroll-content-full {

    }

    .event-customer-info-card.event-customer-info-form-bg.fill-popup {
        position: relative;
        padding-bottom: 2rem;
        overflow: visible;
    }
}

@media (max-width: 699px) {
    .event-customer-info-bg-img-mobile {
        position: absolute !important;
        left: 0 !important;
        bottom: -300px !important;
        width: auto !important;
        height: 100px !important;
        margin: 0 !important;
        max-width: none !important;
        object-fit: contain;
        border: none !important;
        transform: none !important;
        right: auto !important;
        top: auto !important;
    }

    .event-customer-info-bg-img-mobile-booking-info,
    .event-customer-info-bg-img-mobile-confirmation {
        position: absolute !important;
        left: 0 !important;
        
        width: auto !important;
        height: 88px !important;
        margin: 0 !important;
        max-width: none !important;
        object-fit: contain;
        border: none !important;
        transform: none !important;
        right: auto !important;
        top: auto !important;
        opacity: 0.5;
    }

    .event-customer-info-bg-img-mobile-checkout {
        position: absolute !important;
        left: 0 !important;
        
        width: auto !important;
        height: 75px !important;
        margin: 0 !important;
        max-width: none !important;
        object-fit: contain;
        border: none !important;
        transform: none !important;
        right: auto !important;
        top: auto !important;
        opacity: 0.5;
    }
    
    .mb-mobile-extra {
        margin-bottom: 3.5rem !important;
    }

    .event-customer-info-divider {
        margin: 0.1rem 0 1.1rem 0 !important;
        
    }

    .event-customer-info-card.event-customer-info-form-bg.fill-popup {
        margin-top: 0 !important;
        
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        
        overflow-y: auto;
        max-height: calc(100vh - 200px);
        -webkit-overflow-scrolling: touch;
    }

    .event-customer-info-sticky-footer {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-bottom: 20px;
    }
}

@media (max-width: 699px) {
    .event-popup-overlay {
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    .event-popup-container {
        position: fixed !important;
        inset: 0 !important; 
        transform: none !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .event-popup-header,
    .event-popup-header-row {
        padding: 0 !important;
    }

    .event-popup-scroll-content,
    .event-popup-scroll-content-full {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

}

@media (max-width: 600px) {
    .event-popup-card.d-flex.flex-row {
        width: 100% !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }

    .event-popup-detail-left-panel,
    .event-popup-detail-right-panel {
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .event-popup-detail-right-panel {
        margin-bottom: 0 !important;
        margin-top: 0rem !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        align-items: stretch !important;
        padding: 0rem !important;
    }

    .event-popup-sticky-footer-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.5rem !important;
    }

        .event-popup-sticky-footer-row .event-popup-card-btn {
            max-width: 100% !important;
            min-width: 0 !important;
            width: 100% !important;
            margin: 0 !important;
            border-radius: 8px !important;
            font-size: 1.1rem !important;
            height: 44px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            white-space: nowrap !important;
        }

        .event-popup-sticky-footer-row .event-popup-sticky-footer-left {
            justify-content: flex-start !important;
            gap: 0.5rem !important;
            width: 100% !important;
        }

    .event-popup-header-row {
        padding-right: 2.5rem !important;
    }
}

@media (max-width: 400px) {
    .event-popup-card-btn {
        font-size: 0.95rem !important;
        padding: 0.5rem 0.25rem !important;
        height: 38px !important;
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
    }

    .event-popup-sticky-footer .event-popup-card-btn {
        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
        padding: 0 1.5rem !important;
        line-height: 38px !important;
        box-sizing: border-box !important;
    }

        .event-popup-card-btn:hover {
            background: #242143;
            color: #FFFFFF;
        }

        .event-popup-card-btn span, .event-popup-card-btn-text {
            font-size: 0.95rem !important;
            width: 100% !important;
            white-space: normal !important;
            word-break: break-word !important;
            text-align: center !important;
            display: block !important;
        }

    .event-popup-card-footer {
        
        gap: 0.5rem !important;
        align-items: stretch !important;
    }

    .event-popup-card.d-flex.flex-row .event-popup-scroll-content {
        flex: 1 !important;
        max-height: none !important;
        padding-bottom: 70px !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .event-popup-card.d-flex.flex-row {
        flex: 1 !important;
        max-height: none !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

@media (max-width: 600px) {
    .event-popup-container {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        gap: 0 !important;
        padding-top: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
        border-radius: 0 !important;
    }

    .event-popup-header {
        gap: 0 !important;
        margin-bottom: 0 !important;
    }

    .event-popup-cards-section .event-popup-card,
    .event-customer-info-card.event-customer-info-form-bg.fill-popup {
        margin-top: 0 !important;
        padding: 1.2rem;
    }

    .event-customer-info-divider {
        margin-top: 0 !important;
        margin-bottom: 0.7rem !important;
    }
}

.event-customer-info-card .event-customer-info-divider {
    border-top: 1px solid #242143 !important;
    opacity: 1;
}

.event-popup-back-btn,
.event-customer-info-btn.outline {
    background: #e5f4e7 !important;
    color: #201944 !important;
    border: 2px solid #201944 !important;
}

    .event-popup-back-btn:hover,
    .event-customer-info-btn.outline:hover {
        background: #242143 !important;
        color: #fff !important;
        border-color: #201944 !important;
        position: relative;
        z-index: 1;
    }

@media (max-width: 600px) {
    
    .event-popup-cards-section .event-popup-card {
        padding: 1rem;
        margin-top: 0.3rem !important;
    }

    .event-customer-info-card.event-customer-info-form-bg.fill-popup {
        margin-top: 0.3rem !important;
    }
    
    .event-customer-info-divider {
        margin-top: 0.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .event-popup-card.d-flex.flex-row {
        margin-top: 1rem !important;
    }
}

@media (max-width: 600px) {
    .event-popup-scroll-content {
        padding-bottom: 0.5rem !important;
    }

    .event-popup-card.d-flex.flex-row .event-popup-scroll-content {
        overflow-y: auto !important;
        flex: 1 !important;
        max-height: none !important;
        padding-bottom: 80px !important; 
        -webkit-overflow-scrolling: touch !important;
    }

    .event-popup-card.d-flex.flex-row {
        overflow-y: auto !important;
        flex: 1 !important;
        max-height: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .event-popup-card-decor-top-right {
        display: none !important;
    }

    .event-popup-detail-left-panel,
    .event-popup-detail-right-panel {
        overflow-y: visible !important; 
        max-height: none !important; 
    }
}

.event-popup-detail-content {
    font-family: 'Futura';
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

    .event-popup-detail-content h2 {
        font-family: 'Arvo';
        font-weight: 700;
        font-size: 18px;
        color: black;
        margin: 20px 0 10px 0;
    }

        .event-popup-detail-content h2:first-child {
            margin-top: 0;
        }

    .event-popup-detail-content ul {
        list-style: none;
        padding: 0;
        margin: 10px 0;
    }

    .event-popup-detail-content li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

        .event-popup-detail-content li:before {
            content: "";
            background-image: url('../images/asticksvg.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: absolute;
            left: 0;
            top: 4px;
            width: 11.74px;
            height: 15.11px;
            opacity: 1;
        }

    .event-popup-detail-content p {
        margin: 8px 0;
    }

@supports (-webkit-touch-callout: none) {
    .event-popup-close-btn {
        width: 2rem !important;
        height: 2rem !important;
        right: 0.50rem !important;
        top: 0.50rem !important;
    }

    .event-popup-close-btn-icon {
        font-size: 1.5rem !important;
        width: 1.5rem !important;
        height: 1.5rem !important;
    }
}

.event-popup-scroll-content,
.event-popup-scroll-content-full,
.event-popup-cards-section {
    
    scrollbar-width: thin; 
    scrollbar-color: transparent transparent; 
    -ms-overflow-style: none; 
}

    .event-popup-scroll-content::-webkit-scrollbar,
    .event-popup-scroll-content-full::-webkit-scrollbar,
    .event-popup-cards-section::-webkit-scrollbar {
        width: 1px;
        background: transparent;
    }

    .event-popup-scroll-content::-webkit-scrollbar-track,
    .event-popup-scroll-content-full::-webkit-scrollbar-track,
    .event-popup-cards-section::-webkit-scrollbar-track {
        background: transparent;
    }

    .event-popup-scroll-content::-webkit-scrollbar-thumb,
    .event-popup-scroll-content-full::-webkit-scrollbar-thumb,
    .event-popup-cards-section::-webkit-scrollbar-thumb {
        background: transparent; 
        border-radius: 4px;
    }

    .event-popup-scroll-content:hover,
    .event-popup-scroll-content-full:hover,
    .event-popup-cards-section:hover {
        scrollbar-color: auto; 
        -ms-overflow-style: auto; 
    }

        .event-popup-scroll-content:hover::-webkit-scrollbar-thumb,
        .event-popup-scroll-content-full:hover::-webkit-scrollbar-thumb,
        .event-popup-cards-section:hover::-webkit-scrollbar-thumb {
            background: initial; 
        }

        .event-popup-scroll-content:hover::-webkit-scrollbar-track,
        .event-popup-scroll-content-full:hover::-webkit-scrollbar-track,
        .event-popup-cards-section:hover::-webkit-scrollbar-track {
            background: initial; 
        }

@media (max-width: 699px) {
    .event-popup-container {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: min(430px, 100vw) !important;
        height: min(1242px, 100vh) !important;
        max-width: 100vw !important;
        max-height: 100vh !important;

        padding: 24px !important;
        opacity: 1 !important;
        background: #fff !important;
        overflow: hidden !important;
    }
}

@media (max-width: 430px) {
    .event-customer-info-bg-img-mobile {
        bottom: -390px !important;
    }

    .event-popup-detail-content .event-card-details > .event-detail-row:first-of-type {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

        .event-popup-detail-content .event-card-details > .event-detail-row:first-of-type > .d-flex {
            margin-right: 0 !important;
        }

            .event-popup-detail-content .event-card-details > .event-detail-row:first-of-type > .d-flex:last-of-type {
                margin-top: 0.25rem !important;
            }

    .event-popup-sticky-footer {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

        .event-popup-sticky-footer .event-popup-card-footer {
            gap: 0.5rem !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            width: 100% !important;
            overflow: hidden !important;
        }

        .event-popup-sticky-footer .event-popup-card-price-group {
            flex-shrink: 1 !important;
            min-width: 0 !important;
            max-width: calc(100% - 140px) !important;
        }

        .event-popup-sticky-footer .event-popup-card-price {
            font-size: 1.125rem !important;
        }

        .event-popup-sticky-footer .event-popup-card-to-book {
            font-size: 0.8125rem !important;
        }

        .event-popup-sticky-footer .event-popup-card-btn {
            
            height: 38px !important;
            min-height: 38px !important;
            max-height: 38px !important;
            padding: 0 1.5rem !important;
            line-height: 38px !important;
            font-size: 0.8125rem !important;
            white-space: nowrap !important;
            text-overflow: ellipsis !important;
            box-sizing: border-box !important;
        }
}

@supports (height: 1dvh) {
    @media screen and (hover:none) and (pointer:coarse) and (min-width:768px) and (max-width:1366px) and (orientation: portrait) {
        .event-popup-container {
            min-height: 64dvh;
            max-height: 64dvh;
            
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
        }
    }

    @media screen and (hover:none) and (pointer:coarse) and (min-width:768px) and (max-width:1366px) and (orientation: landscape) {
        .event-popup-container {
            min-height: 64dvh;
            max-height: 75dvh;
            
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
        }
    }
}

.event-cards-section {
    width: 100%;
    padding-right: 0.6rem !important;
}

.event-popup-scroll-content:has(.event-cards-section) {
    padding-left: 0;
    padding-right: 0;
}

.event-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    width: 100%;
}

.event-card-divider {
    width: 100%;
    height: 0;
    border: none;
    border-top: 1px solid rgba(36, 33, 67, 0.4);
    margin: 0 0 1rem 0;
    padding: 0;
    opacity: 0.5;
    box-sizing: border-box;
}

.event-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    flex-wrap: wrap;
}

    .event-detail-row > .d-flex {
        gap: 0.5rem;
    }

        .event-detail-row > .d-flex:not(:last-child):not(.ms-auto) {
            margin-right: 1.5rem;
        }

@media screen and (hover:none) and (pointer:coarse) and (min-width:768px) and (max-width:1366px) {
    .event-cards-section .event-card-details .event-detail-row > .d-flex:not(:last-child):not(.ms-auto) {
        margin-right: 0.375rem !important;
    }
}

.event-detail-icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    object-fit: contain;
}

.event-detail-icon-right {
    margin-left: auto;
}

.event-popup-scroll-content-events {
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    max-height: none;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
    .event-cards-section {
        width: 100%;
        padding-right: 0rem !important;
    }

    .event-card-details {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .event-detail-row {
        gap: 0.375rem;
    }

    .event-detail-icon {
        width: 14px;
        height: 14px;
    }

    .event-detail-text {
        font-size: 0.8rem;
        line-height: 1.1rem;
    }

    .event-detail-icon-right {
        margin-left: 0;
    }
}

.event-quantity-group {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0;
    gap: 0;
    width: 180px;
    justify-content: space-around;
}

.event-quantity-btn {
    width: 32px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 0;
    font-size: 20px;
    font-weight: bold;
    color: #201944;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

    .event-quantity-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .event-quantity-btn:first-child {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    .event-quantity-btn:last-child {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

.event-quantity-input {
    width: 60px;
    height: 44px;
    border: none;
    border-radius: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #201944;
    background: #fff;
    padding: 0;
    margin: 0;
    outline: none;
}

    .event-quantity-input:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

.event-popup-container .event-quantity-input {
    -moz-appearance: textfield;
    appearance: textfield;
}

    .event-popup-container .event-quantity-input::-webkit-inner-spin-button,
    .event-popup-container .event-quantity-input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.event-popup-container .event-quantity-btn {
    transition: none;
}

    .event-popup-container .event-quantity-btn:hover:not(:disabled) {
        background: transparent;
        border-color: transparent;
    }

.event-fee-price {
    font-family: 'Futura';
    font-size: 1rem;
    font-weight: 500;
    color: #242143;
    margin-left: 0.5rem;
}
/* ============================= */
/* Desktop / Web (1024px and above)
   → Label on top (COLUMN layout)
*/
/* ============================= */
@media (min-width: 700px) {
    .add-attend-form {
        display: flex;
        flex-direction: column;
    }

        .add-attend-form .event-fee-description-label {
            margin-bottom: 0.5rem;
            margin-right: 0;
        }

        .add-attend-form .event-quantity-price-row {
            display: flex;
            align-items: center;
        }
}


/* ============================= */
/* Tablet + Mobile (below 1024px)
   → Label and quantity in a ROW
*/
/* ============================= */
/*@media (max-width: 1023px) {
    .add-attend-form {
        gap:1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

        .add-attend-form .event-fee-description-label {
            display: inline-block;
            margin-bottom: 0;
            margin-right: 0.75rem;
            min-width: 90px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .add-attend-form .event-quantity-price-row {
            display: flex;
            align-items: center;
            flex: 1;
        }
}*/

/* Web/Desktop only (excludes iPad and mobile): Label on top of quantity group */
/* Using min-width: 1280px to ensure it only applies to desktop screens, not tablets */
/*@media (min-width: 1024px) {
    .add-attend-form {
        display: flex;
        flex-direction: column;
    }

    .add-attend-form .event-fee-description-label {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }

    .add-attend-form .event-quantity-price-row {
        display: flex;
        align-items: center;
    }
}*/

/* Explicitly exclude tablets/iPads - ensure row layout */
/*@media (min-width: 750px) and (max-width: 1279px) {
    .add-attend-form {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
    }

    .add-attend-form .event-fee-description-label {
        display: inline-block !important;
        margin-bottom: 0 !important;
        margin-right: 0.75rem !important;
        min-width: 90px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .add-attend-form .event-quantity-price-row {
        display: flex;
        align-items: center;
        flex: 1;
    }
}*/

@media (max-width: 768px) {
    .event-quantity-group {
        border-radius: 8px;
    }

    .event-quantity-btn {
        width: 28px;
        height: 44px;
        font-size: 1rem;
    }

    .event-quantity-input {
        width: 50px;
        height: 36px;
        font-size: 0.9rem;
    }

    .event-fee-price {
        font-size: 12px;
        margin-left: 0rem !important;
        padding-top: 5px;
    }
}

.event-attendee-validation-container {
    min-height: 2.5rem;
    margin-top: 3.1rem;
}

.event-attendee-validation-message {
    font-family: 'Futura';
    color: #d9534f;
    font-size: 0.95rem;
    font-weight: 400;
    background: none;
    border: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    white-space: nowrap;
}

html, body {
    overflow-x: hidden;
}

@supports (-webkit-touch-callout: none) {
    
    body.event-popup-open {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100vw;
        max-height: 100vh;
        
        touch-action: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
        
        body.event-popup-open + html,
        html.event-popup-open {
            overflow: hidden;
            -webkit-overflow-scrolling: touch;
            touch-action: none;
        }
    
    .event-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(51, 51, 51, 0.56);
        z-index: 1000;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100vw;
        max-height: 100vh;
        
        touch-action: pan-y;
        -webkit-touch-callout: none;
    }
    
    .event-popup-container {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 67.5rem;
        height: 90vh;
        max-height: 90vh;
        background: #fff;
        border-radius: 1rem;
        z-index: 1010;
        overflow: hidden; 
        display: flex;
        flex-direction: column;
        -webkit-overflow-scrolling: touch;
        
        top: calc(50% + env(safe-area-inset-top, 0) / 2);
        height: calc(90vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
        max-height: calc(90vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
        
        -webkit-transform: translate(-50%, -50%) translateZ(0);
        transform: translate(-50%, -50%) translateZ(0);
        
        max-width: calc(90vw - env(safe-area-inset-left, 0) - env(safe-area-inset-right, 0));
        width: calc(90vw - env(safe-area-inset-left, 0) - env(safe-area-inset-right, 0));
        
        touch-action: pan-y;
    }
    
    .event-popup-scroll-content,
    .event-popup-scroll-content-full {
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        flex: 1; 
        max-height: none; 
        height: auto;
        
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100%;
        width: 100%;
        
        touch-action: pan-y;
        
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    
    .event-popup-cards-section {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100%;
        width: 100%;
        
        touch-action: pan-y;
        -webkit-touch-callout: none;
    }
    
    .event-popup-sticky-footer,
    .event-customer-info-sticky-footer {
        position: sticky;
        bottom: 0;
        background: #fff;
        z-index: 2000;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100%;
        width: 100%;
        
        touch-action: pan-y;
        -webkit-touch-callout: none;
    }
    
    iframe {
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
        
        max-width: 100%;
        width: 100%;
        
        touch-action: pan-y;
        -webkit-touch-callout: none;
    }
    
    .event-popup-overlay-flex {
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        
        max-width: 100vw;
        max-height: 100vh;
        
        touch-action: pan-y;
        -webkit-touch-callout: none;
    }

    .event-popup-container img {
        margin-bottom: 7px;
        margin-right: 6px;
        max-width: 100%;
        height: auto;
        
        -webkit-touch-callout: none;
    }
    
    .event-popup-container {
        word-wrap: break-word;
        overflow-wrap: break-word;
        
        overscroll-behavior: contain;
    }
    
    .event-popup-container,
    .event-popup-overlay,
    .event-popup-scroll-content,
    .event-popup-scroll-content-full {
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    
    @media (max-width: 600px) {
        .event-popup-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            transform: none;
            width: 100vw;
            max-width: 100vw;
            height: calc(100vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
            max-height: calc(100vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
            padding: 0;
            border-radius: 0;
        }
    }
}

.event-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(51, 51, 51, 0.56);
    
    z-index: 1000;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    background: transparent !important;
}

@media (max-width: 699px) {
    body, html {
        overflow: hidden !important;
        position: fixed !important;
        width: 100vw !important;
        height: 100vh !important;
    }
}

#bookingFrame .event-popup-overlay-flex {
    background: transparent !important;
}

.event-popup-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.3rem 1.5rem;
    gap: 1.2rem;
    isolation: isolate;
    position: fixed;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 93vw;
    
    max-width: 64rem;
    height: auto;
    max-height: 90vh;
    background: #fff;
    border-radius: 1rem;
    z-index: 1010;
    overflow: hidden;
    box-sizing: border-box;
    
    top: calc(2rem + env(safe-area-inset-top, 0));
    max-height: calc(90vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
}

@media (max-width: 699px) {
    .event-popup-container {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        padding: 16px !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        z-index: 1010 !important;
        
        min-height: 100vh !important;
        min-width: 100vw !important;
    }

    .event-popup-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        z-index: 1000 !important;
        
        min-width: 100vw !important;
        min-height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
    }

    .event-popup-scroll-content,
    .event-popup-scroll-content-full {
        flex: 1 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 16px !important;
        height: auto !important;
        max-height: none !important;
    }

    .event-popup-header {
        padding: 16px 16px 8px 16px !important;
        margin-top: calc(env(safe-area-inset-top, 0) + 20px) !important;
        
        position: relative !important;
        top: 0 !important;
    }

    .event-popup-cards-section {
        
    }
}

@media (max-width: 480px) {
    .event-popup-container {
        padding: 12px !important;
    }

}

@media (max-width: 699px) {
    
    .event-popup-overlay,
    .event-popup-overlay.event-popup-overlay-flex {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        z-index: 1000 !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
    }

    .event-popup-container,
    .event-popup-container[style] {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        min-height: 100vh !important;
        min-width: 100vw !important;
        padding: 16px !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        z-index: 1010 !important;
    }
}

.event-popup-scroll-content {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    max-height: none;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.event-popup-scroll-content-full {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    max-height: none;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.event-popup-scroll-content-full {
    display: flex;
    flex-direction: column;
}
    
    .event-popup-scroll-content-full > .event-popup-card,
    .event-popup-scroll-content-full > .event-bookinginfo-card,
    .event-popup-scroll-content-full > .event-checkout-card,
    .event-popup-scroll-content-full > .event-pickatime-customer-info-card {
        flex: 1 0 auto;
        min-height: 100%;
    }

    .event-popup-scroll-content-full > .event-confirmation-card {
        flex: 1 0 auto;
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

.event-confirmation-card .event-confirmation-booking-details {
    flex: 0 0 auto;
}

.event-popup-header-row {
    display: block;
    width: 100%;
}

.event-popup-title {
    width: 14rem;
    height: 2.1875rem;
    font-family: 'Arvo';
    font-style: normal;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2.1875rem;
    color: #007B7C;
}

.event-popup-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.22rem;
}

.event-popup-step {
    font-size: 0.9rem;
    line-height: 1.5;
    vertical-align: middle;
    display: flex;
    align-items: center;
    height: 1.5em;
}

.event-popup-step-arrow {
    margin: 0 0.25rem;
    color: #b0b0b0;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.5;
    vertical-align: middle;
    display: flex;
    align-items: center;
    height: 1.5em;
}

.event-popup-step.active {
    font-family: Futura;
    font-weight: 500;
    color: #242143;
}

.event-popup-step.inactive {
    font-family: Futura;
    font-weight: 500;
    color: rgba(36, 33, 67, 0.4);
}

.event-popup-step-active {
    font-family: Futura;
    font-weight: 500;
    color: #242143;
}

.event-popup-step-inactive {
    font-family: Futura;
    font-weight: 500;
    color: rgba(36, 33, 67, 0.4);
    cursor: pointer;
}

.event-popup-step-non-clickable {
    cursor: default !important;
}

.event-popup-step.inactive:not(.event-popup-step-inactive) {
    cursor: default;
}

.event-popup-header-nowrap {
    white-space: nowrap;
}

.event-popup-arrow-left {
    width: 12px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.event-popup-divider {
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(36, 33, 67, 0.4);
    margin: 1rem 0 0.5rem 0;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    display: block !important;
}

@media (max-width: 600px) {
    .event-popup-divider {
        margin: 0.5rem 0 1rem 0;
        width: 100%;
        max-width: 100%;
    }
}

.event-popup-cards-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: min-content;
    gap: 1.5rem 1.5rem;
    width: 100%;
    overflow-x: hidden;
    padding-right: 0rem;
    position: relative;
}

.event-popup-card {
    background: #E5F4E7;
    border-radius: 12px;
    
    padding: 1rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
    height: auto;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.event-popup-card-image {
    width: 100%;
    height: 140px;
    background: #fff no-repeat center/cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.event-popup-card-title {
    font-family: 'Arvo';
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.375rem;
    color: #242143;
    margin-bottom: 0.25rem;
}

.event-popup-card-desc {
    font-family: 'Futura';
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.1875rem;
    color: #242143;
    margin-bottom: 1.25rem;
}

.event-popup-card-btn {
    white-space: nowrap;
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .event-popup-card-btn span, .event-popup-card-btn-text {
        white-space: nowrap;
        width: auto;
        display: inline-block;
    }

.event-popup-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: flex-start;
    margin-top: 0;
}

.event-popup-card-price-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.event-popup-card-price {
    font-family: 'Arvo';
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.875rem;
    color: #F57121;
}

.event-popup-card-to-book {
    font-family: 'Arvo';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #242143;
    white-space: nowrap; 
    display: inline-block;
}

.event-popup-card-btn-partydetails {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 120px;
    height: 3.25rem;
    padding: 0.75rem 1.5rem;
    background: #007B7C;
    border-radius: 8px;
    color: #fff;
    font-family: 'Futura';
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    
    line-height: 19px;
    letter-spacing: 0;
    border: none;
    cursor: pointer;
    margin: 0 auto 0 auto;
    align-self: center;
    
    transition: background 0.2s;
    white-space: nowrap;
    text-align: center;
}

    .event-popup-card-btn-partydetails:hover {
        background: #005f60;
    }

.event-popup-card-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    min-width: 120px;
    height: 2.5rem;
    padding: 0.75rem 1.5rem;
    background: #007B7C;
    border-radius: 8px;
    color: #fff;
    font-family: 'Futura';
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    border: none;
    cursor: pointer;
    margin: 0 auto 0 auto;
    align-self: center;
    
    transition: background 0.2s;
    white-space: nowrap;
    text-align: center;
}

    .event-popup-card-btn span, .event-popup-card-btn-text {
        width: auto;
        display: inline-block;
    }

    .event-popup-card-btn:hover {
        background: #005f60;
    }

.invisible {
    display: none !important;
}

@media (max-width: 1200px) {
    .event-popup-container {
        
        left: 0;
        transform: none;
    }
}

@media (max-width: 600px) {
    .event-popup-card-footer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .event-popup-card-price-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }

    .event-popup-card-btn {
        width: auto;
        max-width: 249px;
        min-width: 120px;
        padding: 0.75rem 1.5rem;
        margin: 0;
        align-self: center;
        text-align: center;
    }

        .event-popup-card-btn span {
            white-space: nowrap;
        }

    .event-popup-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
        min-width: 0;
        min-height: 0;
        padding: 0;
        border-radius: 0;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .event-popup-cards-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-height: none;
        padding-right: 0;
    }

    .event-popup-card {
        width: 100%;
        min-width: 0;
        padding: 0.75rem 0.5rem;
        font-size: 14px;
    }

    .event-popup-card-title {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    .event-popup-card-desc {
        font-size: 0.9rem;
        line-height: 1.1rem;
    }

    .event-popup-card-btn {
        width: 100%;
        min-width: 0;
        height: 44px;
        font-size: 15px;
        padding: 10px 0;
    }

        .event-popup-card-btn:hover {
            background: #005f60;
        }

        .event-popup-card-btn span, .event-popup-card-btn-text {
            width: 100%;
            font-size: 15px;
            height: auto;
        }

    .event-popup-header {
        padding: 0.25rem 0.25rem 0 0;
        gap: 0.25rem;
    }

    .event-popup-title {
        font-size: 1.2rem;
    }

    .event-popup-steps {
        font-size: 0.95rem;
        gap: 0.25rem;
        margin-top: 0.15rem;
        margin-bottom: 0.15rem;
    }

    .event-popup-divider {
        width: 100%;
        margin: 0.15rem 0 0.25rem 0;
    }

    .event-popup-scroll-content {
        flex: 1;
        max-height: none;
        padding-bottom: 0 !important; 
        -webkit-overflow-scrolling: touch;
    }

    .event-popup-sticky-footer {
        position: sticky;
        bottom: 0;
        width: 100%;
        z-index: 2000;
        background: #fff;
        
        box-shadow: 0px -6px 24px 0px rgba(36, 33, 67, 0.16);
        padding: 0.75rem 0rem 0.75rem 0rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;

        padding-bottom: calc(0rem + env(safe-area-inset-bottom, 0) + 0px);
    }

    .event-popup-scroll-content {
        padding-bottom: 90px !important;
    }

    .event-popup-scroll-content-has-sticky {
        padding-bottom: 160px !important;
    }
    
    .event-popup-steps, .event-popup-divider {
        display: none !important;
    }
    
    .event-popup-header-row {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.5rem 0 0.5rem 0.5rem;
    }

        .event-popup-header-row .event-popup-header-back-arrow {
            color: #179189;
            font-size: 2rem;
            font-weight: bold;
            margin-right: 0.5rem;
            cursor: pointer;
            line-height: 1;
        }

    .event-popup-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #007B7C;
        line-height: 1.8rem;
        display: flex;
        align-items: center;

    }

    .event-popup-header-row img[src*='arrowleft'] {
        width: 12px;
        height: 16px;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        top: -5px;
        margin-right: 10px;
    }

    .event-popup-title {
        display: inline-block;
        vertical-align: middle;
    }
}

.event-popup-detail-right-panel {
    min-width: 304px;
    
    border-radius: 12px;
    
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

    .event-popup-detail-right-panel img {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .event-popup-detail-right-panel .event-popup-back-btn {
        margin-bottom: 1rem;
    }

    .event-popup-detail-right-panel .event-popup-card-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: #f57121;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .event-popup-detail-right-panel .event-popup-card-to-book {
        font-size: 1rem;
        font-weight: 400;
        color: #242143;
        margin-left: 0.25rem;
    }

    .event-popup-detail-right-panel .event-popup-card-btn {
        width: 100%;
        min-width: 0;
        margin: 1rem 0 0 0;
        
        height: 52px;
    }

    .event-popup-detail-right-panel .event-popup-back-btn {
        font-family: Futura;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 3.25rem !important;
        line-height: 2.5rem !important;
        padding: 0 !important;
        width: 100% !important;
        border-radius: 8px !important;
        margin: 0rem auto 0 auto !important;
    }

        .event-popup-detail-right-panel .event-popup-back-btn:hover {
            
            background: #242143 !important;
            color: #FFFFFF !important;
        }

.event-popup-detail-left-panel {
    padding: 0;
}

.event-popup-detail-section-title {
    font-family: 'Arvo';
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
}

.event-popup-detail-section-subtitle {
    font-family: 'Futura';
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-popup-detail-list {
    margin: 0 0 1rem 0;
    padding-left: 0;
    list-style: none;
}

    .event-popup-detail-list li {
        margin-bottom: 0.5rem;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 0;
        position: relative;
        padding-left: 0;
        background: none;
        font-family: 'Futura';
        font-weight: 500;
        font-style: normal;
        color: inherit;
        letter-spacing: normal;
        border-radius: 0;
        padding: 0;
    }

.event-popup-detail-asterisk {
    color: #f57121;
    font-weight: bold;
    margin-right: 0.3em;
    font-size: inherit;
}

.event-popup-detail-term,
.event-popup-detail-reserve {
    font-family: 'Futura';
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
}

@media (max-width: 900px) {
    .event-popup-card.d-flex.flex-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .event-popup-detail-left-panel,
    .event-popup-detail-right-panel {
        padding: 0rem 0.5rem;
    }

    .event-popup-detail-right-panel {
        margin-top: 1rem;
        margin-bottom: 0;
    }

    .event-popup-container {
        
        padding: 0.5rem 0.5rem;
    }

    .event-popup-cards-section {
        gap: 1rem 0.5rem;
    }

    .event-popup-card {
        padding: 0.5rem 0.25rem;
        font-size: 0.95rem;
    }

    .event-popup-header {
        padding: 0 0.5rem 0 0;
        gap: 0.2rem;
    }

    .event-popup-card-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0.5rem;
        height: 44px;
    }

    .event-popup-detail-right-panel img:last-child {
        margin-bottom: 20px !important;
    }
}

.event-popup-scroll-content-has-sticky {
    padding-bottom: 90px !important;
}

@media (min-width: 601px) {
    .event-popup-scroll-content-has-sticky {
        padding-bottom: 1rem !important;
    }
}

.event-popup-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 5; 
}

@media (min-width: 768px) {
    .event-popup-card-btn
     {
        margin-right: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 220px;
        
        height: 3.25rem;
        padding: 0;
        font-size: 1rem;
        line-height: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .event-popup-header-row.party-detail-active {
        white-space: normal !important;
        word-break: break-word !important;
        margin-bottom: 25px;
    }

    .event-popup-detail-right-panel img {
        margin-top: 0.5rem;
    }
}

@media (max-width: 600px) {
    .event-popup-sticky-footer-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
        padding: 0;
    }

        .event-popup-sticky-footer-row .event-popup-sticky-footer-left {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 4px;
            flex: 1 1 auto;
            min-width: 0;
        }

        .event-popup-sticky-footer-row .event-popup-card-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #F57121;
            white-space: nowrap;
            margin-right: 0;
            display: inline;
        }

        .event-popup-sticky-footer-row .event-popup-card-to-book {
            font-size: 1rem;
            color: #242143;
            font-weight: 400;
            white-space: nowrap;
            margin-right: 0;
            display: inline;
        }

        .event-popup-sticky-footer-row .event-popup-card-btn {
            flex: 1 1 50%;
            max-width: 50%;
            min-width: 100px;
            margin: 0;
            height: 44px;
            font-size: 1rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            box-sizing: border-box;
            padding-left: 0;
            padding-right: 0;
        }
}

@media (max-width: 699px) {
    .event-popup-back-btn.d-none.d-md-block {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .event-popup-back-btn.d-none.d-md-block {
        display: flex !important;
    }
}

.event-popup-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 2rem 2rem 2rem;
    isolation: isolate;
    position: fixed;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    
    height: auto;
    
    width: 93vw;
    max-width: 64rem;
    
    background: #fff;
    border-radius: 1rem;
    z-index: 1010;
    box-sizing: border-box;
    min-height: 90vh;
}

.event-popup-card {
    background: #E5F4E7;
    border-radius: 12px;

    padding: 2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
    height: auto;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.event-popup-card-decor-top-left {
    
    width: 38px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.event-popup-card-decor-top-right {
    position: absolute;
    top: 45px;
    right: 10px;
    width: 41px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.event-popup-detail-bg-bottom-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 340px;
    height: 130px;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transform: rotate(0deg);
}

.event-popup-card, .event-popup-detail-left-panel {
    color: #000;
    text-shadow: 0 1px 4px rgba(255,255,255,0.5);
}

.event-customer-info-form-bg {
    background: #e6f4ec;
    border-radius: 16px;
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    position: relative;
    min-height: 500px;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
}

.event-customer-info-bg-img-mobile {
    position: absolute;
    left: 0;
    bottom: 0;
    width: auto;
    height: 100px;
    margin: 0;
    max-width: none;
    object-fit: contain;
    border: none;
    transform: none;
    right: auto;
    top: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .event-customer-info-bg-img {
        width: 220px;
        height: 80px;
        position: absolute;
        left: 0;
        bottom: -80px;
        transform: none;
        right: auto;
        top: auto;
    }
}

@media (max-width: 480px) {
    .event-customer-info-bg-img {
        width: 120px;
        height: 40px;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: none;
        right: auto;
        top: auto;
    }
}

.event-customer-info-form-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.event-customer-info-breadcrumbs {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: center;
}

.breadcrumb-link {
    color: #2ca6a4;
    cursor: pointer;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #201944;
    font-weight: bold;
}

.event-customer-info-form-container h2 {
    font-family: 'Arvo';
    font-weight: bold;
    color: #201944;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .event-popup-card-decor-top-right {
        top: 49px;
        right: 2px;
    }

    .event-customer-info-form-bg {
        border-radius: 0;
        min-height: 400px;
        width: 100vw;
        margin-left: -50vw;
        left: 50%;
        right: 50%;
        max-width: 100vw;
    }

    .event-customer-info-bg-img {
        width: 220px;
        height: 80px;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: none;
        right: auto;
        top: auto;
    }

    .event-customer-info-form-container {
        padding: 0;
    }

    .event-customer-info-breadcrumbs {
        display: none !important;
    }

    .event-customer-info-back-arrow {
        display: inline-block;
        color: #201944;
        font-weight: bold;
        margin-right: 0.5rem;
    }
}
.event-customer-info-form-bg.fill-popup {
    background: #e5f4e7 url('../../images/termsbackgroundsvg.svg') no-repeat;
    background-position: left bottom;
}
@media (max-width: 480px) {
    .event-customer-info-form-bg {
    }

    .event-customer-info-bg-img {
        width: 120px;
        height: 40px;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: none;
        right: auto;
        top: auto;
    }
}
    
    .validation-message {
    color: #d9534f;
    font-size: 0.95rem;
    margin-top: 0.1rem;
}

.event-customer-info-form-bg.fill-popup {
    background: #e5f4e7 url('../../images/termsbackgroundsvg.svg') no-repeat;
    background-position: left bottom;

    border-radius: 16px;
    padding: 2rem 2.5rem 2.5rem 2.5rem;
    width: 100%;
    min-height: 100%;
    max-width: 100%;
    margin: 0;
    left: 0;
    right: 0;
}

.event-customer-info-form-container.no-margin {
    max-width: 100%;
    margin: 0;
    padding: 0px;
}

.event-customer-info-section-title {
    font-family: 'Arvo';
    font-size: 1.5rem;
    font-weight: bold;
    color: #201944;
    margin-bottom: 1.2rem;
}

.event-customer-info-label {
    font-family: 'Futura';
    font-size: 1.1rem;
    font-weight: 500;
    color: #242143;
    margin-bottom: 0.3rem;
}

.event-customer-info-label-pick {
    font-family: 'Futura';
    font-size: 1.1rem;
    font-weight: 500;
    color: grey;
    margin-bottom: 0.3rem;
}

.event-customer-info-minimumbooking {
    font-family: 'Futura';
    font-size: 1.1rem;
    font-weight: 500;
    color: grey;
    margin-bottom: 0.3rem;
}

.event-customer-info-input,

input.input-validation-error {
    font-family: 'Futura';
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #fff;
    padding: 0.7rem 1rem;
    background: #fff;
    width: 100%;
    margin-bottom: 0 !important;
}

input.event-customer-info-input:focus-visible {
    font-family: 'Futura';
    font-size: 1rem; 
    border-radius: 8px;
    border: 1px solid #006666;
    padding: 0.7rem 1rem;
    background: #fff;
    width: 100%;
    margin-bottom: 0 !important;
    outline: none !important;
    
}

.event-customer-info-input::placeholder {
    font-size: 1rem;
}

.event-customer-info-input:focus::placeholder,
input.event-customer-info-input:focus-visible::placeholder {
    font-size: 1rem;
}

.event-customer-info-input:focus,
input.event-customer-info-input:focus {
    border-color: #006666 !important;
    outline: none !important;
    
}

.event-customer-info-input.input-validation-error,
input.event-customer-info-input.input-validation-error {
    border-color: #d9534f;
    
}

.event-customer-info-divider {
    border: none;
    border-top: 1px solid #242143;
    width: 936px;
    max-width: 100%;
    height: 0;
    opacity: 1;
    margin: 1.2rem 0 1.2rem 0;
    border-width: 1px;
}

.event-customer-info-divider-party-details {
    border: none;
    border-top: 1px solid #242143;
    width: 936px;
    max-width: 100%;
    height: 0;
    opacity: 1;
    margin: 1.5rem 0 0rem 0; 
    border-width: 1px;
}

.event-customer-info-divider-checkout {
    border: none;
    border-top: 1px solid #242143;
    width: 936px;
    max-width: 100%;
    height: 0;
    opacity: 1;
    margin: 1.5rem 0 0rem 0; 
    border-width: 1px;
}

@media (max-width: 768px) {
    .event-customer-info-divider-party-details {
        margin: 1rem 0 1rem 0; 
    }

    .event-customer-info-divider-checkout {
        margin: 1rem 0 1.2rem 0; 
    }
}

.event-customer-info-booking-row {
    max-width: 260px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .event-customer-info-booking-row .event-customer-info-input {
        width: 100%;
        margin-bottom: 0.5rem;
    }

.event-customer-info-btn-row {
    display: flex;
    flex-direction: row;
    gap: 0.7rem;
    width: 100%;
    margin-top: 0.5rem;
    justify-content: flex-start;
}

.event-customer-info-btn, .event-customer-info-btn.primary, .event-customer-info-btn.outline {
    width: 50%;
    min-width: 0;
    box-sizing: border-box;
    font-family: 'Futura';
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 1rem;
    height: 3.25rem;
    letter-spacing: 0;
    border-radius: 6px;
    padding: 0.7rem 0;
    text-align: center;
}

    .event-customer-info-btn.primary {
        background: #0b8c87;
        color: #fff;
        border: 2px solid #0b8c87;
        position: relative;
        z-index: 1;
    }

        .event-customer-info-btn.primary:hover {
            
            background: #005f60;
            
            border: 2px solid #005f60;
            position: relative;
            z-index: 1;
        }

    .event-customer-info-btn.outline {
        background: #fff;
        color: #201944;
        border: 2px solid #201944;
    }

        .event-customer-info-btn.outline:hover {
            background: #f2f2f2;
        }

.event-customer-info-divider-new {
    
    border: 1px solid rgba(36, 33, 67, 0.32);
    margin: 0.7rem 0 2rem 0;
    width: 100%;
}

.event-popup-scroll-content-full {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

    .event-popup-scroll-content-full > .event-customer-info-card,
    .event-popup-scroll-content-full > .event-confirmation-card {
        flex: 0 0 auto;
        min-height: auto;
    }

@media (max-width: 768px) {
    .event-popup-scroll-content-full {
        height: auto;
        max-height: none;
        overflow-y: visible;
    }
}

.event-customer-info-card {
    background: #e6f4ec;
    border-radius: 16px;
    padding: 2rem 2rem 2.5rem 2rem;
    margin: 0 auto 1.5rem auto;
    max-width: 420px;
    box-shadow: none;
}

@media (max-width: 699px) {
    .event-customer-info-card {
        padding: 1.2rem 0.7rem 2rem 0.7rem;
        margin: 0 0.5rem 1.2rem 0.5rem;
        max-width: 100%;
        overflow-y: auto;
        max-height: calc(100vh - 200px);
        -webkit-overflow-scrolling: touch;
    }

    .event-customer-info-form-container {
        padding: 0;
    }

    .event-customer-info-section-title {
        font-size: 1.15rem;
        margin-bottom: 0.7rem;
        font-family: 'Arvo';
        font-weight: bold;
        color: #201944;
        text-align: left;
    }

    .event-customer-info-input {
        width: 100%;
        margin-bottom: 0rem;
    }

    .event-customer-info-btn.primary.w-100 {
        margin-top: 0.5rem;
        font-family: 'Futura';
        font-weight: 500;
        font-style: normal;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
        border-radius: 8px;
        padding: 0.9rem 0;
    }
}

@media (max-width: 699px) {
    .event-popup-header-row {
        white-space: nowrap;
    }

    .event-customer-info-divider {
        border: none;
        border-top: 1px solid #242143;
        width: 100%;
        height: 0;
        opacity: 0.4;
        margin: 0.05rem 0 0.7rem 0;
        border-width: 1px;
    }

    .event-customer-info-divider-new {
        
        border: 1px solid rgba(36, 33, 67, 0.4);
        width: 100%;
        height: 0;
        opacity: 1;
        margin: 0.05rem 0 1.5rem 0;
        border-width: 1px;
    }
}

@media (max-width: 768px) {
    .event-customer-info-card {
        padding-bottom: 4.5rem;
        
        max-width: 100%;
        margin: 0 auto;
        
        overflow-y: auto;
        max-height: calc(100vh - 200px);
        -webkit-overflow-scrolling: touch;
    }
}

.event-pickatime-flex-container {
    display: flex;
    gap: 1.5rem; 
    justify-content: center;
    align-items: stretch; 
    border-radius: 16px;
    padding: 1rem; 
}

.event-popup-container .event-pickatime-flex-container {
    margin-left: 0;
    margin-right: 0;
}

.event-pickatime-calendar-card, .event-pickatime-times-card {
    width: 456px;
    height: 446px;
    border-radius: 8px !important;
    padding: 12px; 
    opacity: 1;
    background: #fff;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 0 0 auto;
    overflow: visible; 
}

@media (max-width: 699px) {
    .event-pickatime-flex-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        background: none;
        padding: 0;
    }

    .event-pickatime-calendar-card, .event-pickatime-times-card {
        width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        padding: 16px !important;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }

    .event-pickatime-scroll-content {
        padding-bottom: 180px !important;
    }

    .event-customer-info-btn, .event-customer-info-btn.primary, .event-customer-info-btn.outline {
        width: 100% !important;
        min-width: 120px !important;
        margin-bottom: 0.5rem;
        font-family: 'Futura';
        font-weight: 500;
        font-style: normal;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
    }

    .event-customer-info-sticky-footer {
        position: sticky;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1050;
        background: #fff;

        box-shadow: 0px -6px 24px 0px rgba(36, 33, 67, 0.16);
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        bottom: 0;
        padding-bottom: 1.2rem;
        
        bottom: env(safe-area-inset-bottom, 0);
        padding-bottom: calc(0rem + env(safe-area-inset-bottom, 0) + 0px);
    }

    .event-customer-info-bg-img {
        z-index: 1;
    }
}

@media (max-width: 699px) {
    .event-pickatime-back-btn {
        display: none !important;
    }

    .event-customer-info-card.event-customer-info-form-bg.fill-popup {

        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(36,33,67,0.08);
        padding: 2rem 1.5rem 2.5rem 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-sizing: border-box;
        overflow-y: auto;
        max-height: calc(100vh - 200px);
        -webkit-overflow-scrolling: touch;
    }

    @media (max-width: 900px) {
        .event-customer-info-card.event-customer-info-form-bg.fill-popup {
            padding: 1rem 0.5rem 2rem 0.5rem;
            margin: 0 0 0.5rem 0;
            min-height: 320px;
            max-width: 100%;
            box-sizing: border-box;
            overflow-y: auto;
            max-height: calc(100vh - 200px);
            -webkit-overflow-scrolling: touch;
        }
    }

    .event-popup-container {
        border-radius: 20px;
        overflow: visible;
        
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .event-customer-info-sticky-footer {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1050;
        background: #fff;

        box-shadow: 0px -6px 24px 0px rgba(36, 33, 67, 0.16);
        width: 100%;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        box-sizing: border-box;
        
        padding-bottom: 1.2rem;
        
        padding-bottom: calc(0rem + env(safe-area-inset-bottom, 0));
        
        max-width: 420px;
        margin: 0 auto;
    }

        .event-customer-info-sticky-footer .event-customer-info-btn.primary.w-100 {
            width: 100% !important;
            min-width: 120px !important;
            margin-bottom: 0;
            height: 48px;
            font-family: 'Futura';
            font-weight: 500;
            font-style: normal;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0;
            border-radius: 8px;
            padding: 0.9rem 0;
            box-sizing: border-box;
            background: #0b8c87;
            color: #fff;
            border: 2px solid #0b8c87;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .event-popup-scroll-content-full {

    }

    .event-customer-info-card.event-customer-info-form-bg.fill-popup {
        position: relative;
        padding-bottom: 2rem;
        overflow: visible;
    }
}

    @media (max-width: 699px) {
        .event-customer-info-bg-img-mobile {
            position: absolute !important;
            left: 0 !important;
            bottom: -300px !important;
            width: auto !important;
            height: 100px !important;
            margin: 0 !important;
            max-width: none !important;
            object-fit: contain;
            border: none !important;
            transform: none !important;
            right: auto !important;
            top: auto !important;
        }

        .event-customer-info-bg-img-mobile-booking-info,
        .event-customer-info-bg-img-mobile-confirmation {
            position: absolute !important;
            left: 0 !important;
            
            width: auto !important;
            height: 88px !important;
            margin: 0 !important;
            max-width: none !important;
            object-fit: contain;
            border: none !important;
            transform: none !important;
            right: auto !important;
            top: auto !important;
            opacity: 0.5;
        }

        .event-customer-info-bg-img-mobile-checkout {
            position: absolute !important;
            left: 0 !important;
            
            width: auto !important;
            height: 75px !important;
            margin: 0 !important;
            max-width: none !important;
            object-fit: contain;
            border: none !important;
            transform: none !important;
            right: auto !important;
            top: auto !important;
            opacity: 0.5;
        }
        
        .mb-mobile-extra {
            margin-bottom: 3.5rem !important;
        }

        .event-customer-info-divider {
            margin: 0.1rem 0 1.1rem 0 !important;
            
        }

        .event-customer-info-card.event-customer-info-form-bg.fill-popup {
            margin-top: 0 !important;
            
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            
            overflow-y: auto;
            max-height: calc(100vh - 200px);
            -webkit-overflow-scrolling: touch;
        }

        .event-customer-info-sticky-footer {
            max-width: 100% !important;
            margin: 0 auto !important;
        }
    }

    @media (max-width: 699px) {
        .event-popup-overlay {
            top: 0 !important;
            left: 0 !important;
            width: 100vw !important;
            height: 100vh !important;
            margin: 0 !important;
            padding: 0 !important;
            border-radius: 0 !important;
        }

        .event-popup-container {
            position: fixed !important;
            inset: 0 !important; 
            transform: none !important;
            width: 100vw !important;
            max-width: 100vw !important;
            height: 100vh !important;
            max-height: 100vh !important;
            padding: 0 !important;
            margin: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            overflow: hidden !important;
        }

        .event-popup-header,
        .event-popup-header-row {
            padding: 0 !important;
        }

        .event-popup-scroll-content,
        .event-popup-scroll-content-full {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

    }

    @media (max-width: 600px) {
        .event-popup-card.d-flex.flex-row {
            width: 100% !important;
            max-width: 100vw !important;
            min-width: 0 !important;
            box-sizing: border-box !important;
            margin: 0 !important;
            border-radius: 12px !important;
            overflow: hidden !important;
        }

        .event-popup-detail-left-panel,
        .event-popup-detail-right-panel {
            min-width: 0 !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 0rem !important;
            padding-right: 0rem !important;
        }

        .event-popup-detail-right-panel {
            margin-bottom: 0 !important;
            margin-top: 0rem !important;
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;
            align-items: stretch !important;
            padding: 0rem !important;
        }

        .event-popup-sticky-footer-row {
            flex-direction: column !important;
            align-items: stretch !important;
            gap: 0.5rem !important;
        }

            .event-popup-sticky-footer-row .event-popup-card-btn {
                max-width: 100% !important;
                min-width: 0 !important;
                width: 100% !important;
                margin: 0 !important;
                border-radius: 8px !important;
                font-size: 1.1rem !important;
                height: 44px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                white-space: nowrap !important;
            }

            .event-popup-sticky-footer-row .event-popup-sticky-footer-left {
                justify-content: flex-start !important;
                gap: 0.5rem !important;
                width: 100% !important;
            }

        .event-popup-header-row {
            padding-right: 2.5rem !important;
        }
    }

    @media (max-width: 400px) {
     
            .event-customer-info-card.event-customer-info-form-bg.fill-popup {
                margin-top: 0 !important;
                
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                
                overflow-y: auto;
                max-height: calc(100vh - 300px);
                -webkit-overflow-scrolling: touch;
            }

        .event-popup-card-btn {
            font-size: 0.95rem !important;
            padding: 0.5rem 0.25rem !important;
            height: 38px !important;
            min-width: 0 !important;
            max-width: 100% !important;
            width: 100% !important;
            white-space: normal !important;
            word-break: break-word !important;
            box-sizing: border-box !important;
        }

        .event-popup-sticky-footer .event-popup-card-btn {
            height: 38px !important;
            min-height: 38px !important;
            max-height: 38px !important;
            padding: 0 1.5rem !important;
            line-height: 38px !important;
            box-sizing: border-box !important;
        }

            .event-popup-card-btn:hover {
                background: #242143;
                color: #FFFFFF;
            }

            .event-popup-card-btn span, .event-popup-card-btn-text {
                font-size: 0.95rem !important;
                width: 100% !important;
                white-space: normal !important;
                word-break: break-word !important;
                text-align: center !important;
                display: block !important;
            }

        .event-popup-card-footer {
            
            gap: 0.5rem !important;
            align-items: stretch !important;
        }

        .event-popup-card.d-flex.flex-row .event-popup-scroll-content {
            flex: 1 !important;
            max-height: none !important;
            padding-bottom: 70px !important;
            -webkit-overflow-scrolling: touch !important;
        }

        .event-popup-card.d-flex.flex-row {
            flex: 1 !important;
            max-height: none !important;
            -webkit-overflow-scrolling: touch !important;
        }
    }

    @media (max-width: 600px) {
        .event-popup-container {
            width: 100vw !important;
            max-width: 100vw !important;
            height: 100vh !important;
            max-height: 100vh !important;
            gap: 0 !important;
            padding-top: 0 !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            padding-bottom: 0 !important;
            border-radius: 0 !important;
        }

        .event-popup-header {
            gap: 0 !important;
            margin-bottom: 0 !important;
        }

        .event-popup-cards-section .event-popup-card,
        .event-customer-info-card.event-customer-info-form-bg.fill-popup {
            margin-top: 0 !important;
        }

        .event-customer-info-divider {
            margin-top: 0 !important;
            margin-bottom: 0.7rem !important;
        }
    }

    .event-customer-info-card .event-customer-info-divider {
        border-top: 1px solid #242143 !important;
        opacity: 1;
    }

    .event-popup-back-btn,
    .event-customer-info-btn.outline {
        background: #e5f4e7 !important;
        color: #201944 !important;
        border: 2px solid #201944 !important;
    }

        .event-popup-back-btn:hover,
        .event-customer-info-btn.outline:hover {
            background: #242143 !important;
            color: #fff !important;
            border-color: #201944 !important;
            position: relative;
            z-index: 1;
        }

    @media (max-width: 600px) {
        
        .event-popup-cards-section .event-popup-card {
            padding: 1rem;
            margin-top: 0.3rem !important;
        }

        .event-customer-info-card.event-customer-info-form-bg.fill-popup {
            margin-top: 0.3rem !important;
        }
        
        .event-customer-info-divider {
            margin-top: 0.2rem !important;
            margin-bottom: 0.8rem !important;
        }

    }

    @media (max-width: 600px) {
        .event-popup-scroll-content {
            padding-bottom: 0.5rem !important;
        }

        .event-popup-card.d-flex.flex-row .event-popup-scroll-content {
            overflow-y: auto !important;
            flex: 1 !important;
            max-height: none !important;
            padding-bottom: 80px !important; 
            -webkit-overflow-scrolling: touch !important;
        }

        .event-popup-card.d-flex.flex-row {
            overflow-y: auto !important;
            flex: 1 !important;
            max-height: none !important;
            -webkit-overflow-scrolling: touch !important;
        }

        .event-popup-card-decor-top-right {
            display: none !important;
        }

        .event-popup-detail-left-panel,
        .event-popup-detail-right-panel {
            overflow-y: visible !important; 
            max-height: none !important; 
        }
    }

    .event-popup-detail-content {
        font-family: 'Futura';
        font-size: 14px;
        line-height: 1.5;
        color: #333;
        font-weight: 500;
    }

        .event-popup-detail-content h2 {
            font-family: 'Arvo';
            font-weight: 700;
            font-size: 18px;
            color: black;
            margin: 20px 0 10px 0;
        }

            .event-popup-detail-content h2:first-child {
                margin-top: 0;
            }

        .event-popup-detail-content ul {
            list-style: none;
            padding: 0;
            margin: 10px 0;
        }

        .event-popup-detail-content li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            line-height: 1.4;
        }

            .event-popup-detail-content li:before {
                content: "";
                background-image: url('../../images/asticksvg.svg');
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                position: absolute;
                left: 0;
                top: 4px;
                width: 11.74px;
                height: 15.11px;
                opacity: 1;
            }

        .event-popup-detail-content p {
            margin: 8px 0;
        }

    .event-popup-scroll-content,
    .event-popup-scroll-content-full,
    .event-popup-cards-section {
        
        scrollbar-width: thin; 
        scrollbar-color: transparent transparent; 
        -ms-overflow-style: none; 
    }

        .event-popup-scroll-content::-webkit-scrollbar,
        .event-popup-scroll-content-full::-webkit-scrollbar,
        .event-popup-cards-section::-webkit-scrollbar {
            width: 1px;
            background: transparent;
        }

        .event-popup-scroll-content::-webkit-scrollbar-track,
        .event-popup-scroll-content-full::-webkit-scrollbar-track,
        .event-popup-cards-section::-webkit-scrollbar-track {
            background: transparent;
        }

        .event-popup-scroll-content::-webkit-scrollbar-thumb,
        .event-popup-scroll-content-full::-webkit-scrollbar-thumb,
        .event-popup-cards-section::-webkit-scrollbar-thumb {
            background: transparent; 
            border-radius: 4px;
        }

        .event-popup-scroll-content:hover,
        .event-popup-scroll-content-full:hover,
        .event-popup-cards-section:hover {
            scrollbar-color: auto; 
            -ms-overflow-style: auto; 
        }

            .event-popup-scroll-content:hover::-webkit-scrollbar-thumb,
            .event-popup-scroll-content-full:hover::-webkit-scrollbar-thumb,
            .event-popup-cards-section:hover::-webkit-scrollbar-thumb {
                background: initial; 
            }

            .event-popup-scroll-content:hover::-webkit-scrollbar-track,
            .event-popup-scroll-content-full:hover::-webkit-scrollbar-track,
            .event-popup-cards-section:hover::-webkit-scrollbar-track {
                background: initial; 
            }

    @media (max-width: 699px) {
        .event-popup-container {
            position: fixed !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            width: min(430px, 100vw) !important;
            height: min(1242px, 100vh) !important;
            max-width: 100vw !important;
            max-height: 100vh !important;

            padding: 24px !important;
            opacity: 1 !important;
            background: #fff !important;
            overflow: hidden !important;
        }
    }

    @media (max-width: 430px) {
        .event-customer-info-bg-img-mobile {
            bottom: -600px !important;
           
        }

        .event-popup-detail-content .event-card-details > .event-detail-row:first-of-type {
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 0.5rem !important;
        }

            .event-popup-detail-content .event-card-details > .event-detail-row:first-of-type > .d-flex {
                margin-right: 0 !important;
            }

                .event-popup-detail-content .event-card-details > .event-detail-row:first-of-type > .d-flex:last-of-type {
                    margin-top: 0.25rem !important;
                }

        .event-popup-sticky-footer {
            padding-left: 0.75rem !important;
            padding-right: 0.75rem !important;
            box-sizing: border-box !important;
            overflow-x: hidden !important;
            width: 100% !important;
            max-width: 100vw !important;
        }

            .event-popup-sticky-footer .event-popup-card-footer {
                gap: 0.5rem !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                width: 100% !important;
                overflow: hidden !important;
            }

            .event-popup-sticky-footer .event-popup-card-price-group {
                flex-shrink: 1 !important;
                min-width: 0 !important;
                max-width: calc(100% - 140px) !important;
            }

            .event-popup-sticky-footer .event-popup-card-price {
                font-size: 1.125rem !important;
            }

            .event-popup-sticky-footer .event-popup-card-to-book {
                font-size: 0.8125rem !important;
            }

            .event-popup-sticky-footer .event-popup-card-btn {
                
                padding: 0.9rem 0.75rem !important;
                font-size: 0.8125rem !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
            }
    }

    @supports (height: 1dvh) {
        @media screen and (hover:none) and (pointer:coarse) and (min-width:768px) and (max-width:1366px) and (orientation: portrait) {
            .event-popup-container {
                min-height: 64dvh;
                max-height: 64dvh;
                
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
            }
        }

        @media screen and (hover:none) and (pointer:coarse) and (min-width:768px) and (max-width:1366px) and (orientation: landscape) {
            .event-popup-container {
                min-height: 75dvh;
                max-height: 75dvh;
                
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
            }
        }
    }

    .event-cards-section {
        width: 100%;
        padding-right: 0rem !important;
    }

    .event-popup-scroll-content:has(.event-cards-section) {
        padding-left: 0;
        padding-right: 0;
    }

    .event-card-details {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
        width: 100%;
    }

    .event-card-divider {
        width: 100%;
        height: 0;
        border: none;
        border-top: 1px solid rgba(36, 33, 67, 0.4);
        margin: 0 0 1rem 0;
        padding: 0;
        opacity: 0.5;
        box-sizing: border-box;
    }

    .event-detail-row > .d-flex {
        gap: 0.5rem;
    }

        .event-detail-row > .d-flex:not(:last-child):not(.ms-auto) {
            margin-right: 1.5rem;
        }

    @media screen and (hover:none) and (pointer:coarse) and (min-width:768px) and (max-width:1366px) {
        .event-cards-section .event-card-details .event-detail-row > .d-flex:not(:last-child):not(.ms-auto) {
            margin-right: 0.375rem !important;
        }
    }

    .event-detail-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        object-fit: contain;
    }

    .event-detail-icon-right {
        margin-left: auto;
    }

    .event-detail-text {
        font-family: 'Futura';
        font-weight: 500;
        font-size: 16px;
        line-height: 1.1875rem;
        color: #242143;
        flex: 1;
        min-width: 0;
    }

    .event-popup-scroll-content-events {
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        flex: 1;
        max-height: none;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    @media (max-width: 600px) {
        .event-cards-section {
            width: 100%;
            padding-right: 0rem !important;
        }

        .event-card-details {
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .event-detail-row {
            gap: 0.375rem;
        }

        .event-detail-icon {
            width: 23px;
            height: 16px;
        }

        .event-detail-text {
            font-size: 0.72rem;
            line-height: 1.1rem;
        }

        .event-detail-icon-right {
            margin-left: 0;
        }
    }

    .event-quantity-group {
        display: flex;
        align-items: center;
        background: #fff;
        border: 1px solid #fff;
        border-radius: 8px;
        padding: 0;
        gap: 0;
    }

    .event-quantity-btn {
        width: 32px;
        height: 44px;
        border: none;
        background: transparent;
        border-radius: 0;
        font-size: 22px;
        font-weight: bold;
        color: #201944;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        line-height: 1;
        transition: all 0.2s ease;
        margin-top: -3px;
    }

        .event-quantity-btn:hover:not(:disabled) {
            background: #e6f4ec;
            border-color: #0b8c87;
        }

        .event-quantity-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .event-quantity-btn:first-child {
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .event-quantity-btn:last-child {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .event-quantity-input {
        width: 60px;
        height: 44px;
        border: none;
        border-radius: 0;
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        color: #201944;
        background: #fff;
        padding: 0;
        margin: 0;
        outline: none;
    }

        .event-quantity-input:focus {
            border: none;
            outline: none;
            box-shadow: none;
        }

    .event-fee-price {
        font-family: 'Futura';
        font-size: 1rem;
        font-weight: 500;
        color: #242143;
        margin-left: 0.5rem;
    }

    @media (max-width: 768px) {
        /* Disable scrolling on mobile */
        .event-popup-scroll-content,
        .event-popup-scroll-content-full {
            overflow-y: visible !important;
            overflow-x: hidden !important;
            -webkit-overflow-scrolling: auto !important;
        }
        
        .event-quantity-group {
            border-radius: 8px;
        }

        .event-quantity-btn {
            width: 28px;
            height: 36px;
            font-size: 1rem;
        }

        .event-quantity-input {
            width: 50px;
            height: 26px;
            font-size: 0.9rem;
        }

        .event-fee-price {
            font-size: 12px;
            margin-left: 0 !important;
            margin-top: 0.5rem !important;
            margin-right: 0 !important;
            text-align: left !important;
            display: block !important;
            width: 100%;
        }
        
        /* Override Bootstrap margin classes on mobile */
        .event-fee-price.ms-2,
        .event-fee-price.ms-md-3 {
            margin-left: 0.5rem !important;
        }

        /* Mobile: Price below textbox, left-aligned */
        .add-attend-form .event-quantity-price-row {
            flex-direction: column !important;
            align-items: flex-start !important;
            justify-content: flex-start;
            text-align: left !important;
        }
        
        /* Description should not be cut - allow wrapping */
        .add-attend-form .event-fee-description-label {
            white-space: normal !important;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }
    }

    .ml-10 {
        margin-left: 10px;
    }

    .event-address {
        display: block;
    }

    .add-atted .event-customer-info-label {
        margin: 0 0 0.3rem 0;
    }

    @media (max-width: 699px) {
        /* Disable scrolling on mobile */
        .event-popup-scroll-content,
        .event-popup-scroll-content-full {
            overflow-y: visible !important;
            overflow-x: hidden !important;
            -webkit-overflow-scrolling: auto !important;
        }
        
        .add-atted {
            display: grid;
            gap: 20px;
            grid-template-columns: 1fr 1fr;
            align-items: start;
            overflow: visible;
        }

            .add-atted .add-attend-form {
                flex-direction: column;
                align-items: flex-start !important;
                text-align: left !important;
                display: flex;
                height: 100%;
            }
            
            .add-atted .event-quantity-group {
                width: 100%;
            }

            .add-atted .event-customer-info-label,
            .add-atted .event-fee-description-label {
                width: 100%;
                margin-left: 0px;
                margin-bottom: 0.5rem;
                font-size: 16px;
                line-height: 1.4em;
                display: block;
            }
            
            /* Balanced height: enough for 2 lines but not excessive for 1 line */
            .add-atted .event-fee-description-label {
                min-height: 2.4em; /* Slightly more than 1 line (1.4em), less than 2 full lines (2.8em) */
                max-height: 3em; /* Cap at 2 lines */
            }

            .add-atted .event-quantity-group {
                justify-content: space-evenly;
            }

            /* Mobile: Price below textbox, left-aligned */
            .add-atted .event-quantity-price-row {
                flex-direction: column !important;
                align-items: flex-start;
                justify-content: flex-start;
                text-align: left !important;
                margin-top: 0.5rem; /* Consistent spacing from label */
            }

            .add-atted .event-fee-price {
                margin-left: 0 !important;
                margin-top: 0.5rem !important;
                margin-right: 0 !important;
                text-align: left !important;
                display: block !important;
                width: 100%;
            }
            
            /* Override Bootstrap margin classes on mobile */
            .add-atted .event-fee-price.ms-2,
            .add-atted .event-fee-price.ms-md-3 {
                margin-left: 0 !important;
            }
            
            /* Description should not be cut - allow wrapping */
            .add-atted .event-fee-description-label {
                white-space: normal !important;
                word-wrap: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
            }

        .event-popup-card-btn {
            flex-shrink: inherit !important;
            width: 100%;
            min-width: inherit !important;
            max-width: inherit !important;
        }

        .event-attendee-validation-message-mobile {
            white-space: normal;
            font-family: 'Futura';
            color: #d9534f;
            font-size: 0.95rem;
            font-weight: 400;
            background: none;
            border: none;
            padding: 0;
            margin-top: 0.1rem;
            margin-bottom: 0;
        }

        .event-attendee-validation-message {
            display: none !important;
        }

        .event-attendee-validation-container {
            display: none !important;
        }

        .event-quantity-group {
            padding: 3px 0 6px 0;
        }

        .event-customer-info-form-container.no-margin {
            padding: 0 15px;
        }

        .event-customer-info-sticky-footer .event-customer-info-label {
            font-size: 1rem;
            font-weight: 700;
        }
    }

    @media (max-width: 1024px) {
        .ipad-w50 {
            width: 50%;
        }
    }

    @media only screen and (device-width: 1024px) and (device-height: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
        .event-popup-container .add-atted {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

            .event-popup-container .add-atted .add-attend-form {
                display: flex !important;
                flex-direction: row !important;
                align-items: center !important;
                gap: 0.75rem;
                width: 100%;
            }

            .event-popup-container .add-atted .event-fee-description-label {
                display: inline-block !important;
                margin: 0 !important;
                margin-right: 0.75rem !important;
                margin-bottom: 0 !important;
                min-width: 90px;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .event-popup-container .add-atted .event-quantity-price-row {
                display: flex;
                align-items: center;
                flex: 1;
            }

        .event-popup-container .event-customer-info-section-title + .add-atted {
            width: 100%;
        }

        .event-popup-container .event-customer-info-form-container .row.gx-0.gx-lg-4 > .col-lg-7,
        .event-popup-container .event-customer-info-form-container .row.gx-0.gx-lg-4 > .col-lg-5 {
            width: 100%;
            max-width: 100%;
        }

        .event-popup-container .event-customer-info-form-container .row.gx-0.gx-lg-4 > .col-lg-5 {
            display: block !important;
            margin-top: 1.5rem;
        }
    }
    
.event-popup-card-img {
    background: #e5f4e7 url('../../images/termsbackgroundsvg.svg') no-repeat;
    background-position: left bottom;
}


@media (max-width: 384px) {
    .event-popup-arrow-left {
        margin-bottom: 8px;
    }
}