﻿:root {
    --co-navy: #0b1f44;
    --co-blue: #0b3a82;
    --co-blue-lt: #004bc1;
    --co-muted: #6c7a96;
    --co-border: #cfd6e6;
    --co-bg: #ffffff;
    --co-error: #e5484d;
    --co-radius-sm: 6px;
    --co-radius-md: 12px;
    --co-font: 'SimplePro', Arial, sans-serif;
    --co-trans: 0.2s ease;
    --co-manatee: #8c95ac;
    --zircon: #f6faff;
    --oxford-blue: #363d50;
    --white: #fff;
    --svg: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTYnIGhlaWdodD0nMTYnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nbm9uZScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNMTIgNEw0IDEyJyBzdHJva2U9JyMzNjNENTAnIHN0cm9rZS13aWR0aD0nMS41JyBzdHJva2UtbGluZWNhcD0ncm91bmQnLz48cGF0aCBkPSdNMTIgMTJMNCA0JyBzdHJva2U9JyMzNjNENTAnIHN0cm9rZS13aWR0aD0nMS41JyBzdHJva2UtbGluZWNhcD0ncm91bmQnLz48L3N2Zz4K);
}

*, *::before, *::after {
    box-sizing: border-box;
}

.co-page {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    font-family: var(--co-font);
    background: #f4f6fb;
}

.co-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    background: var(--co-bg);
    flex-direction: row-reverse;
}

@media (min-width: 769px) {
    .co-container {
        min-height: 30rem;
    }
}

.co-image-section {
    flex: 0 0 50%;
    min-width: 0;
    overflow: hidden;
}

    .co-image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.co-form-section {
    flex: 0 0 50%;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
}

.co-form-area {
    width: 100%;
    max-width: 420px;
}

.co-title-image {
    display: flex;
    justify-content: center;
}

    .co-title-image img {
        height: 64px;
        width: auto;
        display: block;
    }

.sm-see-order-second-step {
    display: none;
}

.co-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--co-navy);
    text-align: center;
    margin: 0 0 10px;
}

.co-subtitle {
    font-size: 17px;
    color: var(--co-muted);
    text-align: center;
    margin: 0 0 40px;
}

.sm-data-send-input-block {
    display: flex;
    flex-direction: column;
}

.sm-data-send-input-row {
    position: relative;
    margin-bottom: 36px !important;
    border-bottom: 1.5px solid var(--co-border);
    transition: border-color var(--co-trans);
}

    .sm-data-send-input-row:focus-within {
        border-bottom-color: var(--co-blue-lt);
    }

.sm-data-send-input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    padding: 4px 0;
    font-size: 16px;
    font-family: var(--co-font);
    color: var(--co-navy);
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

    .sm-data-send-input[type="number"]::-webkit-inner-spin-button,
    .sm-data-send-input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.sm-data-send-label {
    position: absolute;
    font-size: 1rem;
    font-weight: 400;
    color: #363d50;
    pointer-events: none;
    white-space: nowrap;
    transition: bottom .3s ease, font-size .3s ease, color .3s ease;
}

[dir="rtl"] .sm-data-send-label {
    right: 0 !important;
}

[dir="ltr"] .sm-data-send-label {
    left: 0 !important;
}

.sm-data-send-input:not(:placeholder-shown) ~ .sm-data-send-label,
.sm-data-send-input-row.has-value .sm-data-send-label,
.sm-data-send-input-row:focus-within .sm-data-send-label {
    font-size: .78rem;
    bottom: calc(100% + 2px);
    color: #0055cc;
}

.sm-data-send-input:focus ~ .sm-data-send-label sup {
    transform: scale(1);
    transition: all 0.3s ease 0s;
}

.sm-data-send-input:not(:focus):valid ~ .sm-data-send-label sup {
    transform: scale(1);
    transition: all 0.3s ease 0s;
}

.sm-data-send-label sup {
    color: var(--co-error);
    vertical-align: baseline;
    font-size: inherit;
}

[dir="rtl"] .sm-data-send-label sup {
    margin-left: 3px;
}

[dir="ltr"] .sm-data-send-label sup {
    margin-right: 3px;
}

.sm-data-send-icon {
    position: absolute;
    bottom: 8px;
    width: 20px;
    cursor: pointer;
}

[dir="rtl"] .sm-data-send-icon {
    left: 0;
}

[dir="ltr"] .sm-data-send-icon {
    right: 0;
}

[dir="rtl"] #smDateInput {
    padding-left: 28px;
}

[dir="ltr"] #smDateInput {
    padding-right: 28px;
}

.sm-data-send-error-text {
    display: none;
    color: var(--co-error);
    font-size: 13px;
    font-family: var(--co-font);
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.4;
    width: 100%;
}

.sm-see-blue-btn:active {
    background: var(--co-navy);
}

.sm-see-blue-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.sm-see-order-data-send {
    max-width: 21.875rem;
}

.co-datepicker-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--oxford-blue);
    opacity: 0.7;
    z-index: 11111;
}

    .co-datepicker-backdrop.is-open {
        display: block;
    }

.sm-see-datepicker {
    position: absolute;
    top: 40%;
    left: 50%;
    z-index: 11112;
    background: var(--co-bg);
    border-radius: var(--co-radius-md);
    width: 92vw;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(11, 31, 68, .2);
    display: none;
    padding: 0;
    padding-block: 0 1rem;
}

[dir="rtl"] .sm-see-datepicker {
    transform: translate(37%, 0px);
}

[dir="ltr"] .sm-see-datepicker {
    transform: translate(-137%, 0px);
}

#smSeeDatepicker .sm-see-datepicker .ui-datepicker {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
}

#smSeeDatepicker .ui-widget.ui-widget-content {
    border: none;
    padding: 0;
    margin-bottom: -0.1875rem;
    padding-block: 1.5rem;
    padding-inline: 2.5rem;
}

#smSeeDatepicker .ui-datepicker-calendar {
    margin: 0;
}

.sm-see-datepicker-action-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding-top: 12px;
    padding-inline: 1rem;
    border-top: 1.5px solid var(--co-border);
}

.sm-see-datepicker-cancel-btn {
    border: none;
    background: none;
    font-family: var(--co-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--co-muted);
    cursor: pointer;
    padding: 4px 8px;
    min-height: 44px;
    touch-action: manipulation;
}

    .sm-see-datepicker-cancel-btn:hover {
        color: var(--co-navy);
    }

.sm-see-datepicker-done-btn {
    width: auto !important;
    padding: 10px 28px !important;
    font-size: 15px !important;
    margin-top: 0 !important;
    min-height: 44px;
}

.sm-see-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    order: 10;
    width: 100%;
    background-color: var(--zircon);
    padding-block: .5rem;
    padding-inline: 1rem .5rem;
}

    .sm-see-datepicker-header .icon {
        display: inline-flex;
        flex-shrink: 0;
        mask-image: var(--svg);
        mask-repeat: no-repeat;
        mask-size: contain;
        width: 1rem;
        height: 1rem;
        background-color: currentColor;
        transition: all .2s ease-in;
    }

    .sm-see-datepicker-header .icon--close {
        --svg: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTYnIGhlaWdodD0nMTYnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nbm9uZScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNMTIgNEw0IDEyJyBzdHJva2U9JyMzNjNENTAnIHN0cm9rZS13aWR0aD0nMS41JyBzdHJva2UtbGluZWNhcD0ncm91bmQnLz48cGF0aCBkPSdNMTIgMTJMNCA0JyBzdHJva2U9JyMzNjNENTAnIHN0cm9rZS13aWR0aD0nMS41JyBzdHJva2UtbGluZWNhcD0ncm91bmQnLz48L3N2Zz4K);
    }

.co-otp-modal {
    display: none;
    font-family: var(--co-font);
}

.co-otp-modal__close {
    border: none;
    background: none;
    font-size: 22px;
    line-height: 1;
    color: var(--co-navy);
    cursor: pointer;
    padding: 8px 12px;
    touch-action: manipulation;
}

.co-otp-modal__body {
    width: 100%;
    max-width: 400px;
    padding: 24px 32px 40px;
    text-align: center;
}

.co-otp-modal__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.co-otp-modal__subtitle {
    font-size: 14px;
    color: var(--co-manatee);
    line-height: 1.6;
    margin: 0 0 36px;
}

.co-otp-modal__inputs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
    direction: ltr;
    margin-bottom: 12px;
}

    .co-otp-modal__inputs input {
        width: 40px;
        height: 48px;
        padding: 0;
        border: none;
        border-bottom: 2px solid var(--co-border);
        border-radius: 0;
        background: transparent;
        text-align: center;
        font-family: var(--co-font);
        font-size: 24px;
        font-weight: 600;
        color: var(--co-navy);
        outline: none;
        box-shadow: none;
        -webkit-appearance: none;
        transition: border-color var(--co-trans);
        caret-color: var(--co-blue);
    }

        .co-otp-modal__inputs input:focus {
            border-bottom-color: var(--co-blue);
        }

        .co-otp-modal__inputs input.has-value {
            border-bottom-color: var(--co-navy);
        }

.co-otp-modal__error {
    display: none;
    color: var(--co-error);
    font-size: 13px;
    font-family: var(--co-font);
    text-align: center;
    margin: 8px 0 16px;
    min-height: 18px;
    line-height: 1.4;
}

    .co-otp-modal__error.is-error {
        display: block;
    }

.co-otp-modal__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.co-otp-modal__resend {
    margin-top: 4rem;
}

.co-otp-modal__resend,
.co-otp-modal__back {
    border: none;
    background: none;
    font-family: var(--co-font);
    font-size: 15px;
    color: var(--co-blue);
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    touch-action: manipulation;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .co-otp-modal__resend:hover,
    .co-otp-modal__back:hover {
        color: var(--co-blue-lt);
    }

.co-otp-modal__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 68, 0.4);
    z-index: 9000;
    align-items: center;
    justify-content: center;
}

    .co-otp-modal__overlay.is-visible {
        display: flex;
    }

    .co-otp-modal__overlay img {
        width: 72px;
        height: 72px;
    }

@media (min-width: 769px) {
    .co-form-section {
        position: relative;
        overflow: hidden;
    }

    .co-otp-modal.is-open {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 10;
    }

    .co-otp-modal__close {
        display: none;
    }
}

@media (max-width: 1024px) {
    .co-datepicker-backdrop {
        z-index: 10000;
        background-color: var(--white);
        opacity: 1;
    }

    [dir="rtl"] .sm-see-datepicker,
    [dir="ltr"] .sm-see-datepicker {
        position: absolute;
        transform: translate(-50%, 0px);
        overflow: unset;
        padding-block: 1.5rem 6.25rem;
        z-index: 10001;
        box-shadow: none;
        top: 0;
        width: 21.375rem;
    }

    #smSeeDatepicker .ui-widget.ui-widget-content {
        padding-inline: 0;
    }

    .sm-see-datepicker .ui-datepicker {
        display: flex !important;
        flex-flow: column;
        width: auto !important;
        padding: 0;
        gap: 1.5rem;
        padding-block: 1.5rem;
        padding-inline: 2.5rem;
        border: none;
        margin-top: 45px;
    }

    .co-datepicker-wrapper:has(.is-open) .sm-see-datepicker .ui-datepicker-group {
        border-radius: 1rem;
        width: 100%;
        box-shadow: 0 -.0625rem 1.25rem #5e708b40;
        padding-block: 1.5rem;
        padding-inline: 1.9375rem;
    }

    .sm-see-datepicker .ui-datepicker-prev,
    .sm-see-datepicker .ui-datepicker-next {
        display: none;
    }

    .sm-see-datepicker-action-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        box-shadow: 0 -.0625rem 1.25rem #5e708b40;
        background-color: var(--white);
        position: fixed;
        bottom: 0;
        z-index: 10001;
        width: 100%;
        inset-inline-start: 0;
        border-top: none;
    }

    .sm-see-datepicker-done-btn {
        padding: 0.5rem !important;
        max-width: 6.25rem !important;
        width: 100% !important;
        font-size: 1.125rem !important;
        min-height: 41.92px;
    }

    .sm-see-datepicker-cancel-btn {
        border: none;
        padding: .5rem;
        font-weight: 700;
        font-size: 1.125rem;
        line-height: 144%;
        text-align: center;
        text-decoration-line: underline;
        color: #002d74;
        background: transparent;
    }

    .sm-see-datepicker-header {
        position: absolute;
        top: 3.975rem;
        padding: 0;
        background-color: transparent;
        inset-inline-start: 0;
        z-index: 10001;
        overflow: unset;
        box-shadow: none;
    }

    #smSeeDatepicker .sm-see-datepicker-header__title {
        display: none;
    }

    .sm-see-datepicker-header .icon--close {
        width: 1.5rem;
        height: 1.5rem;
    }

    .sm-see-blue-btn,
    .sm-see-order-data-send {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body.co-otp-open {
        overflow: hidden;
    }

    [dir="rtl"] .co-container,
    [dir="ltr"] .co-container,
    .co-container {
        flex-direction: column !important;
    }

    .co-image-section {
        flex: 0 0 180px !important;
        width: 100% !important;
        height: 180px;
    }

    .co-form-section {
        flex: 1 1 auto !important;
        width: 100% !important;
        padding: 28px 20px 40px;
        align-items: flex-start;
        position: relative;
    }

    .co-form-area {
        max-width: 100%;
    }

    .co-title {
        font-size: 26px;
    }

    .co-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .sm-see-blue-btn {
        font-size: 16px;
        padding: 14px;
    }

    .co-otp-modal.is-open {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        inset: 0;
        z-index: 8000;
        background: #fff;
        -webkit-overflow-scrolling: touch;
    }

    .co-otp-modal__close {
        position: absolute;
        top: 20px;
        display: block;
        z-index: 1;
    }

    [dir="rtl"] .co-otp-modal__close {
        left: 20px;
    }

    [dir="ltr"] .co-otp-modal__close {
        right: 20px;
    }

    .co-otp-modal__body {
        padding: 24px 20px 36px;
    }

    .co-otp-modal__inputs {
        gap: 10px;
    }

        .co-otp-modal__inputs input {
            width: 34px;
            font-size: 20px;
        }
}

@media (max-width: 480px) {
    .co-form-section {
        padding: 24px 16px 36px;
    }

    .co-image-section {
        flex: 0 0 160px !important;
        height: 160px;
    }

    .co-otp-modal__inputs {
        gap: 8px;
    }

        .co-otp-modal__inputs input {
            width: 40px;
            height: 40px;
            font-size: 1.563rem;
            font-weight: 300;
        }
}
