/***
* Animation
*/
@keyframes slide-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.quotation-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
}

.quotation-wrapper .top-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.quotation-wrapper .top-header h3 {
    margin-bottom: 1.81rem;
    color: var(--gray-dark-4);
    font-size: 1.15rem;
    text-align: center;
    font-family: var(--family-title-2);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
}

.quotation-wrapper .steps-wrapper {
    display: flex;
    gap: 2rem;
}

/*** Grey Line in the back of steps ***/
.quotation-wrapper .steps-wrapper .step::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 140%;
    left: -27%;
    top: 24%;
    z-index: -1;
    background-color: var(--brand);
}

.quotation-wrapper .steps-wrapper .step {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.quotation-wrapper .steps-wrapper .step:not(:last-child).active label::after {
    /* content: ""; */
    position: absolute;
    height: 2px;
    width: 5.3rem;
    left: 104.5%;
    background-color: var(--gray-light-3);
}

/*** Circle brother next from active circle brother in base status ***/
.quotation-wrapper .steps-wrapper .step.active~.step::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 150%;
    left: -27%;
    top: 24%;
    z-index: -2;
    background-color: var(--gray-light-3);
}

.quotation-wrapper .steps-wrapper .step.active~.step label {
    position: relative;
    width: 3rem;
    height: 3rem;
    background-color: var(--white);
    border-radius: 2rem;
    border: 1px solid var(--gray-light-3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--family-title);
    font-weight: 600;
    color: var(--gray-light-3);
    font-size: 1.1rem;
}

/*** Circle in base status ***/
.quotation-wrapper .steps-wrapper .step label {
    position: relative;
    width: 3rem;
    height: 3rem;
    background-color: var(--white);
    border-radius: 2rem;
    border: var(--border-sm) var(--brand);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--family-title);
    font-weight: 400;
    color: var(--brand);
    font-size: 1.1rem;
}

.quotation-wrapper .steps-wrapper .step.active label {
    background-color: var(--brand);
    color: var(--white);
    border: var(--border-sm) var(--brand);
    font-family: var(--family-title);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* .quotation-wrapper .steps-wrapper .step.active + .step label::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 170%;
    left: -170%;
    z-index: -1;
    background-color: var(--black);
} */

.quotation-wrapper .steps-wrapper .step .description {
    font-family: var(--family-title-2);
    font-size: .9rem;
    text-align: center;
    color: var(--gray-dark-4);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/***
*
*   Article
*   
***/
.step-content {
    width: 28rem;
}
.step-content-xxl {
    width: 38rem;
}
.flex-base,
.quotation-wrapper .content-wrapper.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quotation-wrapper .content-wrapper.active {
    margin-top: 2rem;
    animation: slide-in .5s forwards;
}

.quotation-wrapper .content-wrapper.closing {
    animation: slide-out .5s forwards;
}

.quotation-wrapper .content-wrapper:not(active) {
    display: none;
}

.quotation-wrapper .content-wrapper {
    display: none;
    padding-bottom: 2rem;
}

.quotation-wrapper .content-wrapper li {
    width: auto;
}

.flex-columns {
    flex-direction: column;
}

.hidden {
    display: none;
}

.title-1,
.title-1 p {
    font-family: var(--family-title-2);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.title-1 p {
    margin-bottom: 0;
}
.content-wrapper .title-1 {
    margin-bottom: 3.94rem;
}

.title-1 span,
.title-1 strong {
    font-family: var(--family-title);
    font-weight: 400;
}

.quotation__notification,
.error-text {
    display: none;
    font-size: .8rem;
    font-weight: 600;
    color: var(--error);
    padding-left: 1rem;
}

.quotation-wrapper .tabs-wrapper {
    /* height: 70vh; */
    margin: 2rem 0 2vh 0;
}

.quotation-wrapper .tabs-wrapper .tabs {
    list-style: none;
    gap: 2rem;
}

.quotation-wrapper .tabs-wrapper .tabs .label {
    padding: .5rem;
    font-family: var(--family-title);
    color: var(--gray-dark-1);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.125rem;
    text-decoration: none;
    line-height: normal;
}

.quotation-wrapper .tabs-wrapper .tabs .label.active {
    color: var(--brand);
    border-bottom: var(--border-md) var(--brand);
}

.quotation__content-wrapper {
    margin-bottom: 5rem;
}

.quotation__content-wrapper .content:not(active) {
    display: none;
}

.quotation__content-wrapper .content.active {
    display: flex;
    justify-content: center;
    padding: 0 3rem;
    width: 100%;
    left: 0;
    animation: slide-in .5s forwards;
}

.quotation__content-wrapper .content.closing {
    animation: slide-out .5s forwards;
}

.quotation-wrapper .tabs-wrapper .tabs .label.active+.content {
    display: flex;
    height: auto;
    overflow-y: auto;
}

.quotation__content-wrapper .content.active .card-wrapper,
.quotation-wrapper .tabs-wrapper .card-wrapper {
    padding: .5rem .5rem;
}

.quotation__content-wrapper .content.active .card-wrapper img,
.quotation-wrapper .tabs-wrapper .card-wrapper img {
    margin: 0;
}

.quotation-wrapper .tabs-wrapper .content {
    display: none;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding: 0 3rem;
    position: absolute;
    width: 100%;
    left: 0;
}

.quotation__content-wrapper .content.active .card-model,
.quotation-wrapper .tabs-wrapper .content .card-model {
    position: relative;
    height: 100%;
    min-height: 8.5rem;
    background-color: var(--gray-light-4);
    padding: 1rem 1rem 0;
    border-radius: 0.4rem 0.4rem 0 0;
    border-bottom: var(--border-sm) var(--brand);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.quotation__content-wrapper .content.active .card-model img,
.quotation-wrapper .tabs-wrapper .content .card-model img {
    width: 100%;
    min-width: 12rem;
    max-width: 800px;
}

.quotation__content-wrapper .content.active .card-model .footer,
.quotation-wrapper .tabs-wrapper .content .card-model .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.5rem 0 1rem;
}

.quotation__content-wrapper .content.active .card-model .footer h4,
.quotation-wrapper .tabs-wrapper .content .card-model .footer h4 {
    margin: 0;
    font-family: var(--family-title);
    font-size: 1.5rem;
    color: var(--gray-dark-4);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


/***
* Aside Modelo Selected
***/
.quotation-wrapper .selected-model {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--gray-light-4);
    position: sticky;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    padding: 2rem;
    z-index: var(--aside-model-layer);
    border-bottom: var(--border-md) var(--brand);
}

.main-content-wrapper {
    transition: all .5s;
}

.quotation-wrapper .selected-model.active {
    display: flex;
    animation: slide-in 1s forwards;
}

.quotation-wrapper .selected-model.closing {
    display: flex;
    animation: slide-out 1s forwards;
}

.quotation-wrapper .selected-model h3 {
    text-align: center;
    font-size: .8rem;
    color: var(--gray-dark-4);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.quotation-wrapper .selected-model img {
    width: 95%;
    margin-bottom: .5rem;
}

.quotation-wrapper .selected-model .footer {
    display: flex;
    flex-direction: column;
    width: 80%;
}

.quotation-wrapper .selected-model .footer label {
    font-size: .8rem;
    margin-top: .4rem;
    color: var(--gray-dark-1);
    font-family: var(--family-title);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.quotation-wrapper .selected-model .footer input:hover,
.quotation-wrapper .selected-model .footer input:focus,
.quotation-wrapper .selected-model .footer input:focus-within,
.quotation-wrapper .selected-model .footer input:active,
.quotation-wrapper .selected-model .footer input {
    border: none;
    background: transparent;
    outline: none;
}

.quotation-wrapper .selected-model .footer .group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: var(--border-xs) var(--gray);
    padding: 0 .5rem;
}

.quotation-wrapper .selected-model .footer .group span {
    color: var(--gray-dark-4);
    font-family: var(--family-title);
    font-size: .9rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}

.quotation-wrapper .selected-model .footer .group svg {
    height: 60%;
    cursor: pointer;
}

/**
    Dropdown
*/
.dropdown-input {
    /* max-width: 20rem; */
    cursor: pointer;
    align-items: center;
    height: 4.0625rem;
    background: var(--gray-light-4);
}
.dropdown-input.bg-white {
    background: var(--brand-white);
}

.dropdown-input .selected h3 {
    text-wrap: nowrap;
    font-size: 1.125rem;
    font-family: var(--family-title);
    font-weight: 400;
    color: var(--gray-dark-4);
}
.dropdown-input::after {
    content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiBmaWxsPSJub25lIj4NCiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yLjU5NzkyIDUuODU3NDhDMi44Nzc2MiA1LjUzMjgyIDMuMzUwMDEgNS41MTI1OCAzLjY1MzAyIDUuODEyMjZMNy45OTk5IDEwLjExMTRMMTIuMzQ2OCA1LjgxMjI2QzEyLjY0OTggNS41MTI1OCAxMy4xMjIyIDUuNTMyODIgMTMuNDAxOSA1Ljg1NzQ4QzEzLjY4MTYgNi4xODIxMyAxMy42NjI3IDYuNjg4MjYgMTMuMzU5NyA2Ljk4Nzk0TDguNTA2MzUgMTEuNzg3OUM4LjIyMDMzIDEyLjA3MDggNy43Nzk0NyAxMi4wNzA4IDcuNDkzNDUgMTEuNzg3OUwyLjY0MDEyIDYuOTg3OTRDMi4zMzcxMSA2LjY4ODI2IDIuMzE4MjIgNi4xODIxMyAyLjU5NzkyIDUuODU3NDhaIiBmaWxsPSIjNDE0MTQxIi8+DQo8L3N2Zz4=);
    height: 1rem;
}
.dropdown-input[open] {
    border-bottom: var(--border-sm) var(--brand);
}

/**
* Model-Card
*/
.quotation-wrapper .step-content select.form-model-select:active,
.quotation-wrapper .step-content select.form-model-select:focus,
.quotation-wrapper .step-content select.form-model-select:hover,
.quotation-wrapper .step-content select.form-model-select {
    position: relative;
    width: 100%;
    border: none;
    border-bottom: var(--border-sm) var(--black);
    margin-top: 0.5rem;
    padding: 0.5rem;
    outline: none;
}

.quotation-wrapper .step-content select.form-model-select.form-md-grey {
    background: var(--grey-light-1);
    width: 20vw;
}

.quotation-wrapper .step-content select.form-model-select.error {
    border-bottom: var(--border-sm) var(--error);
}

.quotation-wrapper .step-content select.form-model-select.error+label.error-text {
    display: block;
}

.quotation-wrapper .model-card {
    padding: 0rem 1rem 1rem;
    background: var(--gray-light-4);
    border-bottom: var(--border-sm) var(--brand);
    border-radius: 0.4rem 0.4rem 0 0;
    width: 100%;
}

.quotation-wrapper .model-card img {
    max-width: 100%;
}

.quotation-wrapper .model-card label {
    align-self: flex-start;
    text-align: left;
    font-weight: 400;
    font-family: var(--family-title);
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
}

.quotation-wrapper .group-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    width: 100%;
    gap: .4rem;
}

.quotation-wrapper .group-buttons-md {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    width: 50%;
    gap: .4rem;
    padding: 0;
    align-items: center;
}

.quotation-wrapper .cta-previous,
.quotation-wrapper .cta-next {
    font-family: var(--family-title);
    font-weight: 400;
    font-size: 1.125rem;
    border: var(--border-xs) var(--brand);
    /* padding: .6rem 0; */
    background: var(--white);
    color: var(--brand);
    width: 28rem;
    max-width: 28rem;
    height: 3.5rem;
    cursor: pointer;
}

.quotation-wrapper .cta-next {
    background: var(--brand);
    color: var(--brand-white);
}

/***
* Step 4: Registra tus datos
*/
.legal {
    color: var(--gray-dark-4, #414141);
    font-family: var(--family-title-2);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.personal-data-wrapper {
    width: 50%;
    transition: all .5s;
}

.form-model-control:active,
.form-model-control:focus,
.form-model-control:hover,
.form-model-control {
    background: var(--gray-light-4);
    padding: 0 1.5rem;
    margin: 0.78rem 0;
    width: 100%;
    height: 4rem;
    border: none;
    border-bottom: var(--border-sm) var(--gray-light-3);
    outline: none;
    transition: all .5s;

    color: var(--gray-dark-4, #414141);
    font-family: var(--family-title);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-model-control:focus,
.form-model-control:hover {
    border-bottom: var(--border-sm) var(--brand);
}

.form-group-radios {
    padding: 0 1rem;
}

.form-group-radios strong {
    color: var(--gray-dark-4, #414141);
    font-family: var(--family-title);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-group-radios p {
    padding: 0;
    margin: 0;
    font-size: 1.125rem;
}

.form-group-radios .radio-group {
    display: flex;
    justify-content: start;
    padding: 0 1rem;
    gap: 1rem;
}

.form-group-radios .radio-group label {
    display: flex;
    justify-content: center;
    gap: .2rem;
    font-size: 1.125rem;
    transition: all .5s;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.form-group-checkbox p {
    font-size: 1.125rem;
    margin: 0;
}

.short-response-question {
    margin-top: .5rem;
}

.quotation-wrapper .personal-data-wrapper .form-model-control.error {
    border-bottom: var(--border-sm) var(--error);
}

.quotation-wrapper .personal-data-wrapper .form-model-control.error+label.error-text {
    display: block;
}

.quotation-wrapper .personal-data-wrapper .border-top-error {
    border-top: var(--border-sm) var(--error);
}




/**
* Thank you page
*/
.thank-you-page.hidden+.redirection-message {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
    color: var(--gray-dark-4);
    font-family: var(--family-title);
    font-size: 1rem;
}

.redirection-message {
    display: none;
}

.thank-you-page {
    margin-top: 5rem;
}

.thank-you-page .general-title {
    color: var(--gray-dark-4);
    text-align: center;
    font-family: var(--family-title-2);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.thank-you-page .title {
    color: var(--brand-black);
    text-align: center;
    font-family: var(--family-title);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 2rem;
}

.thank-you-page .description {
    color: var(--gray-dark-4);
    text-align: center;
    font-family: var(--family-title-2);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 2rem 0;
}

.thank-you-page .group-top-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.thank-you-page .group-top-button .button {
    color: var(--black);
    text-align: center;
    text-decoration: none;
    font-family: var(--family-title);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.thank-you-page .group-top-button .button {
    display: flex;
    width: 21.9375rem;
    height: 4.375rem;
    padding: 0rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: var(--gray-light-4);
    color: var(--black);
    text-align: center;
    font-family: var(--family-title);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
}

.thank-you-page .label-section {
    color: var(--gray-dark-4);
    text-align: center;
    font-family: var(--family-title-2);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.thank-you-page .data-info {
    background: var(--gray-light-4);
    padding: 2rem 1.5rem;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    border-bottom: var(--border-md) var(--brand);
}

.thank-you-page .data-info img {
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.thank-you-page .data-info .labels-model {
    color: var(--gray-dark-4);
    font-family: var(--family-title);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.thank-you-page .data-info .label-description {
    color: var(--gray-dark-4);
    font-family: var(--family-title-2);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: .62rem 0 0 0;
}

.thank-you-page .data-info .label-price {
    color: var(--gray-dark-4);
    font-family: var(--family-title);
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.thank-you-page .data-info .top-description {
    color: var(--brand);
    font-family: var(--family-title);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    justify-content: space-between;
    width: 70%;
}

.thank-you-page .data-info .label-data {
    color: var(--gray-dark-1);
    font-family: var(--family-title-2);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.thank-you-page .data-info .response-label-data {
    color: var(--gray-dark-4);
    font-family: var(--family-title);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    word-wrap: break-word;
}

.thank-you-page .data-info .data-personal-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
    align-self: stretch;
}

.thank-you-page .data-info .label-data-personal {
    color: var(--gray-dark-4);
    font-family: var(--family-title);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.thank-you-page .data-info .label-data-personal p {
    margin-bottom: .4rem;
}

.thank-you-page .data-info .label-data-personal p strong {
    font-family: var(--family-title);
    font-weight: 400;
}

.thank-you-page .data-info .response-label-data-personal {
    color: var(--brand);
    font-family: var(--family-title);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.response-label-data.full-name {
    word-wrap: break-word;
}

.thank-you-page .links-bottom-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.thank-you-page .links-bottom-wrapper > div {
    display: flex;
}

.thank-you-page .links-bottom-wrapper .link-bottom {
    display: flex;
    height: 4rem;
    padding: 0rem 1rem;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.thank-you-page .links-bottom-wrapper .link-bottom span {
    color: var(--black);
    font-family: var(--family-title);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.thank-you-page .info-notification,
.personal-data-wrapper .info-notification {
    display: flex;
    padding: 0.75rem;
    margin-top: 1rem;
    align-items: flex-start;
    gap: 0.625rem;
    align-self: stretch;
    border-radius: 0.25rem;
    border: var(--border-sm) var(--notification-default);
    background: var(--notification-light);

    font-family: var(--family-title-2);
    font-weight: 400;
}

.thank-you-page .info-notification {
    margin-bottom: 3rem;
}

.thank-you-page .info-notification strong,
.personal-data-wrapper .info-notification strong {
    font-family: var(--family-title);
}

.personal-data-wrapper .info-notification .icon-svg {
    width: 4%;
}

.thank-you-page .info-notification .icon-svg {
    width: 3%;
}

.thank-you-page .info-notification .icon-svg svg,
.personal-data-wrapper .info-notification .icon-svg svg {
    width: 1.3rem;
    height: 1.3rem;
}

.thank-you-page .info-notification .content h4,
.personal-data-wrapper .info-notification .content h4 {
    margin: 0;
    color: var(--black-100, #000);
    font-family: var(--family-title);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem;
}

.thank-you-page .info-notification .content p,
.personal-data-wrapper .info-notification .content p {
    margin: .5rem 0 0 0;
    color: var(--black, #000);
    font-family: var(--family-title-2);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
}
.thank-you-page .mobile-title-collapser {
    display: none;
}

.dropdown-input .selected {
    overflow: hidden;
}

/***
*   Media Queries
***/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .main-content-wrapper {
        /* overflow: hidden; */
        margin: 0;
        padding: 0;
    }
    .quotation-wrapper .steps-wrapper {
        gap: 1rem;
    }
    .content-wrapper .title-1 {
        margin-bottom: 0;
    }

    .title-1,
    .title-1 p {
        font-size: 1.6rem;
    }

    .quotation-wrapper .tabs-wrapper li.active {
        border-bottom: var(--border-sm) var(--brand);
    }

    .quotation-wrapper .tabs-wrapper .tabs .label.active {
        color: var(--brand);
        border-bottom: none;
        font-family: var(--family-title);
    }

    .quotation-wrapper .tabs-wrapper .tabs .label {
        display: block;
        text-align: center;
        font-size: 0.875rem;
        font-family: var(--family-title-2);
    }

    .quotation-wrapper .steps-wrapper .step::before {
        top: 21%;
    }
    .quotation-wrapper .steps-wrapper .step.active~.step::before {
        top: 21%;
    }

    .quotation-wrapper .tabs-wrapper .tabs {
        width: 100%;
        justify-content: start;
        overflow-x: auto;
    }

    .quotation__content-wrapper .content.active {
        padding: 0;
        margin: 0;
    }
    .quotation__content-wrapper .content.active .card-wrapper {
        width: 100%;
    }

    .quotation-wrapper div.group-buttons {
        width: 100vw;
        gap: 0;
    }

    div.personal-data-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .quotation-wrapper .group-buttons, .quotation-wrapper .group-buttons-md {
        flex-direction: row;
        gap: 0;
        width: 100vw;
    }

    .padding-mobile {
        padding: 0 1rem;
        margin: 0;
    }
    .w-sm-full {
        margin: 0;
    }
    .quotation-wrapper .top-header {
        padding: 1.5rem;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .thank-you-page {
        margin: 1rem 1rem 5rem;
    }

    .thank-you-page .title {
        font-size: 1.5rem;
    }

    .thank-you-page .group-top-button .button {
        justify-content: start;
    }

    .thank-you-page .data-info img {
        max-width: 280px;
        width: 100%;
        padding: 0;
        margin: 0 0 1.5rem;
    }
    .thank-you-page .data-info .top-description {
        width: 100%;
    }
    
    .thank-you-page .mobile-title-collapser {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--brand);        
        margin: 1rem 0 0rem;
        font-family: var(--family-title);       
        transition: display 0s, opacity .5s ease-in-out .5s;
    }
    .thank-you-page .mobile-title-collapser + div {
        opacity: 0;
        display: none;
    }
    .thank-you-page .mobile-title-collapser.active + div {
        display: block;
        opacity: 1;
    }
    .thank-you-page .mobile-title-collapser.active + div .top-description {
        display: none;
    }
    .quotation-wrapper {
        margin: 0;
        padding: 0
    }

    .quotation-wrapper .content-wrapper.active {
        position: relative;
        margin-top: 0;
        height: auto;
        justify-content: start;
        margin: 0;
        padding: 0 0 2rem;
    }

    .quotation-wrapper .steps-wrapper .step::before {
        /* top: 18%; */
    }

    .quotation-wrapper .tabs-wrapper {
        margin: 0;
        width: 100%;
        /*height: 100vh;*/
    }

    .quotation-wrapper .tabs-wrapper .tabs .label.active+.content {
        height: 60%;
    }

    .flex-base {
        width: 80%;
    }

    .card-wrapper {
        width: 60%;
    }

    .tabs {
        padding: 0;
        gap: 0;
    }

    .tabs .label {
        font-size: .8rem;
    }

    .title-1,
    .title-1 p {
        text-align: center;
        padding: 1rem;
    }

    .quotation-wrapper .step-content select.form-model-select.form-md-grey {
        width: 100%;
    }

    .quotation-wrapper .model-card {
        width: 100%;
    }

    .quotation-wrapper .selected-model.active {
        position: relative;
        width: 100%;
        height: 15%;
        margin: 0;
        padding: 1rem;
        flex-direction: row-reverse;
        justify-content: space-around;
    }

    .quotation-wrapper .selected-model.active h3 {
        display: none;
    }

    .quotation-wrapper .selected-model.active img {
        width: auto;
        height: 100%;
        max-width: 280px;
    }

    .quotation-wrapper .selected-model .footer {
        width: 90%;
        gap: 1rem;
        margin-left: 1rem;
    }

    .quotation-wrapper .selected-model .footer label {
        display: none;
    }

    .quotation-wrapper .selected-model.active+.main-content-wrapper {
        transform: translateX(0%);
    }

    .personal-data-wrapper {
        width: 80%;
    }

    .short-response-question {
        margin-top: 1rem;
        gap: 1rem;
    }

    .legal {
        gap: 1rem;
    }

    .form-group-checkbox {
        justify-content: start;
    }

    .quotation-wrapper .group-buttons,
    .quotation-wrapper .group-buttons-md {
        flex-direction: row-reverse;
        width: 100%;
    }

    .w-sm-full {
        width: 100%;
    }

    .quotation-wrapper .selected-model .footer .group {
        padding: 0.2rem 0.5rem;
    }
    .thank-you-page .links-bottom-wrapper > div {
        flex-direction: column;
    }
    .thank-you-page .links-bottom-wrapper .link-bottom {
        padding: 1rem;
    }
    .thank-you-page .info-notification .icon-svg {
        width: 10%;
    }

    .personal-data-wrapper .info-notification .icon-svg {
        width: 6%;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .quotation__content-wrapper .content.active .card-model img,
    .quotation-wrapper .tabs-wrapper .content .card-model img {
        width: 100%;
        min-width: auto;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

    .quotation__content-wrapper .content.active .card-model img,
    .quotation-wrapper .tabs-wrapper .content .card-model img {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 1600px) {
    .personal-data-wrapper {
        width: 70%;
        transition: all .5s;
    }    
}