.elementor-17257 .elementor-element.elementor-element-c1e6d84{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-3a210fd *//* =========================================================
   MyOnlineTutor – Schedule & Bookings
   FINAL PREMIUM-LUXURY WHITE EDITION
   Royal Violet + Lavender + Controlled Gold
   No cream backgrounds
   ========================================================= */

/* =========================================================
   1. Design Tokens
   ========================================================= */
:root{
    --mot-primary: #6134B7;
    --mot-primary-dark: #452197;
    --mot-primary-hover: #7A3EF2;

    --mot-gold: #B8A05A;
    --mot-gold-light: #D8C28A;

    --mot-white: #FFFFFF;
    --mot-page-bg: #FFFFFF;

    --mot-lavender: #E9DDFB;
    --mot-lavender-soft: #F7F3FD;
    --mot-lavender-muted: #F3EDFC;

    --mot-text: #222222;
    --mot-text-strong: #171717;
    --mot-text-secondary: #6B6B6B;
    --mot-text-muted: #817A8C;

    --mot-border: #E9DDFB;
    --mot-border-strong: #D4C2ED;
    --mot-border-hover: #BDA7E0;

    --mot-success-bg: #F1FBF7;
    --mot-success-border: #B7E6D2;
    --mot-success-text: #176B4B;

    --mot-error-bg: #FFF5F5;
    --mot-error-border: #F0CACA;
    --mot-error-text: #A83232;

    --mot-shadow-xs: 0 4px 14px rgba(69, 33, 151, 0.04);
    --mot-shadow-sm: 0 10px 24px rgba(69, 33, 151, 0.07);
    --mot-shadow-md: 0 18px 42px rgba(69, 33, 151, 0.10);
    --mot-shadow-lg: 0 26px 70px rgba(69, 33, 151, 0.13);

    --mot-focus-ring: 0 0 0 4px rgba(97, 52, 183, 0.11);

    --mot-radius-sm: 12px;
    --mot-radius-md: 16px;
    --mot-radius-lg: 20px;
    --mot-radius-xl: 24px;
    --mot-radius-pill: 999px;

    --mot-transition: 0.22s ease;
}

/* =========================================================
   2. Page Wrapper
   ========================================================= */
.mot-offer-schedule-page{
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px 20px 60px;
    background: var(--mot-page-bg);
    color: var(--mot-text);
    box-sizing: border-box;
}

.mot-offer-schedule-page *,
.mot-offer-schedule-page *::before,
.mot-offer-schedule-page *::after{
    box-sizing: border-box;
}

/* =========================================================
   3. Header
   ========================================================= */
.mot-offer-schedule-header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.mot-offer-schedule-title{
    margin: 0 0 10px;
    color: var(--mot-text);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 750;
}

.mot-offer-schedule-subtitle{
    max-width: 760px;
    margin: 0;
    color: var(--mot-text-secondary);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
}

/* =========================================================
   4. Tabs
   ========================================================= */
.mot-schedule-tabs{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
    padding: 5px;
    border: 1px solid var(--mot-border);
    border-radius: 15px;
    background: #FFFFFF;
    box-shadow: var(--mot-shadow-xs);
}

.mot-schedule-tab{
    min-height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 11px;
    background: transparent;
    color: var(--mot-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform var(--mot-transition),
        border-color var(--mot-transition),
        background var(--mot-transition),
        color var(--mot-transition),
        box-shadow var(--mot-transition);
}

.mot-schedule-tab:hover{
    border-color: var(--mot-border);
    background: var(--mot-lavender-soft);
    color: var(--mot-primary-dark);
}

.mot-schedule-tab.is-active{
    border-color: transparent;
    background:
        linear-gradient(
            135deg,
            var(--mot-primary-hover) 0%,
            var(--mot-primary) 48%,
            var(--mot-primary-dark) 100%
        );
    color: #FFFFFF;
    box-shadow:
        0 10px 24px rgba(97, 52, 183, 0.22),
        inset 0 1px 0 rgba(255,255,255,.18);
}

/* =========================================================
   5. Shared Premium Cards
   ========================================================= */
.mot-offer-toolbar-card,
.mot-offer-schedule-card,
.mot-offer-schedule-empty{
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mot-border);
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: var(--mot-shadow-md);
}

.mot-offer-toolbar-card,
.mot-offer-schedule-card{
    margin-bottom: 24px;
    padding: 22px 22px 20px;
}

.mot-offer-toolbar-card::before,
.mot-offer-schedule-card::before{
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--mot-primary-dark) 0%,
            var(--mot-primary) 55%,
            var(--mot-gold) 100%
        );
}

.mot-schedule-compact-card{
    padding: 22px 22px 20px;
}

/* =========================================================
   6. Toolbar
   ========================================================= */
.mot-offer-toolbar-form{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.mot-offer-toolbar-left{
    min-width: 280px;
    max-width: 520px;
    flex: 1 1 420px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mot-offer-toolbar-label{
    display: inline-block;
    margin-bottom: 2px;
    color: #3A3540;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: -0.004em;
}

.mot-offer-toolbar-right{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mot-offer-toolbar-badge{
    min-height: 38px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DACCF0;
    border-radius: var(--mot-radius-pill);
    background: var(--mot-lavender-muted);
    color: var(--mot-primary);
    font-size: 13px;
    font-weight: 700;
}

/* =========================================================
   7. Selects and Inputs
   ========================================================= */
.mot-offer-toolbar-select,
.mot-weekday-select,
.mot-offer-time-group input[type="time"],
.mot-offer-time-group input[type="date"]{
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #DDD5EA;
    border-radius: 13px;
    background-color: #FFFFFF;
    color: var(--mot-text);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    box-shadow: none;
    transition:
        border-color var(--mot-transition),
        box-shadow var(--mot-transition),
        background-color var(--mot-transition);
}

.mot-offer-toolbar-select,
.mot-weekday-select{
    -webkit-appearance: none;
    appearance: none;
    padding-right: 48px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--mot-primary) 50%),
        linear-gradient(135deg, var(--mot-primary) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.mot-offer-toolbar-select:hover,
.mot-weekday-select:hover,
.mot-offer-time-group input:hover{
    border-color: var(--mot-border-hover);
    background-color: #FFFFFF;
}

.mot-offer-toolbar-select:focus,
.mot-weekday-select:focus,
.mot-offer-time-group input:focus{
    border-color: var(--mot-primary);
    background-color: #FFFFFF;
    box-shadow: var(--mot-focus-ring);
}

/* =========================================================
   8. Card Headings
   ========================================================= */
.mot-offer-schedule-card-head,
.mot-compact-head{
    margin-bottom: 20px;
}

.mot-offer-schedule-card-head h3,
.mot-compact-head h3{
    margin: 0 0 6px;
    color: var(--mot-text);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.018em;
    font-weight: 750;
}

.mot-offer-schedule-card-head p,
.mot-compact-head p{
    margin: 0;
    color: var(--mot-text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   9. Alerts
   ========================================================= */
.mot-offer-schedule-alert{
    margin: 0 0 22px;
    padding: 17px 19px;
    border: 1px solid transparent;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}

.mot-offer-schedule-alert ul{
    margin: 0;
    padding-left: 18px;
}

.mot-offer-schedule-alert-success{
    background: var(--mot-success-bg);
    border-color: var(--mot-success-border);
    color: var(--mot-success-text);
    box-shadow: 0 8px 18px rgba(23, 107, 75, 0.06);
}

.mot-offer-schedule-alert-error{
    background: var(--mot-error-bg);
    border-color: var(--mot-error-border);
    color: var(--mot-error-text);
    box-shadow: 0 8px 18px rgba(168, 50, 50, 0.06);
}

/* =========================================================
   10. Window Card
   ========================================================= */
.mot-window-card{
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid var(--mot-border);
    border-radius: 17px;
    background: #FFFFFF;
    box-shadow: var(--mot-shadow-xs);
}

.mot-window-card h4{
    margin: 0 0 6px;
    color: var(--mot-primary-dark);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 750;
}

.mot-window-card p{
    margin: 0 0 16px;
    color: var(--mot-text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   11. Period / Slot Cards
   ========================================================= */
.mot-availability-period-list{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mot-period-card{
    position: relative;
    padding: 16px 16px 72px !important;
    border: 1px solid var(--mot-border);
    border-radius: 17px;
    background: #FFFFFF;
    box-shadow: none;
    transition:
        transform var(--mot-transition),
        border-color var(--mot-transition),
        background var(--mot-transition),
        box-shadow var(--mot-transition);
}

.mot-period-card:hover{
    transform: translateY(-1px);
    border-color: var(--mot-border-hover);
    box-shadow: 0 12px 26px rgba(97, 52, 183, 0.08);
}

.mot-period-card.is-enabled{
    border-color: var(--mot-border-strong);
    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            var(--mot-lavender-soft) 100%
        );
}

.mot-period-card-head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.mot-period-card-left h4{
    margin: 0 0 6px;
    color: var(--mot-text);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 750;
}

.mot-period-summary{
    color: var(--mot-text-muted) !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
}

/* =========================================================
   12. Switch
   ========================================================= */
.mot-offer-switch{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.mot-offer-switch input{
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--mot-primary);
}

.mot-offer-switch-text{
    color: #3A3540;
    font-size: 14px;
    font-weight: 700;
}

/* =========================================================
   13. Field Grids
   ========================================================= */
.mot-period-fields{
    display: grid;
    gap: 12px;
}

.mot-window-fields{
    grid-template-columns: repeat(2, minmax(0,1fr));
}

.mot-slot-fields{
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
    align-items: end;
}

.mot-offer-time-group{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mot-offer-time-group label{
    display: inline-block;
    margin: 0;
    color: var(--mot-text-muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* =========================================================
   14. Actions
   ========================================================= */
.mot-period-actions{
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 3;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transform: translateY(10px);
}

.mot-day-add-slot-wrap{
    margin-top: 14px;
    display: flex;
    justify-content: flex-start;
}

.mot-offer-schedule-actions{
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

/* =========================================================
   15. Buttons
   ========================================================= */
.mot-add-period-btn,
.mot-offer-schedule-btn,
.mot-remove-period-btn{
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform var(--mot-transition),
        border-color var(--mot-transition),
        background var(--mot-transition),
        color var(--mot-transition),
        box-shadow var(--mot-transition);
}

/* Secondary Add Slot button */
.mot-add-period-btn{
    min-height: 36px !important;
    padding: 0 13px !important;
    border: 1px solid var(--mot-border-strong) !important;
    border-radius: 11px !important;
    background: #FFFFFF !important;
    color: var(--mot-primary) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.mot-add-period-btn:hover{
    transform: translateY(-1px) !important;
    border-color: var(--mot-primary) !important;
    background: var(--mot-lavender-soft) !important;
    color: var(--mot-primary-dark) !important;
    box-shadow: var(--mot-shadow-xs) !important;
}

/* Destructive Remove button */
.mot-remove-period-btn{
    min-height: 38px !important;
    padding: 0 14px !important;
    border: 1px solid var(--mot-error-border) !important;
    border-radius: 11px !important;
    background: #FFFFFF !important;
    color: var(--mot-error-text) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    white-space: nowrap;
}

.mot-remove-period-btn:hover{
    transform: translateY(-1px) !important;
    border-color: #E7B5B5 !important;
    background: var(--mot-error-bg) !important;
    color: #8F2525 !important;
}

/* Primary Save button */
.mot-offer-schedule-btn{
    width: auto;
    min-height: 50px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            var(--mot-primary-hover) 0%,
            var(--mot-primary) 48%,
            var(--mot-primary-dark) 100%
        );
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: -0.01em;
    box-shadow:
        0 12px 28px rgba(97, 52, 183, 0.25),
        inset 0 1px 0 rgba(255,255,255,.18);
}

.mot-offer-schedule-btn:hover{
    transform: translateY(-2px);
    background:
        linear-gradient(
            135deg,
            #8A50F4 0%,
            #6E3AC4 48%,
            #5427A6 100%
        );
    color: #FFFFFF;
    box-shadow:
        0 17px 36px rgba(97, 52, 183, 0.30),
        0 0 0 4px rgba(122, 62, 242, 0.07),
        inset 0 1px 0 rgba(255,255,255,.22);
}

.mot-add-period-btn:focus-visible,
.mot-remove-period-btn:focus-visible,
.mot-offer-schedule-btn:focus-visible{
    outline: none;
    box-shadow: var(--mot-focus-ring);
}

.mot-add-period-btn:active,
.mot-remove-period-btn:active,
.mot-offer-schedule-btn:active{
    transform: translateY(0);
}

/* =========================================================
   16. Empty State
   ========================================================= */
.mot-offer-schedule-empty{
    padding: 36px 28px;
    text-align: center;
}

.mot-offer-schedule-empty h2{
    margin: 0 0 10px;
    color: var(--mot-primary-dark);
    font-size: 28px;
    font-weight: 750;
}

.mot-offer-schedule-empty p{
    margin: 0 0 18px;
    color: var(--mot-text-secondary);
    font-size: 15px;
    line-height: 1.65;
}

.mot-offer-schedule-empty .mot-offer-schedule-btn{
    width: auto;
}

/* =========================================================
   17. Two-Column Layout and Sidebar
   ========================================================= */
.mot-schedule-content-layout{
    display: grid;
    grid-template-columns: minmax(0,1fr) 360px;
    gap: 32px;
    align-items: start;
}

.mot-schedule-main-column{
    min-width: 0;
}

.mot-schedule-sidebar{
    position: sticky;
    top: 24px;
    align-self: start;
}

.mot-schedule-tips-card .mot-form-tips{
    margin: 0;
    padding-left: 22px;
}

.mot-schedule-tips-card .mot-form-tips li{
    margin: 0 0 12px;
    color: #444046;
    line-height: 1.7;
}

.mot-schedule-tips-card .mot-form-tips li::marker{
    color: var(--mot-gold);
}

.mot-schedule-tips-card .mot-form-tips li:last-child{
    margin-bottom: 0;
}

/* =========================================================
   18. Loading Overlay
   ========================================================= */
.mot-offer-schedule-page.mot-is-loading::before{
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999998;
    background: rgba(255,255,255,.66);
    backdrop-filter: blur(8px);
}

.mot-offer-schedule-page.mot-is-loading::after{
    content: "Please wait... Loading offer schedule";
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999999;
    transform: translate(-50%, -50%);
    padding: 18px 26px;
    border: 1px solid var(--mot-border);
    border-radius: 18px;
    background: rgba(255,255,255,.97);
    color: var(--mot-primary-dark);
    font-size: 15px;
    font-weight: 750;
    box-shadow: var(--mot-shadow-lg);
}

/* =========================================================
   19. Desktop Alignment
   ========================================================= */
@media (min-width: 901px){
    .mot-slot-fields{
        padding-right: 150px;
    }
}

/* =========================================================
   20. Tablet
   ========================================================= */
@media (max-width: 1100px){
    .mot-schedule-content-layout{
        grid-template-columns: 1fr;
    }

    .mot-schedule-sidebar{
        position: static;
        top: auto;
    }
}

@media (max-width: 900px){
    .mot-offer-toolbar-form{
        align-items: stretch;
    }

    .mot-offer-toolbar-left{
        max-width: none;
        flex: 1 1 100%;
    }

    .mot-offer-toolbar-right{
        justify-content: flex-start;
    }

    .mot-period-card-head{
        flex-direction: column;
        align-items: flex-start;
    }

    .mot-window-fields,
    .mot-slot-fields{
        grid-template-columns: 1fr;
    }

    .mot-period-card{
        padding: 16px !important;
    }

    .mot-slot-fields{
        padding-right: 0;
    }

    .mot-period-actions{
        position: static !important;
        margin-top: 10px !important;
        justify-content: flex-start;
        transform: none !important;
    }

    .mot-remove-period-btn{
        width: auto !important;
    }
}

/* =========================================================
   21. Mobile
   ========================================================= */
@media (max-width: 767px){
    .mot-offer-schedule-page{
        padding: 24px 14px 48px;
    }

    .mot-offer-schedule-title{
        font-size: 38px;
        line-height: 1.08;
    }

    .mot-offer-toolbar-card,
    .mot-offer-schedule-card,
    .mot-offer-schedule-empty{
        padding: 20px 15px 18px;
        border-radius: 18px;
    }

    .mot-window-card,
    .mot-period-card{
        padding: 16px;
        border-radius: 16px;
    }

    .mot-schedule-tabs{
        width: 100%;
        display: flex;
    }

    .mot-schedule-tab{
        flex: 1 1 0;
    }

    .mot-offer-schedule-btn{
        width: 100%;
        min-height: 50px;
        justify-content: center;
    }

    .mot-offer-schedule-actions{
        justify-content: stretch;
    }
}

/* =========================================================
   22. Accessibility
   ========================================================= */
@media (prefers-reduced-motion: reduce){
    .mot-offer-schedule-page *,
    .mot-offer-schedule-page *::before,
    .mot-offer-schedule-page *::after{
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}/* End custom CSS */