* {
    box-sizing: border-box;
    font-family: Verdana, Helvetica, sans-serif;
}

html {

    height: 100%;
    max-height: 100%;
    overflow: auto;

}


body {

    font-size: 13px;
    line-height: 1.6em;
    margin: 0;
    padding: 0;

}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

a {
    font-size: 13px;
    text-decoration: none;
}


.logo-div {
    border: 2px #CEE3F6 solid;
    vertical-align: middle;
    width: 208px;
    height: 70px;
}


input, textarea, select {

    font-family: Arial, Verdana;
    border: 1px solid #b5bcc4;
    background: white;
    font-size: 15px;
    color: black;
    border-radius: 5px; /* Borde redondeado */
}


input[type="button"], input[type="submit"] {

    background-color: #34a7e0;
    border: 1px solid #34a7e0;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    font-family: Arial, Verdana;

}

input[type="button"]:hover, input[type="submit"]:hover {
    opacity: 0.8;
}


.input_bordes_rojo {
    border: 3px solid red;

}

.input_bordes_azul_fuerte {
    border: 3px solid blue;

}


.input_bordes_azul_normal {
    border: 1px solid #e7e7e7;

}


/* Celda principal de los titulos de menu */
.titulos_de_menu {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;

    font-family: verdana;
    color: #ffffff;
    background: #34a7e0;
    border-radius: 2px 2px 2px 2px;
    text-align: center;
    font-weight: normal;

    margin: 0px 0px 0px 0px;
    height: 23px;

}

/* Letrero interno de los titulos de menu */
.titulos_de_menu_interno {
    margin: 0px 0px 0px 0px;
    padding: 2px 0px 1px 0px;
    border-radius: 0px 0px 0px 0px;


}

/* Elementos seleccionables de los menus */
.elementos_normales_de_menu {

    display: flex;
    justify-content: left;
    align-items: center;

    margin: 0px 0px 0px 0px;
    padding: 2px 4px 2px 4px;
    border-left: 1px solid #dadada;
    border-right: 1px solid #dadada;
    background-color: #f9f9f9;
    height: 26px;


}

.enlace_de_elementos_normales_de_menu {
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.titulos_de_segutienda {

    padding: 5px;
    border-radius: 10px;
    border: 1px solid #808080;
    display: flex;
    flex-direction: row;
    margin: 10px 20px 10px 20px;

}


.titulo_de_segutienda_leyenda {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-items: left;
    align-items: center;
    font-size: 20px;
    font-weigth: bold;

}


.titulo_contenido {

    flex-direction: column;
    justify-content: center;
    align-content: center;

    text-align: center;
    color: #ffffff;
    background-color: #34a7e0;
    padding: 0;
    margin: 0;
    height: 24px;
    width: 100%;
    border-radius: 0px 5px 5px 0px;
}

.titulo_menu_izquierdo {

    width: 100%;
    padding: 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
    font-weight: normal;
    height: 24px;
    vertical-align: middle;
    border-radius: 5px 0px 0px 0px;
    font-family: verdana;
    color: white;
    background-color: #34a7e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;

}

/*
Ventanas
*/
.div_movible {

    display: none;
    position: fixed;

    top: 50%;
    left: 50%;

    /* Centra ventana */
    transform: translate(-50%, -50%);

    z-index: 0;
    background-color: #ffffff;
    border: 0px solid #d3d3d3;
    padding: 0px;

    /* Sombra de la ventana */
    box-shadow: 4px 4px 8px 8px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

    /* Redondea borde de ventana */
    border-radius: 8px 8px 0px 0px;

    /*
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s

     */


}

.div_movible_encabezado {


    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    justify-content: space-between;

    padding: 4px 10px 4px 10px;
    background-color: #09a0d4;
    color: #ffffff;
    cursor: default;

    /* Redondea borde de ventana */
    border-radius: 8px 8px 0px 0px;

}

.div_movible_encabezado:hover {

    cursor: move;

}

.div_movible_contenido {


    top: 0px;
    padding: 4px 10px 4px 10px;
    background-color: #FFFFFF;
    color: #000000;
    cursor: default;

}

.div_bloqueador {

    display: none;
    position: fixed;
    z-index: 151545789;
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */

    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    border: 0px solid black;
    /* transition: opacity 1s, z-index 0s 1s; */

}


.boton_cerrar_ventana:hover,
.boton_cerrar_ventana:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


/* to the body element */
.noscroll {
    overflow: hidden;
}

@media (min-device-width: 1025px) {
    .noscroll {
        padding-right: 15px;
    }
}

.overlay {
    position: fixed;
    overflow-y: scroll;
    inset: 0;
}

[aria-hidden="true"] {


    width: 100vw;
    z-index: -1;


}

[aria-hidden="false"] {

    width: 100%;
    z-index: 1;
}


:focus {
    outline: 1px #2fa0ff solid;
}

/* this code is not strictly necessary: just to make this demo a bit pleasant */

.overlay div {
    margin: 15vh auto;
    width: 80%;
    max-width: 650px;
    padding: 30px;
    min-height: 200vh;
    background: rgba(255, 255, 255, .95);
}

.overlay {
    background: rgba(40, 40, 40, .75);
}


/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}


.cuadro_informativo_normal {
    text-align: justify;
    font-family: Arial;
    font-size: 20px;
    width: auto;
    padding: 10px;
    background-color: #FFFF94;
    border: 1px solid black;
    cursor: hand;
    color: red;

    border-radius: 5px;
}


.selector_de_montos_de_recarga {
    width: 210px;
    font-size: 20px;
    text-align-last: center;

}
