* {
    box-sizing: border-box;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10000;
    transform: translate(50%, 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .loader p {
        font-size: 20px;
        color: #888;
    }

    .loader span {
        font-size: 40px;
        color: #888;
        animation: rota 1.2s cubic-bezier(1, 1.01, 0, -0.03) infinite;
    }

@keyframes rota {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.frame,
.vin {
    z-index: 10001;
}

.popup-mask {
    background: #000;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 80%;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
    z-index: 10000;
}

.submit-test {
    text-align: center;
}

    .submit-test:hover button {
        background: #EB0A1E;
        color: #fff;
    }

    .submit-test button {
        background: none;
        width: 105px;
        height: 40px;
        border: 1px solid #EB0A1E;
        color: #EB0A1E;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        transition: 0.5s;
    }

.page-container {
    max-width: 100%;
    margin: auto;
    margin-top: 94px;
    padding: 0;
    padding-bottom: 30px !important;
    width: 100%;
}

.page-content-container {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    padding: 0px 16px !important;
}

.tabs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    margin-left: 40px;
}

.tab {
    cursor: pointer;
    margin-right: 40px;
    border-bottom: 3px solid transparent;
    font-weight: 600;
}

    .tab h2 {
        font-weight: 600;
    }

.--tab-active {
/*    color: #EB0A1E;
    border-bottom: 3px solid #EB0A1E;
    transition: all 0.5s ease-in-out;*/
}

.tab-title {
    white-space: nowrap;
    text-align: center;
    margin: 0;
    font-size: 16px;
    line-height: 120%;
}

.contain-top {
    padding: 80px 0;
    width: 620px;
    max-width: 100%;
    margin: 0 auto;
}

.contain-bottom {
    background-color: #fff;
    width: 100%;
    height: 120px;
    padding: 40px;
}

.section-content-container,
.section-content-container-2,
.section-content-container-3 {
    display: none;
}

.--section-tab-active {
    display: block !important;
    min-height: 200px;
}

.form-group {
    margin-bottom: 24px;
}

    .form-group label {
        width: 100%;
        font-size: 16px;
        color: #000;
        margin-bottom: 16px;
    }

    .form-group input {
        height: 48px;
        width: 100%;
    }

.tooltip {
    position: relative;
    opacity: 1;
}

.tooltip-text {
    position: absolute;
    font-size: 30px;
    font-weight: 600;
    right: 10px;
    cursor: pointer;
}

.button {
    width: 120px;
    background-color: #f5f5f5;
    border: 1px solid #EB0A1E;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .button a {
        color: #EB0A1E;
    }

.popup {
    position: absolute;
    left: 10%;
    top: 270px;
    width: 80%;
    opacity: 0;
    height: 0;
    background-color: #FFF;
    color: #3a3a3a;
    font-size: 16px;
    line-height: 150%;
    overflow: hidden;
    padding: 60px 80px;
    z-index: 10001;
}

/* Ensure VIN/Frame guide images scale correctly on mobile (no horizontal clipping). */
.popup .vin img,
.popup .frame img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

    .popup .close {
        position: relative;
        top: -56px;
        right: -76px;
        width: 32px;
        height: 32px;
        border: 1px solid #ccc;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .popup h1 {
        text-align: center;
        font-size: 38px;
        font-weight: 600;
        color: #1a1a11;
    }

/* RESPONSIVE */
@media (max-width: 1160px) {
    .tabs-container {
        justify-content: left;
        margin-left: 0;
        overflow-x: scroll;
    }

    .tab-title {
        font-size: 14px;
    }

    .popup {
        left: 0;
        top: 60px;
        width: 100%;
        padding: 19px 16px;
    }

        .popup h1 {
            font-size: 16px;
        }
}
