/** Shopify CDN: Minification failed

Line 147:0 Expected "}" to go with "{"

**/
/* Full Screen Experience Styles */
.shopify-section {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.shopify-section.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.scheduling-container-section.fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 9999 !important;
    background-color: #fff !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    animation: slideInFullscreen 0.3s ease-out;
}

@media (max-width: 768px) {
    .scheduling-container-section .scheduling-book-form-title-container {
        display: none;
    }
    
    .scheduling-container-section.fullscreen .scheduling-book-form-title-container {
        display: block;
        padding: 0px !important;
        background-color: white !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .scheduling-container-section.fullscreen .mobile-header {
        padding: 10px 12px
    }

    .scheduling-container-section.fullscreen .scheduling-book-form-section-container {
        margin-top: 52px !important;
    }

    @keyframes slideInFullscreen {
        from {
            opacity: 0;
            transform: scale(0.95);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Progress bar container positioning for exit button */
    #progress-bar-container {
        position: relative;
    }

    /* Exit button styles */
    #fullscreen-exit-btn {
        position: absolute;
        top: 0;
        right: -50px;
        width: 25px;
        height: 25px;
        background: #313B92;
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        animation: fadeInExitButton 0.3s ease-out;
    }

    #fullscreen-exit-btn:hover {
        transform: scale(1.1);
        background: #ff6b6b;
    }

    @keyframes fadeInExitButton {
        from {
            opacity: 0;
            transform: scale(0.8);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Mobile adjustments for full-screen experience */
    @media (max-width: 768px) {
        .scheduling-container-section.fullscreen {
            padding: 24px 16px 4px 16px;
            padding: 0px !important;
        }

        .scheduling-container-section.fullscreen .container {
            padding: 0px !important;
        }

        .scheduling-container-section.fullscreen .scheduling-book-form-title-container {
            padding-top: 30px;
        }

        .scheduling-container-section.fullscreen .scheduling-book-form-title {
            font-size: 18px;
        }

        #fullscreen-exit-btn {
            top: 8px;
            right: 8px;
            width: 30px;
            height: 30px;
            font-size: 16px;
        }
    }

    /* Prevent body scroll when in full-screen mode */
    body.fullscreen-mode {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
    }
