@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap');

:root{
    /* --c_fondo: #3A3F47;
    --c_naranja_win: #FF5A00;
    --c_gris_claro: #E1E1E1;
    --c_negro: #000000;
    --c_blanco: #ffffff;
    --c_verdeabc: #98FF02; */

    --b_matte_black: #1E1E20;
    --b_medium_gray: #BBC3C6;
    --b_gloss_white: #FFFFFF;
    --b_brick_red: #962715;
    --c_verdeabc: #98FF02;
    --c_negro: #000000;
    --colorBlanco: #FFFFFF;
    --colorBlanco09P: rgba(255,255,255,0.9);
    --colorBlanco08P: rgba(255,255,255,0.8);
    --colorBlanco07P: rgba(255,255,255,0.7);
    --colorBlanco06P: rgba(255,255,255,0.6);
    --colorBlanco05P: rgba(255,255,255,0.5);
    --colorBlanco04P: rgba(255,255,255,0.4);
    --colorBlanco03P: rgba(255,255,255,0.3);
    --colorBlanco02P: rgba(255,255,255,0.2);
    --colorBlanco01P: rgba(255,255,255,0.1);
    --colorFondoOscuro: #1E1E20;
    --colorFondoOscuro09P: rgba(30, 30, 32, 0.9);
    --colorFondoOscuro08P: rgba(30, 30, 32, 0.8);
    --colorFondoOscuro07P: rgba(30, 30, 32, 0.7);
    --colorFondoOscuro06P: rgba(30, 30, 32, 0.6);
    --colorFondoOscuro05P: rgba(30, 30, 32, 0.5);
    --colorFondoOscuro04P: rgba(30, 30, 32, 0.4);
    --colorFondoOscuro03P: rgba(30, 30, 32, 0.3);
    --colorFondoOscuro02P: rgba(30, 30, 32, 0.2);
    --colorFondoOscuro01P: rgba(30, 30, 32, 0.1);
    --colorGrisOscuro: #666666;
    --colorGrisClaro: #909090;
    --colorGrisSuperClaro: #e4e0e0;
    --colorAzulBoton: #2874A6;
    --colorRojoBoton: #CB4335;
    --colorRojoClaroBoton: rgba(203, 67, 53,0.9);
    --colorVerdeBoton: #239B56;
    --colorVerdeBoton02P: rgba(35,155,86,0.2);
    --colorMoradoBoton: #7e1ec9;
    --colorAmarilloBoton: #f7e713;
    --colorAmarilloOscuro: #e3cc0a;
    --colorLilaBoton:rgb(149, 45, 194);
    --colorLilaClaroBoton:rgba(149, 45, 194,0.3);
    --colorLinkAzul: #1023f9;
    --colorVerdeEncendidoBoton:rgb(154, 255, 2);
    --colorTurnoMañana: #46b9b7ff;
    --colorTurnoTarde: #f5a244ff;
    --colorTurnoNoche: #655bf0ff;
    --colorLogoAbc1: #3DC6CD;
    --colorLogoAbc2: #4389DD;
    --colorLogoAbc3: #4F5EE2;
    --colorLogoAbc4: #712CEF;
    --colorVT: #FF751F;
}

/* CLASES DE LETRAS*/

/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 700 */

.domine-titulo_h1 {
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 2rem;
  }

.domine-titulo_h3 {
  font-family: "Domine", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5rem;
}


.domine-texto_formulario {
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
}

.domine-boton {
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2rem;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  background-color: #000;   
}

.manito:hover{
    cursor: pointer;
}

.contenedor_general{
    width: 100vw;
    height: 100vh;
}

.encabezado{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100vw;
    height: 120px;
    /* background-color: var(--b_gloss_white); */
    background-color: #000;
    z-index: 3;
    
}

.logo{
    margin-top: 20px;
    margin-bottom: 20px;
    height: 80px;
    margin-left: 25px;
}

.footer{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    width: 100vw;
    height: 50px;
    background-color: var(--c_negro);
}

.logo_footer{
    margin-top: 10px;
    margin-bottom: 10px;
    height: 30px;
    margin-right: 25px;
    float: inline-end;
}

.logos_footer{
    display: inline-block;
    height: 40px;
    margin-right: 30px;
    margin-left: 30px;
    margin-top: 5px;
}

.tamimg{
    height: 30px;
}

/* 
.anim{
    position: absolute;
    top: 120px;
    width: 100vw;
    height: calc(100vh - 170px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: desaparece 1s 4.3s linear forwards;
}

@keyframes desaparece {
    0%{
        top: 120px;
        height: calc(100vh - 170px);
    }
    100%{
        top: calc(100vh - 170px);
        height: 0;
    }
} 

.icon_w{
    width: fit-content;
}

.w{
    fill: transparent;
    animation: llenado 4s linear forwards;
}

.i{
    fill: transparent;
    animation: llenado 4s 1s linear forwards;
}

.ip{
    fill: transparent;
    animation: llenado 4s 1s linear forwards;
}

.n{
    fill: transparent;
    animation: llenado 3.5s 2s linear forwards;
}


@keyframes llenado {
    0%{
        fill: transparent;
    }
    100%{
        fill: var(--c_verdeabc);
    }
}

*/




.informativo{
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    /* top: calc((100vh - 120px) * -1); */
    top: 120px;
    /* width: calc(100vw - 50px); */
    width: 100vw;
    min-height: 500px;
    /* height: calc(100vh - 220px); */
    height: calc(100vh - 170px);
    /* margin: 25px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: rgba(255, 255, 255, 0.5); */
    background-color: #000;
    background-image: url("../imagenes/fondo_login_vt.png");
    background-position: center;
    background-size: cover;
    background-repeat:no-repeat;
    border-radius: 10px;
    overflow-y: hidden;

    /* animation: bajadiv 2s 4s linear forwards; */
    /* animation: bajadiv 2s 0s linear forwards; */
}

@keyframes bajadiv {
    0%{
        top: calc((100vh - 170px) * -1);
        
    }
    100%{
        top: 120px;
        
    }
}

.informe{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}

.acceso{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}

.card_login{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0px;
    height: 0%;
    border: 0px solid var(--b_medium_gray);
    border-radius: 10px;
    
    /* animation: aparece_borde 1s 6.5s linear forwards, aparece_marco 0.5s 6s linear forwards; */
    /* animation: aparece_borde 1s 2.5s linear forwards, aparece_marco 0.5s 2s linear forwards; */
    animation: aparece_borde 1s 0.3s linear forwards, aparece_marco 0.5s 0.1s linear forwards;

}

@keyframes aparece_marco {
    0%{
        border: 0px solid var(--colorFondoOscuro02P);
        box-shadow: 0px 0px 0px var(--colorBlanco);
    }
    100%{
        border: 4px solid var(--colorBlanco);
        box-shadow: 0px 0px 10px var(--colorBlanco);
    }
}

@keyframes aparece_borde {
    0%{
        width: 0px;
        height: 60%;
    }
    100%{
        width: 350px;
        height: 60%;
    }
}

.fondo_recortado{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: 93%;
    height: 0%;
    border-radius: 10px;
    
    /* background-color: rgba(255, 255, 255, 0.5); */

    /* animation: aparece 1s 6.5s linear forwards; */
    /* animation: aparece 1s 2.5s linear forwards; */
    animation: aparece 1s 0.7s linear forwards;
} 

@keyframes aparece {
    0%{
        height: 0%;
        /* background-color: rgba(58, 63, 71, 0); */
        background-color: transparent;
    }
    100%{
        height: 95%;
        /* background-color: rgba(58, 63, 71, 1); */
        background-color: var(--colorBlanco04P);
    }
}

.controles{
    width: 0%;
    text-align: center;
    /* animation:  aparecen_controles 1s 7.5s linear forwards; */
    /* animation:  aparecen_controles 1s 3.5s linear forwards; */
    animation:  aparecen_controles 1s 0.9s linear forwards;
}

@keyframes aparecen_controles {
    0%{
        width: 0%;
    }
    100%{
        width: 100%;
    }
}

.tit_acceso{
    display: block;
    /* color: rgba(255, 90, 0,0); */
    color: rgba(0,0,0,0.1);
    /* color: rgba(255, 90, 0, 1); */
    margin: 0 auto;
    text-align: center;
   margin-bottom: 20px;

    /* animation:  aparece_tit 1s 7.8s linear forwards; */
    /* animation:  aparece_tit 1s 3.8s linear forwards; */
    animation:  aparece_tit 1s 0.9s linear forwards;
}

@keyframes aparece_tit {
    0%{
        /* color: rgba(255, 90, 0, 0); */
        color: rgba(255, 255, 255, 0);
    }
    100%{
        /* color: rgba(255, 90, 0, 1); */
        color: var(--b_matte_black);
    }
    
}

.intext{
    display: block;
    width: 0%;
    height: 40px;
    background-color: transparent;
    border: 0px solid rgba(255, 255, 255, 0);
   /*  border: 1px solid rgba(255, 90, 0, 1); */
    margin: 20px auto;
    color: var(--colorFondoOscuro09P);

    /* animation: aparece_intext 1s 7.8s linear forwards; */
    /* animation: aparece_intext 1s 3.8s linear forwards; */
    animation: aparece_intext 1s 0.9s linear forwards;
}

input::placeholder{
    color: var(--colorFondoOscuro);
}

.intext:focus{
    outline: none;
}

@keyframes aparece_intext {
    0%{
        width: 0%;
        border: 0px solid rgba(255, 90, 0, 0);
        border-radius: 0px;
        padding-left: 0px;
    }

    100%{
        width: 80%;
        border: 3px solid var(--colorFondoOscuro02P);
        border-radius: 10px;
        padding-left: 20px;
    }
}

.btnacceder{
    display: block;
    width: 0%;
    height: 40px;
    color: rgba(255, 255, 255, 0);
    /* color: rgba(255,255,255, 1); */
    /* background-color: var(--c_verdeabc); */
    margin: 0 auto;
    border: none;
    border-radius: 10px;
    margin-top: 30px;  
    /* animation: aparece_boton 1s 7.8s linear both; */
    /* animation: aparece_boton 1s 3.8s linear both; */
    animation: aparece_boton 1s 0.9s linear both;
}

.btnacceder:hover{
    cursor: pointer;  
}

.btnacceder_presiona{
    display: block;
    width: 80%;
    height: 40px;
    color: var(--colorBlanco05P);
    background-color: var(--colorFondoOscuro04P);
    margin: 0 auto;
    border: none;
    border-radius: 10px;  
    margin-top: 30px;    
}

.btnacceder_suelta{
    display: block;
    width: 80%;
    height: 40px;
    color: var(--colorVT);
    background-color: var(--colorFondoOscuro09P);
    margin: 0 auto;
    border: none;
    border-radius: 10px;  
    margin-top: 30px;  
}



@keyframes aparece_boton {
    0%{
        width: 0%;
        background-color: var(--colorFondoOscuro09P);
        color: rgba(255, 255, 255, 0);
    }
    100%{
        width: 80%;
        background-color: var(--colorFondoOscuro09P);
        color: var(--colorVT);
    }
}


/* ******************************************** BLOQUE INFORMES ********************************************* */

.solo_info{
    position: relative;
    width: 0%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;

    /* animation: aparece_info 1s 7.5s linear forwards; */
    animation: aparece_info 1s 3.5s linear forwards;
}

.tit_info{
    color: rgba(255, 255, 255, 0);
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;

    /* animation: aparece_tit_info 1s 8.5s linear forwards; */
    animation: aparece_tit_info 1s 4.5s linear forwards;
}

p{
    margin-left: 20px;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0);
    /* animation: aparece_p_info 1s 8.5s linear forwards; */
    animation: aparece_p_info 1s 4.5s linear forwards;
}

@keyframes aparece_info {
    0%{
        width: 0%;
    }
    100%{
        width: 80%;
    }
}

@keyframes aparece_tit_info {
    0%{
        color: rgba(255, 255, 255, 0);
    }
    100%{
        color: rgba(255, 255, 255, 1);
    }
}

@keyframes aparece_p_info {
    0%{
        color: rgba(255, 255, 255, 0);
    }
    100%{
        color: rgba(255, 255, 255, 1);
    }
}

.graf_gif{
    position: absolute;
    display: block;
    min-width: 270px;
    width: 90%;
    left: -100vw;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    border: 4px solid var(--c_verdeabc);
    border-radius: 10px;
    padding: 10px;

    /* animation: aparece_graf_gif 1s 8.5s linear forwards; */
    animation: aparece_graf_gif 1s 4.5s linear forwards;
    
}

.graf_gif img{
    max-width: 100%;
    min-width: 250px;
    width: 100%;
    margin: auto auto;
}



@keyframes aparece_graf_gif {
    0%{
        left: -100vw;
    }
    100%{
        left: 0;
    }
}

@media (max-width: 800px) {
    .informe, .acceso {
      width: 100%;
      
    }

    .informativo{
        align-content: flex-end;
        overflow: scroll;
        height: 100%;
    }
    
    .logos_footer{
        display: inline-block;
        height: 20px;
        margin-right: 10px;
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .tamimg{
        height: 20px;
    }

    @keyframes aparece_borde {
        0%{
            width: 0px;
            height: 50%;
        }
        100%{
            width: 350px;
            height: 50%;
        }
    }
    
}

  .mens_log{
    display: none;
    width: 100%;
    margin: 20px auto;
    color: var(--b_gloss_white);
  }

  .elpassw{
    position: relative;
}

.muestrapass{
    position: absolute;
    top: 10px;
    right: 15%;
    color: rgba(58, 63, 71, 0);
    z-index: 4;

    /* animation: aparece_icon_eye 1s 7.5s linear forwards; */
    animation: aparece_icon_eye 1s 3.5s linear forwards;
}

@keyframes aparece_icon_eye {
    0%{
        color: rgba(58, 63, 71, 0);
    }
    100%{
        color: rgba(58, 63, 71, 1);
    }
}

.muestrapass:hover{
    cursor: pointer;
}




/* ANIMACION LOGO CENTRAL */

/* 
.animate{
    width: 50%;
    transform: scale(2);
    animation: mueve 5s 5.5s both;
    z-index: 5;
}

#Vector_2 {
    animation: cambiaColor 3.5s .5s both;
}

#Vector_3 {
    animation: cambiaColor 3.5s 1s both;
}

#Vector_4 {
    animation: cambiaColor 3.5s 1.5s both;
}

#Vector {
    animation: cambiaColor 3.5s 2s both;
}

#Vector_5 {
    animation: cambiaColor 3.5s .5s both;
}

#Vector_6 {
    animation: cambiaColor 3.5s 1s both;
}
   
#Vector_7 {
    animation: cambiaColor 3.5s 2s both;
}


@keyframes cambiaColor{
    0%{
        fill: var(--b_gloss_white);
    }
    
    50%{
        fill: var(--b_medium_gray);
    }
    100%{
        fill: var(--b_matte_black);
    }
}

@keyframes mueve {
    100%{
        transform: translateX(-500%);
        
    }
}  */

/* ANIMACION LOGO CENTRAL */