﻿
        #lockerWaiverText {
            resize: none;
            width: 100%;
            height: min(340px, 45vh);
            min-height: 220px;
            background-color: #f8fafc;
            border: 1.5px solid #94a3b8;
            border-radius: 12px;
            text-align: left;
            padding: 1rem;
            font-family: "Raleway", sans-serif;
            font-weight: 500;
            font-size: 0.82rem;
            line-height: 1.55;
            color: #374151;
            margin-top: 0.75rem;
            box-sizing: border-box;
            box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
        }

        .acceptText {
            display: block;
            width: 100%;
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.4;
            text-align: center;
            color: #1f2937;
            padding-right: 2rem;
        }

        .lockerWaiverModal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            min-height: 100vh;
            min-height: 100dvh;
            overflow-x: hidden;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            background-color: rgba(15, 23, 42, 0.55);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            padding: 1rem;
            padding-top: max(1rem, env(safe-area-inset-top));
            padding-bottom: max(1rem, env(safe-area-inset-bottom));
            box-sizing: border-box;
        }

        .lockerWaiverModal-content {
            position: relative;
            background-color: #fff;
            margin: 0 auto;
            padding: 1.25rem 1.25rem 1rem;
            border: 1px solid #e5e7eb;
            width: min(560px, 100%);
            max-width: 560px;
            max-height: none;
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.28);
            box-sizing: border-box;
            flex-shrink: 0;
        }

        .lockerWaiverModal-close {
            position: absolute;
            top: 0.85rem;
            right: 1rem;
            color: #64748b;
            font-size: 1.75rem;
            font-weight: 400;
            line-height: 1;
            cursor: pointer;
            transition: color 0.15s ease;
        }

        .lockerWaiverModal-close:hover,
        .lockerWaiverModal-close:focus {
            color: #1f2937;
            text-decoration: none;
        }

        .acceptWaiverTerms {
            display: block;
            width: 100%;
            margin: 1rem 0 0;
            min-height: 44px;
            padding: 0.7rem 1rem;
            background: linear-gradient(180deg, #0a85d4 0%, #0976BC 100%);
            cursor: pointer;
            color: #fff;
            font-family: "Raleway", sans-serif;
            font-size: 0.92rem;
            font-weight: 700;
            text-decoration: none;
            text-shadow: none;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            border-radius: 12px;
            border: none;
            box-shadow: 0 2px 8px rgba(9, 118, 188, 0.28);
            transition: background 0.15s ease;
            box-sizing: border-box;
        }

        .acceptWaiverTerms:hover {
            background: linear-gradient(180deg, #0976BC 0%, #0868a8 100%);
        }

        @media only screen and (max-width: 600px) {
            .lockerWaiverModal-content {
                padding: 1rem;
                margin: 1vh auto 2vh;
            }

            #lockerWaiverText {
                font-size: 0.78rem;
                padding: 0.85rem;
            }
        }

        .lessonSearchRow{
            position: relative;
            margin: 10px 0;      
            height: 45px;
            width: 100%;
        }

        .lessonSearchDate{
            position: absolute;
            top: 0;
            left: 0;
            outline: 0;
            width: 55%;
            display: block;
            padding: 9px 30px 8px 36px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            color: #000000;
            font-size: 1.2em;
            font-weight: 700;
            line-height: 1.2;
            text-align: center;
            border-radius: 5px;
        }
        .lessonSearchButton{
            position: absolute;
            top: 0;
            right: 0;
            width: 30%;
            height: 50px;
            line-height: 50px;
        }
        .lessonSearchButton:hover{
            background-color: #f54958;
        }

        /* CUSTOMER INFORMATION COLLECTION FOR LESSONS */
        .lessonScheduleInformation {
            max-width: 100%;
            margin: 0 auto 0.85rem;
            background-color: #ffffff;
            padding: 1rem;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }

        .lessonScheduleInformation .customerInfoInput {
            margin-bottom: 0;
        }

        .customerInfoInput {
            font-family: "Raleway", sans-serif;
            font-weight: 500;
            font-size: 0.9rem;
            border-radius: 10px;
            line-height: 1.35;
            background-color: #fff;
            border: 1.5px solid #94a3b8 !important;
            transition: border-color 0.15s ease, box-shadow 0.15s ease;
            padding: 0.6rem 0.75rem;
            margin-bottom: 0.75rem;
            width: 100% !important;
            box-sizing: border-box;
            outline: 0;
            color: #1f2937;
            min-height: 2.75rem;
            box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
        }

        #customerInformationInfo{
            color: #1f2937;
        }

        #customerInformationInfo:invalid {
            color: #9ca3af;
        }

        #customerInformationInfo:invalid * {
            color: #1f2937;
        }

        .customerInfoInput:focus {
            border-color: #0976BC !important;
            box-shadow: 0 0 0 3px rgba(9, 118, 188, 0.15), inset 0 1px 2px rgba(15, 23, 42, 0.04);
        }

        .customerIndex{
            padding: 0 0 0.75rem;
            margin: 0 0 0.5rem;
            font-size: 0.95rem;
            font-weight: 700;
            text-align: center;
            color: #0976BC;
            border-bottom: 1px solid #e5e7eb;
        }

        .customerInformationSubmit{
            height: auto;
            min-height: 44px;
            width: 100%;
            text-align: center;
            padding: 0.7rem 1rem;
            background: linear-gradient(180deg, #0a85d4 0%, #0976BC 100%);
            color: white;
            border-radius: 12px;
            line-height: 1.35;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            cursor: pointer;
            margin-top: 0.5rem;
            box-shadow: 0 2px 8px rgba(9, 118, 188, 0.28);
            transition: background 0.15s ease;
        }

        .customerInformationSubmit:hover{
            background: linear-gradient(180deg, #0976BC 0%, #0868a8 100%);
        }

        .customerInfoError{
            display: block;
            color: #dc2626;
            font-weight: 600;
            width: 100%;
            min-height: 20px;
            text-align: center;
            margin-top: 0.5rem;
            font-size: 0.85rem;
        }

        .percentOff{
            display: block;
            padding: 0.25rem 0.5rem;
            font-weight: 700;
            position: absolute;
            bottom: 0.5rem;
            right: 0.5rem;
            color: #854d0e;
            background: #fef9c3;
            border-radius: 8px;
            font-size: 0.8rem;
            line-height: 1.2;
        }

        .hasDiscount .price{
            background-color: #ede9fe;
            color: #6d28d9;
        }

        .helpbadge {
            color: #0976BC;
            cursor: pointer;
        }

        @media only screen and (max-width: 600px) {
            .lesson_type{
                width: 100% !important;
                max-width: 100% !important;
                min-height: 44px;
                height: auto;
                line-height: 1.35;
            }

            .packageDeal{
                width: 100%;
            }
        }

        .mobileAdjustments {
            margin-left: 0;
        }

        .showMore{
            position: absolute;
            right: 5px;
            bottom: 5px;
            padding: 5px;
            background-color: var(--hover-color);
            color: white;
            cursor: pointer;
            z-index: 20;
            font-size: 10px;
            border-radius: 10px;
        }

        .showMore:hover{
            background-color: darkgrey;
        }
        .removeRow{
            width: 100% !important;
            margin: auto !important;
        }
        
        .optionalContainer, .optionalContainer input, .optionalContainer label {
            font-family: "Raleway", sans-serif;
        }

        .optionalContainer{
            background-color: #eff6ff;
            color: #1e40af;
            width: 100%;
            padding: 0.75rem 0.85rem;
            margin: 0.15rem 0 0.35rem;
            border-radius: 10px;
            border: 1px solid #bfdbfe;
            box-sizing: border-box;
            text-align: left;
            font-size: 0.85rem;
        }

        .optionalContainer input {
            margin-right: 0.5rem;
            vertical-align: middle;
        }


        /* Limited Time Item */
        .viewImageButton{
            border-radius: 10px; background-color: #70c3e3; color: black; cursor: pointer; padding: 10px 20px;
        }

        .viewImageButton:hover{
            background-color: #4d98b6;
        }

        .imagePopupLimitedTime {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }

        #popupImageLimitedTime {
            max-width: 80%;
            max-height: 80%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(0%, -40%);
            border: solid;
        }

        .closePopupLimitedTime {
            color: #000;
            background-color: white;
            position: absolute;
            top: 23%;
            right: 23%;
            cursor: pointer;
            transform: translate(-100%, 100%);
            padding: 17px 22px;
            border-radius: 50%;
            border: solid;
        }

        @media only screen and (max-width: 600px) {
            .viewImageButton{
                padding: 10px 10px;
            }

            #popupImageLimitedTime{
                transform: translate(-50%, -40%);
            }

            .closePopupLimitedTime{
                top: 20%;
                right: -12%;
            }
        }

        @media only screen and (max-width: 1400px) {
            .closePopupLimitedTime{
                top: 18%;
                right: 12%;
            }
        }
        /* Limited Time Item - end */
