.elementor-121759 .elementor-element.elementor-element-4b4114d{--display:flex;--border-radius:12px 12px 12px 12px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);}.elementor-121759 .elementor-element.elementor-element-4b4114d:not(.elementor-motion-effects-element-type-background), .elementor-121759 .elementor-element.elementor-element-4b4114d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-widget-shortcode .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-shortcode .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-121759 .elementor-element.elementor-element-9b3ca4e{--display:flex;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for html, class: .elementor-element-8cc5d23 *//* Scoped Styles for Event Schedule */
.event-schedule-container {
    --primary-color: #263851;
    --primary-hover: #1e2d42;
    --text-color: #333333;
    --input-bg: #F4F4F4;
    --white: #FFFFFF;
    --success-green: #28A745;
    --warning-orange: #FFC107;
    --border-color: #E4E4E4;

    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    max-width: 1000px;
    margin: 40px auto;
    padding: 50px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-sizing: border-box;
}

.event-schedule-container * {
    box-sizing: border-box;
}

/* Common */
.event-schedule-container .step-view {
    display: none;
    animation: fadeIn 0.3s ease;
}

.event-schedule-container .step-view.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.event-schedule-container h2 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 0;
}

.event-schedule-container .form-group {
    margin-bottom: 20px;
}

.event-schedule-container label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #444;
}

.event-schedule-container input,
.event-schedule-container select,
.event-schedule-container textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--input-bg);
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-color);
}

.event-schedule-container input:focus,
.event-schedule-container select:focus,
.event-schedule-container textarea:focus {
    outline: none;
    border-color: #aaa;
}

.event-schedule-container textarea {
    resize: vertical;
    min-height: 80px;
}

.event-schedule-container .grid-row {
    display: flex;
    gap: 24px;
    margin-bottom: 10px;
}

.event-schedule-container .grid-row .form-group {
    flex: 1;
}

@media (max-width: 650px) {
    .event-schedule-container .grid-row {
        flex-direction: column;
        gap: 0;
    }
}

.event-schedule-container .btn {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.event-schedule-container .btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.event-schedule-container .btn-primary:hover {
    background-color: var(--primary-hover);
}

.event-schedule-container .btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.event-schedule-container .btn-outline:hover {
    background-color: #F8F9FA;
}

/* Step 1 Specific */
.event-schedule-container .step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.event-schedule-container .icon-circle {
    width: 40px;
    height: 40px;
    background-color: #E8EAF0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-schedule-container .step-desc {
    color: #666;
    margin-bottom: 30px;
}

.event-schedule-container .privacy-note {
    font-size: 12px;
    color: #777;
    margin-top: 20px;
    margin-bottom: 30px;
}

.event-schedule-container .privacy-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.event-schedule-container .btn-container {
    margin-top: 20px;
}

.event-schedule-container .center {
    display: flex;
    justify-content: center;
}

/* Step 2 Booking Layout */
.event-schedule-container .booking-layout {
    display: flex;
    gap: 50px;
}

.event-schedule-container .booking-form {
    flex: 2;
}

.event-schedule-container .booking-summary {
    flex: 1;
    border-left: 1px solid #eee;
    padding-left: 30px;
}

@media (max-width: 800px) {
    .event-schedule-container .booking-layout {
        flex-direction: column;
    }

    .event-schedule-container .booking-summary {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 30px;
    }
}

.event-schedule-container .label-row {
    display: flex;
    justify-content: space-between;
}

.event-schedule-container .char-count {
    font-size: 12px;
    color: #999;
}

.event-schedule-container .info-box-small {
    background-color: #F0F6FF;
    border-left: 4px solid var(--primary-color);
    padding: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.event-schedule-container .info-icon {
    font-weight: bold;
    color: var(--primary-color);
}

.event-schedule-container .booking-summary h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 20px;
}

.event-schedule-container .summary-item {
    margin-bottom: 20px;
}

.event-schedule-container .summary-item label {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
}

.event-schedule-container .summary-item div {
    font-size: 14px;
    color: #555;
    margin-top: 4px;
}

.event-schedule-container .note-text {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

.event-schedule-container .full-width {
    width: 100%;
}

.event-schedule-container .link-back {
    display: block;
    margin-bottom: 20px;
    color: #00A3FF;
    font-size: 14px;
    text-decoration: none;
}

/* Step 3 Success */
.event-schedule-container .centered-view {
    text-align: center;
    padding: 40px 0;
}

.event-schedule-container .success-icon {
    width: 60px;
    height: 60px;
    background-color: var(--success-green);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-schedule-container .success-desc {
    color: #666;
    margin-bottom: 40px;
}

.event-schedule-container .action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Step 4 Details */
.event-schedule-container .details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.event-schedule-container .details-actions {
    display: flex;
    gap: 20px;
}

.event-schedule-container .btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-schedule-container .btn-text-danger {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-schedule-container .btn-text-danger:hover {
    color: var(--error-red);
}

.event-schedule-container .detail-row {
    background-color: #F8F9FA;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 4px;
}

.event-schedule-container .detail-row label {
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
}

.event-schedule-container .detail-value {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

/* Modal */
.event-schedule-container .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.event-schedule-container .modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    width: 600px;
    max-width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-schedule-container .modal-warning-icon {
    width: 50px;
    height: 50px;
    background-color: var(--warning-orange);
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.event-schedule-container .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.event-schedule-container .modal-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.event-schedule-container .left-align {
    text-align: left;
    margin-top: 20px;
}/* End custom CSS */