:root {
    --texto: #2D2A26;
    --acentuacion: #47B4E5;
    --sombra: #DFE9F3;
    --blanco: #FFFFFF;
    --gris: #dcdcdc;
    --submit: #B6FF2F;
    --fondoCuerpo: #ebf0f3;
    --fuentePrincipal: 'DM Sans', sans-serif;
}

/* Globales */
html {
    /*font-size: 62.5%;*/
    box-sizing: border-box;
    font-size: 1rem;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    /*font-size: 20px; 1rem = 10px */
    /*font-family: var(--fuentePrincipal);*/
    line-height: 1.5;
}

/* Utilidades */
.centrar {
    text-align: center !important;
}

.acentuacion {
    color: var(--acentuacion);
}

.txtColor {
    color: var(--texto);
}

.flex {
    display: flex;
}

.evenly {
    justify-content: space-between;
}

/* Botones */
/*.boton {
    background-color: var(--acentuacion);
    color: var(--blanco) !important;
    padding: 1rem 2rem !important;
    text-decoration: none;
    font-weight: 700;
    border-radius: 3rem;
    text-align: center;
    border: none;
}*/

.boton--mayus {
    text-transform: uppercase;
}

.boton--verde {
    text-transform: uppercase;
    background-color: var(--submit);
    color: #000000 !important;
}

.boton--preguntas {
    font-size: 1.8rem;
    width: 25rem;
    border-radius: 1rem;
    margin: 3rem auto 0 auto;
}

/* Navegacion */
.sombra {
    -webkit-box-shadow: 0px 5px 5px 0px var(--sombra);
    -moz-box-shadow: 0px 5px 5px 0px var(--sombra);
    box-shadow: 0px 5px 5px 0px var(--sombra);
}

.navegacion {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .navegacion {
        padding: 0 5rem;
    }
}

.navegacion__elemento {
    display: flex;
    flex-direction: column;
}

.navegacion__enlace {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 2rem;
    color: var(--texto);
}

@media (min-width: 768px) {
    .navegacion {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .navegacion__enlace {
        padding: 1.5rem;
    }

    .navegacion__elemento {
        flex-direction: row;
        justify-content: space-between;
    }
}

.logo {
    width: 15rem;
    display: block;
    margin: auto;
}

/* titulo */
.titulo {
    font-size: 3.8rem;
    text-align: center;
    color: var(--texto);
    margin-top: 5rem;
    text-transform: uppercase;
}

.titulo--interlineado {
    line-height: 0.8;
}

/*.titulo__span {
    font-size: 2rem;
    color: var(--acentuacion);
}*/


/* Texto */
.texto {
    font-size: 2rem;
    margin: auto;
    text-align: justify;
    max-width: 70%;
    color: var(--texto);
    margin-bottom: 5rem;
}

.texto--aviso {
    font-size: 1.6rem;
    max-width: 50%;
    margin-bottom: 3rem;
}

.texto--formulario {
    margin: 0 0;
}

.txtNone {
    text-decoration: none;
    color: var(--texto);
}

/* Lista */
.lista {
    line-height: 2;
    list-style-type: none;
    counter-reset: lista;
    margin: 0;
    padding: 0;
}

/*.lista__elemento {
    position: relative;
    line-height: 2.5rem;
    padding: 0.4rem 0 1rem 5rem;
    margin-bottom: 1rem;
}*/

/*.lista__elemento:before {
    content: counter(lista);
    counter-increment: lista;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    background: var(--acentuacion);
    color: var(--blanco);
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    text-align: center;
}*/

/* Barra de progreso */
/*.progreso {
    display: flex;
    margin: 0 auto 4rem auto;
    max-width: 70rem;
}

.progreso__elemento {
    text-align: center;
    width: 100%;
}

.progreso__texto {
    font-size: 2rem;
    color: var(--texto);
}

.progreso__circulo {
    height: 3rem;
    width: 3rem;
    border: .2rem solid var(--gris);
    display: inline-block;
    border-radius: 50%;
    font-size: 1.7rem;
    line-height: 3rem;
    background-color: var(--gris);
}

.progreso__elemento:last-child .progreso__circulo::before,
.progreso__elemento:last-child .progreso__circulo::after {
    display: none;
}

.progreso__circulo::before,
.progreso__circulo::after {
    position: absolute;
    content: '';
    margin-top: 1.1rem;
    margin-left: 1.5rem;
    height: .3rem;
    width: 11rem;
    background: var(--gris);
}

@media (max-width: 425px) {

    .progreso__circulo::before,
    .progreso__circulo::after {
        width: 8rem;
    }
}

@media (max-width: 375px) {

    .progreso__circulo::before,
    .progreso__circulo::after {
        width: 6rem;
    }
}

.progreso__circulo--2pasos::before,
.progreso__circulo--2pasos::after {
    width: 32rem;
}

@media (max-width: 425px) {

    .progreso__circulo--2pasos::before,
    .progreso__circulo--2pasos::after {
        width: 19rem;
    }
}

@media (max-width: 375px) {

    .progreso__circulo--2pasos::before,
    .progreso__circulo--2pasos::after {
        width: 16rem;
    }
}

.progreso__circulo--actual {
    background-color: var(--acentuacion);
    border: .2rem solid var(--acentuacion);
}

.progreso__circulo--completado::before,
.progreso__circulo--completado::after {
    background: var(--acentuacion);
} */

/* Contenedor */
.contenedor {
    max-width: 110rem;
    margin: 0 auto;
    padding: 0 4rem;
}

.contenedor--datos {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
    }
}

.grid--3 {
    display: grid;
    grid-template-columns: 1fr 3fr 2fr;
    gap: 1rem;
}

/* Pasos */
.titulo--cuerpo {
    text-align: start;
    margin: 0 auto;
    text-transform: none;
    font-size: 4.5rem;
}

.subtitulo {
    margin-top: 0;
    font-size: 2rem;
    color: var(--acentuacion);
    text-transform: uppercase;
    line-height: 1;
}

.subtitulo--soporte {
    max-width: 70rem;
    margin: 0 auto;
}

.texto--pasos {
    text-align: start;
    max-width: 100%;
    color: var(--texto);
    margin: auto 0;
}

.texto--finalizar {
    text-align: center;
}

.texto--importante {
    text-align: center;
    max-width: 100%;
    font-size: 2rem;
    line-height: 1;
    color: var(--texto);
}

/* Imagen */
.imagen {
    width: 100%;
}

.imagen--heigt {
    width: auto;
    max-height: 50rem;
}

.imagen--carrusel {
    height: 30rem;
    width: 50rem;
}

.imagen--carruselV {
    height: 30rem;
    width: auto;
}

.imagen--pregunta {
    height: 40rem;
}

.icono {
    width: 10rem;
}


/*.constancia {
    margin: 0 auto;
    margin-top: 2rem;
    width: 80%;
}*/

/* Select */
.select {
    font-size: 2rem;
    font-family: var(--fuentePrincipal);
    color: var(--texto);
    padding: 1.5rem 4rem;
    background-color: var(--blanco);
    border: .1rem solid var(--gris);
    border-radius: 4rem;
    scrollbar-width: none;
    cursor: pointer;

}

@media (max-width: 375px) {
    .select {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
}

.select::-webkit-scrollbar {
    display: none;
}

.select--captura {
    padding: 1rem 2rem;
}

.select--datos {
    width: 100%;
}

/* soporte */
.soporte {
    border: .1rem solid var(--sombra);
    background-color: var(--sombra);
    max-width: 35rem;
    margin: 0 auto;
    padding: 1rem 0;
    border-radius: 2rem;
}

.soporte__texto {
    color: var(--texto);
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2;
    width: 40%;
    margin: 0 auto;
}

/* Ayuda */
.ayuda {
    width: 100%;
    margin: 2rem auto 0 auto;
    padding: 6rem;
    background-color: var(--fondoCuerpo);
}


.seccion__texto {
    overflow: hidden;
    max-height: 0;
    text-align: justify;
    font-family: var(--fuentePrincipal);
    background-color: var(--fondoCuerpo);
    margin: 0;
    transition: all .3s ease-in-out;
    color: var(--texto);
    width: 90%;
}

.seccion__enlace {
    display: block;
    overflow: hidden;
    max-height: 0;
    margin: 0;
    padding: 0 1rem;
    color: var(--texto);
    background-color: var(--fondoCuerpo);

}

.seccion__selector {
    text-decoration: none;
    display: block;
    text-align: left;
    padding: 1rem;
    background-color: var(--fondoCuerpo);
    color: var(--acentuacion);
}

.seccion:target .seccion__texto,
.seccion:target .seccion__enlace {
    max-height: 50rem;
    padding: 1rem;
}


.seccion:target .mostrar {
    display: none;
}

/* Informacion */
.informacion {
    width: 100%;
    height: 100%;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all .1s ease-in;
    z-index: 999;
}

.informacion__texto {
    padding: 2rem 4rem;
    text-align: justify;
    margin: 0 2rem;

}

.informacion:target {
    background: rgba(0, 0, 0, .8);
    visibility: visible;
    opacity: 1;
}

.informacion:target .popup {
    transform: translate(-50%, -50%);
    visibility: visible;
    background-color: var(--fondoCuerpo);
}

.popup {
    max-width: 70rem;
    max-height: 70rem;
    position: relative;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-150%, -230%);
    background-color: var(--blanco);
    visibility: hidden;
    color: var(--texto);
}

.cerrar {
    width: 5rem;
    height: 4rem;
    position: absolute;
    right: -20px;
    top: -20px;
    background: var(--blanco);
    color: var(--acentuacion);
    border-radius: 50%;
    padding: .5rem 0;
    text-align: center;
    text-decoration: none;
}

/* Carrusel */
.carrusel {
    width: 100%;
}

.carrusel__contenido {
    width: 100%;
    height: 31rem;
    overflow: hidden;
}

.carrusel__item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carrusel__tarjeta {
    width: 100%;
    height: 100%;
}

.icon {
    text-decoration: none;
    font-size: 5rem;
    color: var(--texto);
}

.icon:hover {
    color: var(--acentuacion);
}

.carrusel__flechas {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

/* 2024 */
@font-face {
    font-family: 'PublicSans-Regular';
    src: url(../fonts/static/PublicSans-Regular.ttf);
}

@font-face {
    font-family: 'PublicSans-Light';
    src: url(../fonts/static/PublicSans-Light.ttf);
}

@font-face {
    font-family: 'PublicSans-SemiBold';
    src: url(../fonts/static/PublicSans-SemiBold.ttf);
}

body {
    font-family: 'PublicSans-Regular', sans-serif !important;
}

.top-bar {
    -webkit-box-shadow: 0px 3px 16px 0px #e5e5e5;
    -moz-box-shadow: 0px 3px 16px 0px #e5e5e5;
    box-shadow: 0px 3px 16px 0px #e5e5e5;
    background: #f9f9f9;
}

.top-bar-nav {
    margin-top: 25px !important;
}

.nav-pills .nav-link {
    font-family: 'PublicSans-SemiBold' !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #000000 !important;
    padding: .8rem 1rem !important;
    font-weight: 500 !important;
    font-size: 1.2rem !important;
}

.nav-pills .nav-link:hover {
    color: #47b4e5 !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #47b4e5 !important;
    background-color: transparent !important;
}

.content-title {
    font-family: 'PublicSans-SemiBold';
    margin-top: 50px;
    letter-spacing: -1px;
    font-size: 3rem;
    color: #373737;
}

.content-subtitle {
    font-family: 'PublicSans-SemiBold';
    margin-top: 20px;
    letter-spacing: -1px;
    font-size: 2rem;
    color: #373737;
}

.content-text {
    font-size: 1.2rem;
    margin-top: 50px;
    margin-bottom: 30px;
}

.content-button {
    background-color: #47b4e5;
    color: #ffffff !important;
    padding: .8rem 1rem !important;
    text-decoration: none;
    text-align: center;
    border-radius: 3px;
    border: none;
    font-family: 'PublicSans-SemiBold';
    font-size: 1.2em;
}

.content-button:hover {
    background-color: #50c8ff;
    color: #ffffff !important;
}

.align-center {
    text-align: center !important;
}

.align-left {
    text-align: left !important;
}

.align-right {
    text-align: right !important;
}

.footer {
    /*bottom: 0;
    position: absolute;*/
    width: 100%;
    font-size: 0.8em !important;
}

.content-list {
    line-height: 2;
    list-style-type: none;
    counter-reset: lista;
    margin: 0;
    padding: 0;
}

.content-list-element {
    position: relative !important;
    line-height: 1.8rem !important;
    padding: .7rem 3rem !important;
}

.content-list-element:before {
    content: counter(lista);
    counter-increment: lista;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    background: var(--acentuacion);
    color: var(--blanco);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-align: center;
    padding-top: 2px;
    margin: 10px 0px;
}

.content-progress {
    display: flex;
    margin: 2em auto 2rem auto;
    max-width: 70rem;
}

.content-progress-element {
    text-align: center;
    width: 100%;
}

.content-progress-text {
    font-size: 1rem;
    font-family: 'PublicSans-SemiBold';
}

.content-progress-text-current {
    color: #47b4e5 !important;
}

.content-progress-two {
    display: flex;
    margin: 2em auto 2rem auto;
    max-width: 28rem;
}

.content-progress-circle {
    height: 2rem;
    width: 2rem;
    border: .2rem solid var(--gris);
    display: inline-block;
    border-radius: 50%;
    background-color: var(--gris);
}

.content-progress-element:last-child .content-progress-circle::before,
.content-progress-element:last-child .content-progress-circle::after {
    display: none;
}

.content-progress-circle::before,
.content-progress-circle::after {
    position: absolute;
    content: '';
    margin-top: .7rem;
    margin-left: 1rem;
    height: .2rem;
    width: 12rem;
    background: var(--gris);
}

.content-progress-circle-step2::before,
.content-progress-circle-step2::after {
    width: 32rem;
}

@media (max-width: 425px) {

    .content-progress-circle::before,
    .content-progress-circle::after {
        width: 8rem;
    }

    .content-progress-circle-step2::before,
    .content-progress-circle-step2::after {
        width: 19rem;
    }
}

@media (max-width: 375px) {

    .content-progress-circle::before,
    .content-progress-circle::after {
        width: 6rem;
    }

    .content-progress-circle-step2::before,
    .content-progress-circle-step2::after {
        width: 16rem;
    }
}

.content-progress-circle-current {
    background-color: var(--acentuacion);
    border: .2rem solid var(--acentuacion);
}

.content-progress-circle-complete::before,
.content-progress-circle-complete::after {
    background: var(--acentuacion);
}

.form-control {
    font-size: 1.2rem !important;
    color: #373737 !important;
    background-color: #f9f9f9 !important;
    border: 1px solid #ced4da !important;
    border-radius: 0rem !important;
    padding: .4rem 2rem !important;
}

.form-label {
    color: #373737 !important;
    font-size: 1rem !important;
    font-family: 'PublicSans-SemiBold' !important;
    margin: 1rem 1rem .3rem 1rem !important;
}

.form-label-sub {
    color: #373737 !important;
    font-style: italic !important;
    font-family: 'PublicSans-Regular' !important;
    margin-top: 0 !important;
    margin-bottom: .4rem !important;
}

.form-control-inline {
    width: auto !important;
    display: inline-flex !important;
    padding: .375rem .75rem;
}

.constancia {
    margin: 0 auto;
    margin-top: 2rem;
    width: 100%;
}

.text-mark {
    color: var(--acentuacion);
}

.accordion-flush .accordion-item .accordion-button {
    font-size: 1.2rem !important;
}

.accordion-button:not(.collapsed) {
    color: #373737 !important;
    background-color: #f3f3f3 !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125) !important;
}

.botom-space {
    width: 100% !important;
    margin-top: 50px !important;
}

@media (max-width: 375px) {

    .content-progress-circle::before,
    .content-progress-circle::after {
        background: transparent !important;
    }
}

@media (max-width: 425px) {

    .content-progress-circle::before,
    .content-progress-circle::after {
        background: transparent !important;
    }
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    .nav {
        margin-top: 0px !important;
        background: #f1f1f1 !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .nav-item {
        width: 100% !important;
        text-align: center !important;
    }

    .nav-logo {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .nav-link {
        line-height: 1rem !important;
    }

    .content-title {
        margin-top: 30px !important;
        text-align: center !important;
        font-size: 2rem !important;
    }

    .content-text {
        text-align: justify !important;
        padding: 0px 15px !important;
        margin: 30px 0px !important;
    }

    .content-image {
        margin-top: 50px !important;
        text-align: center !important;
    }

    .footer-logo {
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 !important !important;
    }

    .footer-text {
        width: 100% !important;
        text-align: center !important;
        padding-bottom: 15px !important;
    }

    .content-progress-circle::before,
    .content-progress-circle::after {
        background: transparent !important;
    }

    .text-ajust {
        word-break: break-word !important;
        padding: 10px 40px !important;
    }

    .image-faqs {
        width: 100% !important;
        height: auto !important;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {
    .nav {
        margin-top: 0px !important;
        background: #f1f1f1 !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .nav-item {
        width: 100% !important;
        text-align: center !important;
    }

    .nav-logo {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .nav-link {
        line-height: 1rem !important;
    }

    .content-title {
        margin-top: 30px !important;
        text-align: center !important;
        font-size: 2rem !important;
    }

    .content-text {
        text-align: justify !important;
        padding: 0px 15px !important;
        margin: 30px 0px !important;
    }

    .content-image {
        margin-top: 50px !important;
        text-align: center !important;
    }

    .footer-logo {
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 !important !important;
    }

    .footer-text {
        width: 100% !important;
        text-align: center !important;
        padding-bottom: 15px !important;
    }

    .content-progress-circle::before,
    .content-progress-circle::after {
        background: transparent !important;
    }

    .text-ajust {
        word-break: break-word !important;
        padding: 10px 40px !important;
    }

    .image-faqs {
        width: 100% !important;
        height: auto !important;
    }
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}