@charset "utf-8";

.financing-page {
    background-color: #f5f7f8;
    background-image: linear-gradient(180deg, #fafbfc 0%, #f1f4f5 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.financing-page__intro {
    max-width: 660px;
    margin: 0 auto 30px;
}

.financing-page__intro h1 {
    margin: 0 0 12px !important;
    color: #171717;
    font-size: 32px;
    font-weight: 800;
}

.financing-page__intro p {
    max-width: 560px;
    margin: 0 auto;
    color: #60656a;
    font-size: 15px;
    line-height: 1.6;
}

.financing-wizard {
    max-width: 620px;
    margin: 0 auto;
    padding: 30px 34px 28px;
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .06);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(24, 32, 40, .14);
}

.financing-wizard__header,
.financing-wizard__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.financing-wizard__eyebrow {
    color: #111;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.financing-wizard__counter {
    padding: 7px 11px;
    color: var(--main-theme-color, #cd0c2a);
    background: #fff4f5;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.financing-wizard__progress {
    height: 4px;
    margin: 17px 0 36px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 4px;
}

.financing-wizard__progress span {
    display: block;
    width: 14.2857%;
    height: 100%;
    background: var(--main-theme-color, #cd0c2a);
    border-radius: inherit;
    transition: width .2s ease;
}

.financing-wizard fieldset {
    display: none;
    min-height: 245px;
    padding: 0;
    border: 0;
}

.financing-wizard fieldset.is-active {
    display: block;
    animation: financing-step-in .22s ease-out;
}

@keyframes financing-step-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.financing-wizard h3 {
    margin: 0 0 16px;
    color: #111;
    font-size: 22px;
    font-weight: 700;
}

.financing-wizard h4 {
    margin-top: 0 !important;
}

.financing-wizard .label {
    margin-top: 12px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.financing-wizard .row {
    margin: 0 -8px 4px;
}

.financing-wizard .col {
    padding-right: 8px;
    padding-left: 8px;
}

.financing-wizard .input input,
.financing-wizard .select select {
    height: 42px;
    border: 1px solid #dedede;
    border-radius: 8px;
    color: #25292d;
    box-shadow: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.financing-wizard .input input:focus,
.financing-wizard .select select:focus {
    border-color: var(--main-theme-color, #cd0c2a);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--main-theme-color, #cd0c2a) 14%, transparent);
    outline: 0;
}

.financing-wizard .icon-prepend {
    color: #85898d;
}

.financing-wizard .financing-field-error {
    border-color: #d83a4a !important;
    box-shadow: 0 0 0 3px rgba(216, 58, 74, .12) !important;
}

.financing-wizard__actions {
    min-height: 44px;
    margin-top: 20px;
}

.financing-wizard__actions .btn {
    min-width: 116px;
    height: 42px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.financing-wizard__actions .btn:hover,
.financing-wizard__actions .btn:focus {
    transform: translateY(-1px);
}

#financing-next-btn,
#submit-financing-btn {
    background: var(--main-theme-color, #cd0c2a) !important;
    border-color: var(--main-theme-color, #cd0c2a) !important;
    box-shadow: 0 5px 12px color-mix(in srgb, var(--main-theme-color, #cd0c2a) 28%, transparent);
}

#financing-previous-btn {
    color: #555;
    background: #fff;
    border-color: #d8dadd;
}

#financing-previous-btn {
    visibility: hidden;
}

#submit-financing-btn {
    display: none;
}

@media (max-width: 767px) {
    .financing-wizard {
        padding: 22px 18px;
        border-radius: 10px;
    }

    .financing-page__intro h1 {
        font-size: 27px;
    }

    .financing-wizard__eyebrow {
        font-size: 10px;
    }

    .financing-wizard__progress {
        margin-bottom: 30px;
    }

    .financing-wizard fieldset {
        min-height: 280px;
    }

    .financing-wizard__actions .btn {
        min-width: 102px;
    }
}