@font-face {
    font-family: "Lemon";
    src: url("../../mctl/fonts/Lemon-Regular.woff2") format("woff2"),
        url("../../mctl/fonts/Lemon-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Work Sans";
    src: url("../../mctl/fonts/WorkSans-Regular.woff2") format("woff2"),
        url("../../mctl/fonts/WorkSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Work Sans";
    src: url("../../mctl/fonts/WorkSans-SemiBold.woff2") format("woff2"),
        url("../../mctl/fonts/WorkSans-SemiBold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}


/* Estilos generales */

:root {
    font-size: 20px;
}

body {
    font-family: "Work Sans", sans-serif;
    color: #D7E3C6;
}

img {
    max-width: 100%;
}

.flow__splash {
    min-height: calc(100vh - 200px);
    background-color: #f4efdc;
    background-image: url(../img/cabelloIzq.png), url(../img/cabelloDer.png), url(../img/background.jpg);
    background-size: 15%, 15%, cover;
    background-position: top left, top right, top center;
    background-repeat: no-repeat;
    padding: 5% 10% 40px;
}

@media (max-width: 767px) {
    .flow__splash {
        background-size: 20%, 20%, cover;
        padding: 40px 20px;
    }
}


/* Logo principal */

.flow__titleImg {
    display: flex;
    max-width: 500px;
    width: 80%;
    text-align: center;
    opacity: 0;
    margin: 0 auto;
    transform: translateY(80%);
}

@keyframes zoom {
    0% {
        opacity: 0;
        transform: scale(1.5) translateY(80%);
    }

    40% {
        opacity: 1;
        transform: scale(1.5) translateY(80%);
    }

    50% {
        transform: scale(1.5) translateY(80%);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


.flow__titleImg.animacion {
    animation: zoom 3s .5s backwards;
    opacity: 1;
    transform: translateY(0);
}


/* Contenedor */

.flow__container {
    display: flex;
    flex-flow: row wrap;
    box-sizing: content-box;
    margin-top: 30px;
    opacity: 0;
}

@keyframes mostrar {
    0% {
        opacity: 0;
        transform: scale(.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.flow__container.visible {
    animation: mostrar 1s 3s ease backwards;
    opacity: 1;
}



/* Column1 */

.flow__column1 {
    width: 60%;
    padding: 20px 40px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 991px) {
    .flow__column1 {
        width: 100%;
    }
}

.flow__play {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(10, 10, 10, .6);
    width: 100%;
    max-width: 390px;
    margin: 30px auto 30px;
    padding: 20px;
    border-radius: var(--border__radius);
}

.flow__play img {
    max-width: 180px;
    margin-bottom: 20px;
}

.flow__audio {
    max-width: 100%;
    width: 100%;
}



/* Column2 */

.flow__column2 {
    width: calc(100% - 60%);
    padding: 20px 20px 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 991px) {
    .flow__column2 {
        width: 100%;
        padding-top: 20px;
    }
}






/*------------------------------------
   ?FOOTER
------------------------------------*/

.flow__footer {
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    padding: 10px 50px;
    background-color: #ff7b82;
    position: sticky;
    bottom: 0;
}

@media (max-width: 767px) {
    .flow__footer {
        padding: 10px;
    }
}

.flow__footer__logos img:first-child {
    margin-right: 12px;
}

.flow__footer img {
    width: 140px;
    max-width: 100%;
}

.flow__footer__redes {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.flow__footer__redes a {
    transform: scale(1);
    transition: transform .2s;
}

@media (max-width: 767px) {
    .flow__footer__redes a {
        max-width: 80px;
    }
}

.flow__footer__redes a:hover {
    transform: scale(1.05);
}

.flow__footer__redes img {
    padding: 0 5px;
    width: 40px;
}

@media (max-width: 767px) {
    .flow__footer__redes img {
        max-width: 40px;
    }
}

.flow__footer__logo {
    width: 100%;
    flex-basis: 0%;
    flex-grow: 1;
    max-width: 100%;
}

.footerED {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    padding-left: 15px;
}

.footerED img {
    max-width: 12px;
    filter: brightness(0);
    opacity: 0.1;
}






/*------------------------------------
   ?FORMULARIOS LOGIN Y REGISTRO
------------------------------------*/

@keyframes fadeIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Login */

.flow__form {
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    color: #fff;
    animation: fadeIn 1s;
    transform-origin: center 100px;
}

.flow__form__Title {
    margin: 0 0 1.2rem;
    padding: 0;
    text-align: center;
    font-size: 25px;
}

.flow__form .flow__group {
    position: relative;
    margin-bottom: 1.2rem;
}

.flow__form .flow__group input,
.flow__form .flow__group select {
    width: 100%;
    padding: 10px;
    font-size: 20px;
    letter-spacing: 1px;
    border-radius: 7px;
    border: 1px solid #FBBB32;
    outline: none;
    background: transparent;
    color: #FBBB32;
}

.flow__form .flow__group label {
    display: block;
    line-height: 1.1;
    letter-spacing: 1px;
    padding: 10px 0;
    margin-bottom: 0;
    font-size: 18px;
    pointer-events: none;
    transition: 0.5s;
    color: #FBBB32;
}

.flow__form .flow__group select option {
    color: initial;
}

.register {
    color: #fff;
}

a {
    margin-left: 2%;
}

/* Registro */
/* 
.flow__form__registro {
    display: none;
} */



/* Separador */
.flow__form__separador {
    max-width: 80%;
    border-bottom: 1px dashed #D7E3C6;
    margin: 30px auto;
}


.flow__form__pregunta {
    color: #D7E3C6;
    text-align: center;
    margin-bottom: 20px;
}


.flow__form__pregunta label {
    display: inline-block;
    position: relative;
    padding: 5px;
    font-size: 1em;
    border-radius: 5px;
    margin-bottom: 0;
}

.flow__form__pregunta label:before {
    content: "";
    cursor: pointer;
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    border-radius: 3px;
    background: none;
    border: 2px solid #fff;
}

.flow__form__pregunta a {
    color: #ff7b82;
    text-decoration: none;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked+label:before {
    background-color: #ff7b82;
}


.radioBtn {
    font-size: 18px;
    margin-bottom: 1.2rem;
}

.radios {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 18px;
    justify-content: center;
}

.radioBtnLabel {
    display: block;
    width: 100%;
    color: #FBBB32;
}

.radioBtn .radio {
    margin-top: 10px;
    margin-bottom: 10px;
}

.radioBtn .radio+.radio {
    padding-left: 20px;
}

/*=== Personalizacion radio button ===*/

.radioLabel {
    display: block;
    position: relative;
    padding-left: 20px !important;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Oculta radio button por defecto */
.radioLabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Crea el radio button */
.checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 15px;
    width: 15px;
    background-color: transparent;
    border: 2px solid #FBBB32;
    border-radius: 50%;
}

/* Hover */
.radioLabel:hover input~.checkmark {
    background-color: #FBBB32;
    border: 2px solid #fff;
}

/* Checked */
.radioLabel input:checked~.checkmark {
    background-color: #FBBB32;
    border: 2px solid #fff;
}

/* Indicador checked */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/*=== Fin Personalizacion radio button ===*/




/*------------------------------------
   ?BOTONES
------------------------------------*/


.flow__btnPrimary,
.flow__btnSecondary {
    --calififcarBoton__background: hsl(38, 77%, 47%);
    --calififcarBoton__border: 6px solid hsl(38, 77%, 59%);

    cursor: pointer;
    display: block;
    color: #fff;
    line-height: 1.2;
    background-color: var(--calififcarBoton__background);
    border-radius: 1.2em;
    border: var(--calififcarBoton__border);
    padding: 8px 2em;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    transform: scale(1);
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    max-width: max-content;
    width: 100%;
    text-decoration: none;
}

@media (hover) {

    .flow__btnPrimary:hover,
    .flow__btnSecondary:hover {
        -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
        transform: scale(1.03)
    }
}

.flow__btnPrimary:active,
.flow__btnSecondary:active {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98)
}


.flow__btnSecondary {
    --calififcarBoton__background: #ff7b82;
    --calififcarBoton__border: 1px solid #ff7b82;
}



/* Utilidades */
.hide {
    display: none !important;
}

.show {
    display: flex !important;
}



/*=== MODAL ===*/
.modal_fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10000
}

.modal_fade .content_modal {
    position: relative;
    display: flex;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
    border: 2px dashed #ff7b82;
    background-color: #1E2239;
    box-shadow: 0 0 0 10px #1e2239;
}


.content_modal h2 {
    color: #ff7b82;
}

.content_modal span {
    color: #ff7b82;
    font-weight: bold;
}

.modal_fade .modal-footer .continuar {
    text-align: right;
}

.modal-content .modal__texto {
    color: #fff;
    font-size: 20px;
    padding: 10px 0;
    margin-bottom: 0;
    text-align: center;
}

.modal__btnCerrar {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ff7b82;
    border: 2px solid #fff;
    position: absolute;
    top: 5px;
    right: 5px;
}

/* Modal final */
.modalFinal {
    display: flex;
}

.modalFinal h2 {
    font-size: 35px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.modalFinal .content_modal {
    line-height: 1.2;
    border: 2px dashed #FBBB32;
    padding: 60px 20px 10px;
    margin-top: 180px;
}

.modalFinal__baul {
    position: absolute;
    max-width: 300px;
    left: 50%;
    transform: translateX(-50%);
    top: -240px;
}