/* =========================================================
   GET APPROVED
   ========================================================= */

.approval-section {
    padding: 55px 0 70px;

    color: var(--carpal-navy);
}


/* ---------------------------------------------------------
   LEFT CONTENT
   --------------------------------------------------------- */

.approval-title {
    margin: 0 0 20px;

    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;

    letter-spacing: -0.025em;
}


.approval-copy {
    max-width: 680px;
}


.approval-copy p {
    margin: 0 0 28px;

    font-size: 20px;
    line-height: 1.35;
}


.approval-how-title {
    margin: 30px 0 22px;

    font-size: 20px;
    font-weight: 700;
}


.approval-how-list {
    margin: 0;
    padding-left: 32px;

    font-size: 18px;
    line-height: 1.35;
}


.approval-how-list li {
    margin-bottom: 7px;
}


/* =========================================================
   FORM PANEL
   ========================================================= */

.approval-form-panel {
    padding: 38px 42px 45px;

    background: #effcf5;

    border-radius: 48px;

    color: #102f2e;
}


/* ---------------------------------------------------------
   FORM TITLE
   --------------------------------------------------------- */

.approval-form-title {
    margin: 0 0 14px;

    text-align: center;

    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;

    letter-spacing: -0.025em;
}


.approval-form-question {
    margin: 0;

    text-align: center;

    font-size: 20px;
    line-height: 1.3;
}


/* =========================================================
   VEHICLE OPTIONS
   ========================================================= */

.approval-vehicle-options {
    max-width: 390px;

    margin: 0 auto;
}


.approval-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 165px;

    padding: 18px;

    border: 2px solid #153f3d;
    border-radius: 38px;

    background: transparent;
    color: #111;

    cursor: pointer;

    transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        transform 0.15s ease;
}


.approval-option img {
    width: 92px;
    height: 72px;

    object-fit: contain;

    margin-bottom: 12px;
}


.approval-option span {
    font-size: 20px;
    font-weight: 400;
}


.approval-option:hover {
    background: #dff8ec;

    transform: translateY(-2px);
}


.approval-option.selected {
    background: var(--carpal-green);
    border-color: var(--carpal-navy);
}


/* =========================================================
   NEXT BUTTON
   ========================================================= */

.approval-next-btn {
    display: block;

    width: 100%;
    max-width: 390px;

    min-height: 60px;

    margin: 42px auto 0;

    border: 0;
    border-radius: 20px;

    background: #28c4a0;
    color: #fff;

    font-size: 28px;
    font-weight: 800;

    transition:
        transform 0.15s ease,
        opacity 0.15s ease;
}


.approval-next-btn:hover {
    transform: translateY(-2px);

    opacity: 0.95;
}


/* ---------------------------------------------------------
   PROGRESS
   --------------------------------------------------------- */

.approval-progress-text {
    margin-top: 34px;

    text-align: center;

    font-size: 18px;
    font-weight: 700;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .approval-form-panel {
        margin-top: 20px;
    }

}


@media (max-width: 767.98px) {

    .approval-section {
        padding: 40px 0 50px;
    }

    .approval-title {
        font-size: 34px;
    }

    .approval-copy p {
        font-size: 17px;
    }

    .approval-how-list {
        font-size: 16px;
    }

    .approval-form-panel {
        padding: 30px 22px 35px;

        border-radius: 34px;
    }

    .approval-form-title {
        font-size: 34px;
    }

    .approval-form-question {
        font-size: 17px;
    }

    .approval-option {
        min-height: 135px;

        border-radius: 28px;
    }

    .approval-option img {
        width: 74px;
        height: 58px;
    }

    .approval-option span {
        font-size: 17px;
    }

    .approval-next-btn {
        min-height: 68px;

        font-size: 21px;
    }

}