:root {
    --rojo: #e00034;
    --blanco: #fff;
    --fondo: #efefef;
    --text-gris: #aaaaaa;
    --gris-oscuro: #c1c1c1;
    --gris-claro: #f2f2f2;
    --gris-fondo-original: #b2b2b2;
}

button,
button[type="submit"] {
    border-radius: 0;
}

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

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

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

.text-weight {
    font-weight: bold;
    font-family: 'GothamBold';
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}


/* MARGENES */

.mb-05 {
    margin-bottom: .5rem;
}


/* COLORES */

.text-rojo {
    color: #e00034;
    color: var(--rojo);
}

.text-white {
    color: #fff;
    color: var(--blanco);
}

.text-negro {
    color: #000;
}

.bg-rojo {
    background-color: #e00034;
    background-color: var(--rojo);
}

.bg-fondo {
    background-color: #f2f2f2;
    background-color: var(--gris-claro);
}

.bg-blanco {
    background-color: #fff;
    background-color: var(--blanco);
}


/**/

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a[href] {
    text-decoration: none;
    color: #000;
    transition: all .5s;
    cursor: pointer;
}

a:hover {
    color: #e00034;
    color: var(--rojo);
    transition: all .5s;
}

input[type="submit"],
button,
button:focus {
    outline: none;
    cursor: pointer;
}

html,
body {
    font-family: 'GothamBook';
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: hidden;
}

select {
    background-image: url("../images/flecha-roja.png");
    /*aquí deberás escribir la ruta de la imagen que utilizarás como flecha del desplegable*/
    background-repeat: no-repeat;
    background-position: right center;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #aaaaaa;
    color: var(--text-gris);
}

:-ms-input-placeholder {
    /* Internet Explorer */
    color: #aaaaaa;
    color: var(--text-gris);
}

::placeholder {
    color: #aaaaaa;
    color: var(--text-gris);
}


/* ----------------------------------- Estilos modales -----------------------------------*/

.modalContainer {
    visibility: hidden;
    display: none;
    position: fixed;
    z-index: 9000;
    /* padding-top: 100px; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modalContainer .modal-content {
    background-color: rgba(255, 255, 255, 1);
    margin: auto;
    padding: 20px 36px;
    border: 1px solid rgb(255, 252, 252);
    width: 90%;
    height: 42%;
    text-align: center;
    display: table;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-content .contenidoModal {
    display: table-cell;
    vertical-align: middle;
    padding: 1rem 0;
}

.contenidoModal h1 {
    color: #e00034;
    padding-bottom: 15px;
    font-family: 'GothamBold';
    letter-spacing: 1px;
}

.contenidoModal hr {
    border: #e00034 2px solid;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.modal-content .contenidoModal p {
    padding-top: 1rem;
}

.contenidoModal img {
    width: 20%;
    padding-bottom: 7%;
}

.modalContainer .close button {
    width: 7rem;
    height: 2.5rem;
    font-size: 24px;
    cursor: pointer;
}

.modalContainer .close:hover,
.modalContainer .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modalContainerLogin {
    display: none;
    position: fixed;
    z-index: 9000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.modalContainerLogin .modal-content {
    background-color: rgba(255, 252, 252, 0.8);
    margin: auto;
    padding: 20px;
    border: 1px solid rgb(255, 252, 252);
    width: 25rem;
    text-align: center;
    height: 70%;
    position: relative;
}

.modalContainerLogin .modal-content h1 img {
    width: 100px;
    padding-top: 30px;
    padding-bottom: 25px;
}

.modalContainerLogin .modal-content h3 {
    color: #e00034;
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: bold;
    padding-bottom: 20px;
}

.modal-content .btnLogin {
    padding: 8px 10px;
    margin-top: 15px;
    cursor: pointer;
}

.modalContainerLogin .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: -15px;
}

.modalContainerLogin .close:hover,
.modalContainerLogin .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#textRelleno {
    font-size: 16px;
    padding-bottom: 15px;
}

@media(min-width:640px) {
    .modalContainer {
        padding-top: 10px;
    }
    .contenidoModal img {
        padding-bottom: 3%;
    }
    .modalContainer .modal-content {
        padding: 0px 70px;
    }
    #textRelleno {
        font-size: 13px;
    }
}

@media(min-width:768px) {
    .modalContainer .modal-content {
        padding: 20px 95px;
        width: 70%;
    }
    .modalContainer {
        padding-top: 150px;
    }
    .contenidoModal h1 {
        font-size: 50px;
    }
    .modal-content .contenidoModal p {
        font-size: 30px;
    }
    #textRelleno {
        font-size: 17px;
        padding-bottom: 20px;
    }
    #textRelleno {
        font-size: 20px;
    }
}

@media(min-width:1366px) {
    .modalContainer .modal-content {
        padding: 20px 115px;
        width: 50%;
    }
}


/* ----------------------------------- ESTILOS PAGINA RULETA ----------------------------------- */


/* -----------------------------------  ODOMER ----------------------------------- */

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    display: -moz-inline-box;
    -moz-box-orient: vertical;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    position: relative;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
    display: -moz-inline-box;
    -moz-box-orient: vertical;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    position: relative;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
    *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
    display: -moz-inline-box;
    -moz-box-orient: vertical;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
    *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
    text-align: left;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
    display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
    display: block;
    -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
    display: block;
    -webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
    position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 2s;
    -moz-transition: -moz-transform 2s;
    -ms-transition: -ms-transform 2s;
    -o-transition: -o-transform 2s;
    transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 2s;
    -moz-transition: -moz-transform 2s;
    -ms-transition: -ms-transform 2s;
    -o-transition: -o-transform 2s;
    transition: transform 2s;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    font-family: "Helvetica Neue", sans-serif;
    line-height: 1.1em;
}

.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
    text-align: center;
}


/* ----------------------------------- CAMBAS CONFETI ----------------------------------- */

#confetti-canvas {
    display: block;
    z-index: 10000;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: auto;
    height: 100%;
    max-width: 1440px;
}

#odometer2 {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    margin-top: 2rem;
    margin-bottom: 5rem;
}

button.btn-ruleta {
    border: 1px solid #E9E9E9;
    background-color: #E9E9E9;
    outline: none;
    width: 13rem;
    height: 3rem;
    border-radius: 5px;
    line-height: 2rem;
    font-family: 'GothamBold';
    letter-spacing: 1px;
    text-indent: 1px;
    cursor: pointer;
    font-size: 2rem;
    position: absolute;
    top: 83%;
    left: 50%;
    transform: translate(-50%, 0%);
    text-transform: uppercase;
    margin-top: 2rem;
}

.odometer {
    font-size: 100px;
}

.contenedor-modal-sorteo {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    transition: all .7s, visibility .5s;
    z-index: 20000;
}

.modal-sorteo {
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 1);
    font-size: 2rem;
    opacity: 0;
    border: 1px solid rgb(255, 252, 252);
    transition: all .7s, visibility .5s;
    z-index: 20000;
    font-family: 'GothamBook';
}

.modal-sorteo h1 {
    font-size: 1.5em;
    font-family: 'GothamBold';
}

#nombreGanador,
#numGanador {
    font-size: 1.4em;
    font-family: 'GothamBold';
}

span#nombreGanador {
    text-align: center;
    margin: 10px 0px;
}

#numGanador {
    margin: 10px 0px;
}

.img-modal-sorteo {
    width: 10rem;
}

.moldal-sorteo-separador {
    width: 80%;
    height: 4px;
    background-color: #e00034;
    border: 1px solid #e00034;
    margin: 1rem 0;
}

.modal-sorteo {
    width: 70%;
    height: auto;
    padding: 2rem 0;
}

.cerrar-modal-sorteo {
    background-color: #E9E9E9;
    outline: none;
    width: 13rem;
    height: 3rem;
    border-radius: 5px;
    line-height: 2rem;
    font-family: 'GothamBold';
    letter-spacing: 1px;
    text-indent: 1px;
    cursor: pointer;
    font-size: 2rem;
    position: relative;
    top: 1rem;
    border: none;
}

.modal-sorteo {
    width: 65%;
    height: auto;
    padding: 5rem 0;
}

.img-modal-sorteo {
    margin-bottom: 3rem;
}

@media(min-width:1366px) {
    .modal-sorteo {
        width: 55%;
    }
    #nombreGanador,
    #numGanador {
        font-size: 1em;
    }
    .modal-sorteo h1 {
        font-size: 1.3em;
    }
}

@media(min-width:1440px) {
    .modal-sorteo h1 {
        font-size: 1.8em;
    }
    #nombreGanador,
    #numGanador {
        font-size: 1.2em;
    }
}


/* --------------------- ESTILOS PAGINA CHARLA  --------------------- */


/* --------------------- ESTILOS CHARLA  --------------------- */

.img-header {
    width: 100%;
}

.charla-titulo-nuevo {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: normal;
    font-size: 1.6rem;
    font-family: 'GothamBold';
    color: #000!important;
}

.charla-titulo-nuevo span {
    font-size: 1.2rem;
}

.charla-titulo {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: .5rem;
    font-family: 'GothamBold';
}

.charla-cinta {
    padding: 1rem;
    font-size: 1rem;
    font-family: 'GothamBold';
}

.charla-cinta span {
    font-size: 1rem;
    font-family: 'GothamBook';
}

@media(min-width:360px) {
    .charla-cinta {
        padding: 1.5rem rem;
        font-size: 1.4rem;
    }
    .charla-cinta span {
        font-size: 1.1rem;
    }
}

@media(min-width:375px) {
    .charla-titulo-nuevo {
        font-size: 1.5rem;
    }
    .charla-titulo-nuevo span {
        font-size: 1.45rem;
    }
}

@media(min-width:425px) {
    .charla-cinta {
        font-size: 1.6rem;
    }
    .charla-cinta span {
        font-size: 1.25rem;
    }
    .charla-titulo-nuevo {
        font-size: 1.7rem;
    }
    .charla-titulo-nuevo span {
        font-size: 1.65rem;
    }
}

@media(min-width:568px) {
    .charla-cinta span {
        font-size: 1.33rem;
    }
    .charla-titulo-nuevo {
        font-size: 1.7rem;
    }
}

@media(min-width:768px) {
    .charla-cinta {
        font-size: 1.8rem;
    }
    .charla-cinta span {
        font-size: 1.6rem;
    }
    .charla-titulo-nuevo {
        font-size: 1.8rem;
    }
    .charla-titulo-nuevo span {
        font-size: 2.5rem;
    }
    .charla-titulo {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media(min-width:1024px) {
    .charla-cinta {
        font-size: 2.4rem;
    }
    .charla-cinta span {
        font-size: 2.13rem;
    }
    .charla-titulo-nuevo {
        font-size: 2.4rem;
        margin: 3rem 0;
    }
    .charla-titulo-nuevo span {
        font-size: 2.7rem;
    }
}

@media(min-width:1280px) {
    .charla-cinta {
        font-size: 2.8rem;
    }
    .charla-cinta span {
        font-size: 2.48rem;
    }
}


/* -------------------------------- ESTILOS PONENTE -------------------------------- */

.contenedor-ponente {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ponente-contenedor-col {
    margin: 0 0 1rem 0;
    width: 100%;
    max-width: 450px;
}

.ponente-img {
    width: 13rem;
    margin-bottom: 2rem;
}

.ponente-contenedor-info {
    margin-bottom: 1.5rem;
}

.ponente-contenedor-info-titulo {
    color: #fff;
    font-family: 'GothamBold';
    letter-spacing: 1px;
    text-indent: 1px;
    font-size: .8rem;
    background-color: #e00034;
    background-color: var(--rojo);
    width: max-content;
    padding: 8px 1rem;
    margin: 0 auto;
    text-transform: uppercase;
}

.ponente-img-fecha-hora {
    width: 14rem;
}

.ponente-contenedor-info p {
    font-family: 'GothamBook';
    letter-spacing: .5px;
    text-indent: .5px;
    font-size: 1.3rem;
    margin-top: 10px;
}

.ponente-contenedor-info p strong {
    font-family: 'GothamBold';
    font-size: 1.8rem;
}

.ponente-img-facebook {
    width: 14rem;
    margin: 1rem 0;
    margin-bottom: -1rem;
}

.ponente-redes-img {
    width: 12rem;
    margin-bottom: 0.9rem;
    margin-bottom: -1rem;
}

.ponente-separador-linea {
    text-align: center;
    padding: 0rem 1.5rem;
    padding-top: .5rem;
}

.ponente-separador-linea hr {
    border: 1px solid #e00034;
    border: 1px solid var(--rojo);
    border: 1px solid #e00034;
    background-color: var(--rojo);
    margin-top: 1rem;
}

.contenedor-info-charla-seccion-ponentes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.ponente-contenedor-fecha {
    margin: 0;
    width: 100%;
    text-align: center;
}

.ponente-contenedor-redes {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(min-width:425px) {
    .ponente-img {
        width: 15rem;
    }
    .ponente-separador-linea {
        padding: 0rem 3rem;
    }
}

@media(min-width:453) {
    .ponente-contenedro-redes {
        display: flex;
        flex-direction: column;
    }
}

@media(min-width:568px) {
    .ponente-img {
        width: 17rem;
    }
    .ponente-contenedro-redes {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .ponente-redes-img {
        width: 12rem;
    }
}

@media(min-width:768px) {
    .contenedor-ponente {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 4rem 1rem;
        padding-bottom: 1rem;
    }
    .ponente-img {
        margin: 0;
    }
    .ponente-contenedor-info {
        text-align: center;
    }
    .ponente-contenedor {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .ponente-contenedro-redes {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    .ponente-redes-img {
        width: 10rem;
        position: relative;
        margin-left: -2.69rem;
    }
    .ponente-img-facebook {
        margin-left: 3rem;
    }
}

@media (min-width: 992px) {
    .ponente-contenedor-info {
        text-align: left;
    }
    .ponente-contenedor-info-titulo {
        margin: 0;
    }
    .ponente-separador-linea {
        padding: 0;
        margin-top: 1rem;
        max-width: none;
        text-align: left;
        font-size: 1.2rem;
    }
    .ponente-contenedor-info p strong {
        font-family: 'GothamBold';
        font-size: 2.2rem;
    }
    .ponente-contenedor-col {
        margin: 0 5%;
        width: 100%;
        max-width: 395px;
        text-align: left;
    }
    /**/
    .contenedor-info-charla-seccion-ponentes {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 0rem;
    }
    .ponente-contenedro-redes {
        width: auto;
        margin-left: 6%;
    }
    .ponente-contenedor-fecha {
        width: auto;
        margin: 0 5%;
    }
}

@media(min-width:1024px) {
    .ponente-img {
        width: 18rem;
    }
    .ponente-contenedor-info p strong {
        font-size: 2.2rem;
    }
    .ponente-contenedor-info p {
        font-size: 1.4rem;
    }
    .ponente-contenedor .ponente-contenedor-info:last-child {
        margin: 0;
    }
    .ponente-contenedor {
        width: 20rem;
    }
    .contenedor-ponente {
        justify-content: center;
        padding-bottom: 1rem
    }
    .ponente-img-facebook {
        margin-right: 0rem;
        width: 15rem;
    }
    /***/
    .contenedor-info-charla-seccion-ponentes {
        flex-direction: row;
        margin-top: -2rem;
    }
    /**/
    .ponente-contenedor-col {
        max-width: 405px;
    }
}

@media(min-width:1280px) {
    .ponente-contenedor {
        width: 29rem;
    }
    .ponente-img {
        margin-right: 4rem;
    }
    .ponente-img-facebook {
        margin: 0rem;
        width: 16rem;
    }
    .ponente-redes-img {
        width: 12rem;
        margin: 0;
        position: relative;
        left: -3.1rem;
        top: -0.9rem;
    }
    /**/
    .ponente-contenedor-fecha {
        margin: 0;
        margin-left: 10%;
        margin-right: 12%;
    }
}


/* ESTILOS FORMULARIO */

.contenedor-formulario {
    padding: 2rem 2rem;
}

.contenedor-formulario-col-1 {
    padding: 1rem 1.5rem;
}

.formulario-titulo {
    font-size: 2rem;
    font-family: 'FuturaBold';
    margin-bottom: 1.5rem;
}

.formulario-form-row {
    margin-bottom: 1rem;
    border-bottom: 1px solid #f2f2f2;
    border-bottom: 1px solid var(--gris-claro);
    position: relative;
}

.formulario-form-row label {
    display: block;
    margin-bottom: .5rem;
    font-family: 'FuturaBook';
    font-size: 1.3rem;
    letter-spacing: .5px;
    text-indent: .5px;
}

.formulario-form-row span {
    position: absolute;
    bottom: 6px;
    font-size: 1.2rem;
}

.formulario-form-row input,
.formulario-form-row select {
    border: none;
    padding-left: 1.9rem;
    height: 2rem;
    outline: none;
    width: 100%;
    background-color: transparent;
    font-family: 'Futura';
}

.formulario-form-row input:focus,
.formulario-form-row select:focus {
    outline: none;
}

.formulario-form-btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: .7rem 4rem;
    font-size: 1.35rem;
    border: none;
    font-family: 'FuturaBold';
    border: 1px solid #000;
}

.formulario-form-mensaje {
    display: flex;
    background-color: #fff;
    height: 8.5rem;
    color: #000;
    align-items: center;
    font-size: 1rem;
    font-family: 'FuturaBold';
    margin: 1.45rem 0px;
    padding-right: 16px;
}

.formulario-texto-titulo {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-family: 'Futura';
}

.formulario-texto-titulo span {
    font-family: 'FuturaBold';
}

span.icon-purinabuzon {
    background-color: #c1c1c1;
    background-color: var(--gris-oscuro);
    font-size: 3rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15rem;
    margin-right: 1rem;
}

textarea#txtPregunta {
    width: 100%;
    max-height: 13rem;
    resize: none;
    border: none;
    outline: none;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Futura';
    background-color: #fff;
}

textarea#txtPregunta::-webkit-input-placeholder {
    /* Edge */
    font-style: italic;
    font-size: 1.05rem;
}

textarea#txtPregunta:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-style: italic;
    font-size: 1.05rem;
}

textarea#txtPregunta::placeholder {
    font-style: italic;
    font-size: 1.05rem;
}

.btn-pregunta {
    position: relative;
    left: 100%;
    transform: translateX(-100%);
    padding: .7rem 3rem;
    font-size: 1.35rem;
    border: none;
    font-family: 'FuturaBold';
    margin-top: 1rem;
    background-color: #c1c1c1;
    background-color: var( --gris-oscuro);
    margin-left: auto;
    align-content: baseline;
}

.top-btn-1 {
    top: 0;
}

.top-btn-2 {
    top: 0;
    margin-top: 15px;
}

.form-contenedor-imagen {
    text-align: center;
    margin-top: 3rem;
    padding: 0rem 0rem;
}

.form-contenedor-imagen-img {
    width: 10rem;
    margin-bottom: 2rem;
}

.form-contenedor-imagen-info p span {
    font-family: 'FuturaBold';
}

.cuadro-blanco {
    background-color: #fff;
    padding: 10px 5px;
    font-family: 'FuturaBold';
    margin: 5px 0;
}


/**/

.contenedor-principal-checks {
    display: flex;
    align-items: center;
}

.input-check {
    width: max-content!important;
    margin-right: 10px;
    position: relative;
    top: -3px;
}

.contenedor-input-check {
    display: flex;
    margin-right: 20px;
}

.icono-input-check {
    position: relative!important;
    margin-right: 16px;
    bottom: 3px!important;
}

@media(min-width:425px) {
    .contenedor-formulario {
        padding: 3rem 4rem;
    }
}

@media(min-width:640px) {
    .contenedor-formulario {
        padding: 3rem 6rem;
    }
    .form-contenedor-imagen {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .form-contenedor-imagen-img {
        margin: 0;
        margin-right: .5rem;
    }
}

@media(min-width:768px) {
    .contenedor-formulario {
        padding: 3rem 8rem;
    }
    span.icon-purinabuzon {
        font-size: 4rem;
        width: 10rem;
    }
    .formulario-form-mensaje {
        font-size: 1rem;
        height: 6.5rem;
    }
}

@media(min-width:992px) {
    .contenedor-formulario {
        padding: 3rem 0;
    }
    .row {
        display: flex;
        justify-content: center;
    }
    .contenedor-formulario-col-1 {
        /* max-width: 29rem; */
        width: 29rem;
        margin-right: 2rem;
        padding: 1.5rem 2rem;
    }
    .contenedor-formulario-col-2 {
        width: 29rem;
    }
    .formulario-form-mensaje {
        margin-top: 0;
    }
    .form-contenedor-imagen {
        margin: 0;
        margin-bottom: 1rem;
        justify-content: flex-start;
    }
    .formulario-texto-titulo {
        font-size: 1.3rem;
    }
    textarea#txtPregunta {
        max-height: 22rem;
    }
}

@media(min-width:1024px) {
    .top-btn-1 {
        top: 6rem;
    }
    textarea#txtPregunta {
        max-height: 27.3rem;
    }
    .contenedor-formulario-col-1 {
        margin-bottom: 5rem;
    }
    .contenedor-formulario {
        padding-top: 4rem;
    }
}

@media(min-width:1280px) {
    .contenedor-formulario-col-1 {
        width: 35rem;
    }
    .contenedor-formulario-col-2 {
        width: 35rem;
    }
    span.icon-purinabuzon {
        font-size: 5rem;
        width: 10rem;
    }
    textarea#txtPregunta {
        max-height: 25.7rem;
    }
    .form-contenedor-imagen-img {
        margin-right: 1rem;
        width: 11.5rem;
    }
    .form-contenedor-imagen-info p {
        font-size: 1.3rem;
    }
}

@media(min-width:1280px) {
    .contenedor-formulario-col-1 {
        width: 40rem;
    }
    .contenedor-formulario-col-2 {
        width: 40rem;
    }
}

.contenedor-mensaje-acceso-libre {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
    background-color: #c1c1c1;
    background-color: var(--gris-oscuro);
    width: max-content;
    font-family: 'Futura';
    font-size: 1.5rem;
    padding: 10px 15px;
}

@media(min-width:568px) {
    .contenedor-mensaje-acceso-libre {
        padding: 10px 20px;
    }
}

@media(min-width:1280px) {
    .contenedor-mensaje-acceso-libre {
        padding: 10px 40px;
    }
}


/* FAQ PREGUNTAS FRECUENTES */

section#FAQ {
    background-color: #f2f2f2;
    background-color: var(--gris-claro);
    padding-bottom: 1rem;
    font-family: "Futura";
}

.cinta-roja {
    width: 100%;
    background-color: #e00034;
    background-color: var(--rojo);
    margin-bottom: 1rem;
    font-family: "FuturaBold";
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.cinta-roja span {
    color: #FFF;
    margin: 0 auto;
}

.text-bold {
    font-family: "FuturaBold";
    font-size: 16px;
}

.text-bold-title {
    font-family: "FuturaBold";
}

.content-dialog-faq {
    height: 0;
    overflow: hidden;
    transition: all .5s;
    background-color: #f2f2f2;
    background-color: var(--gris-claro);
    display: flex;
    padding: 0 1rem;
    text-align: left;
}

.content-faq {
    text-align: center;
    font-size: 15px;
    margin: 1rem 0;
    background-color: #FFFFFF;
}

.title-faq {
    display: flex;
    padding: 9px 1rem;
    position: relative;
    padding-right: 2.5rem;
    cursor: pointer;
}

.title-faq span {
    color: #e00034;
    color: var(--rojo);
    font-weight: bold;
    font-size: 16px;
    padding-left: 10px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

@media (min-width: 425px) {
    .content-faq {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 1rem;
    }
    .cinta-roja {
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .cinta-roja {
        font-size: 2rem;
    }
    .content-faq {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 1rem;
        font-size: 16px;
    }
    .cinta-roja {
        margin-bottom: 1rem;
    }
    .title-faq {
        justify-content: space-between;
    }
    .content-dialog-faq {
        text-align: initial;
    }
    .title-faq span {
        font-size: 22px;
        padding-left: 0;
        padding-top: 0;
    }
    .text-bold {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .cinta-roja {
        margin-bottom: 2rem;
    }
    .title-faq {
        padding: 10 px 1rem;
        align-items: center;
    }
    .title-faq span {
        font-size: 30px;
    }
    .content-faq {
        width: 65%;
        font-size: 18px;
        margin: 1rem auto;
    }
    .text-bold {
        font-size: 19px;
    }
    .response-faq {
        margin-top: 1rem;
    }
}

@media (min-width: 1280px) {
    .content-faq {
        text-align: center;
        font-size: 20px;
        background-color: #FFFFFF;
        width: 60%;
        margin: 30px auto;
    }
    .text-bold {
        font-size: 21px;
    }
}