/* DLEELK UNIVERSAL PLAN CHECKOUT START */

.plan-checkout-shell {
    width: min(760px, calc(100% - 32px));
    margin: 36px auto 60px;
}

.plan-checkout-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
}

.plan-checkout-steps span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid #e4e6ea;
    border-radius: 12px;
    background: #fff;
    color: #8a9099;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.plan-checkout-steps span.is-done {
    border-color: rgba(194, 139, 30, .30);
    background: rgba(194, 139, 30, .07);
    color: #956307;
}

.plan-checkout-steps span.is-active {
    border-color: #c28b1e;
    background: #c28b1e;
    color: #fff;
    box-shadow: 0 8px 22px rgba(194, 139, 30, .18);
}

.plan-checkout-card {
    padding: 28px;
    border: 1px solid #e6e8ec;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 46px rgba(18, 24, 34, .07);
}

.plan-checkout-head {
    margin-bottom: 24px;
}

.plan-checkout-head h1 {
    margin: 0 0 8px;
    color: #171d29;
    font-size: 25px;
    line-height: 1.35;
}

.plan-checkout-head p {
    margin: 0;
    color: #747b86;
    line-height: 1.8;
}

.plan-checkout-plan {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding: 16px 18px;
    border: 1px solid rgba(194, 139, 30, .22);
    border-radius: 14px;
    background: rgba(194, 139, 30, .055);
}

.plan-checkout-plan strong {
    color: #202631;
    font-size: 16px;
}

.plan-checkout-plan span {
    flex-shrink: 0;
    color: #a16d0b;
    font-size: 17px;
    font-weight: 900;
}

.plan-checkout-card label {
    display: block;
    margin: 0 0 7px;
    color: #303641;
    font-size: 13px;
    font-weight: 800;
}

.plan-checkout-card input[type="text"] {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid #dfe2e7;
    border-radius: 12px;
    background: #fff;
    color: #202631;
    font: inherit;
    outline: none;
    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.plan-checkout-card input[type="text"]:focus {
    border-color: #c28b1e;
    box-shadow: 0 0 0 3px rgba(194, 139, 30, .10);
}

.plan-checkout-help {
    margin: 8px 0 18px;
    color: #858b94;
    font-size: 12px;
}

.plan-checkout-error {
    margin-top: 7px;
    color: #b42318;
    font-size: 12px;
    font-weight: 700;
}

.plan-checkout-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 11px 18px;
    border: 0;
    border-radius: 12px;
    background: #c28b1e;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    text-decoration: none;
    transition:
        transform .18s ease,
        filter .18s ease,
        box-shadow .18s ease;
}

.plan-checkout-primary:hover {
    transform: translateY(-1px);
    filter: brightness(.97);
    box-shadow: 0 10px 24px rgba(194, 139, 30, .20);
}

.plan-checkout-back {
    display: block;
    margin-top: 14px;
    color: #737983;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.plan-checkout-back:hover {
    color: #956307;
}

.plan-checkout-confirmation {
    display: grid;
    gap: 0;
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid #e7e9ed;
    border-radius: 15px;
}

.plan-checkout-confirmation > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 17px;
    border-bottom: 1px solid #eceef1;
}

.plan-checkout-confirmation > div:last-child {
    border-bottom: 0;
}

.plan-checkout-confirmation span {
    color: #737a85;
    font-size: 13px;
}

.plan-checkout-confirmation strong {
    color: #222934;
    text-align: end;
    font-size: 14px;
}

.plan-checkout-confirmation__total {
    background: rgba(194, 139, 30, .065);
}

.plan-checkout-confirmation__total span,
.plan-checkout-confirmation__total strong {
    color: #956307;
    font-size: 16px;
    font-weight: 900;
}

@media (max-width: 640px) {
    .plan-checkout-shell {
        width: min(100% - 20px, 760px);
        margin-top: 20px;
    }

    .plan-checkout-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-checkout-card {
        padding: 19px;
        border-radius: 16px;
    }

    .plan-checkout-head h1 {
        font-size: 21px;
    }

    .plan-checkout-plan {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .plan-checkout-confirmation > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .plan-checkout-confirmation strong {
        text-align: start;
    }
}

/* DLEELK UNIVERSAL PLAN CHECKOUT END */
