@font-face {
    font-family: "Cairo";
    src: url(../fonts/Cairo-Regular.ttf);
}
@font-face {
    font-family: "Cairo";
    font-weight: Bold;
    src: url(../fonts/Cairo-Bold.ttf);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
}

.Contenedor {
    width: 90%;
    margin: auto;
}
.Contenedor_Flexible{
    display: flex;
    flex-wrap: wrap; /* Si el elemento no cabe baje a la siguiente*/
    justify-content: space-between;
    align-items: center;
}
.Columna_25 {
    width: 25%;
}
.Columna_30 {
    width: 30%;
}
.Columna_50 {
    width: 49%;
}
.Columna_40 {
    width: 40%;
}
.Columna_70 {
    width: 70%;
}
.Espacio_5 {
    width: 100%;
    height: 5px;
}
.Espacio_10 {
    width: 100%;
    height: 10px;
}
.Header_info {
    background: #325191;
    color: white;
    padding: 10px;
}
.header_menu {
    background: #325191;
    color: white;
    height: 90px;
}
#btnMenu {
    display: none;
}
.header_menu label {
    font-size: 30px;
    cursor: pointer;
    display: none;
    color: white;
}
.header_menu ul {
    display: flex;
    list-style: none;
    background: #325191;
}
.header_menu ul ul {
    display: none;
}
.header_menu a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}
.header_menu a:hover {
    background: rgba(0,0,0,0.4);
}
.header_menu a span {
    margin-left: 5px;
}
.header_menu ul li:hover ul {
    display: block;
    background: #325191;
    position: absolute;
    z-index: 100;
}

/*======================== PAGE PRODUCT ==================================*/
.btnNuevo {
    display: block;
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    width: 150px;
    color: white;
    background: #325191;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
}
.Titulo_Page {
    display: block;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    width: 100%;
    color: #325191;
}

/*=============== MODAL ===============*/
.Modal, .Modal_Editar, .Modal_Eliminar, .Modal_Aumentar {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 5000;
}
.ModalContenedor_NuevoProducto {
    margin: auto;
    width: 70%;
    height: 100vh;
    padding: 20px;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 5px solid black;
    /*overflow-y: scroll;*/
}
.ModalContenedor_EliminarProducto {
    margin: auto;
    width: 30%;
    height: 500px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 5px solid black;
}
.ModalContenedor_AumentarProducto {
    margin: auto;
    width: 40%;
    height: 100vh;
    padding: 20px;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 5px solid black;
}
.Boton_CerrarModal {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: red;
    font-size: 2.5em;
    text-align: center;
    border-radius: 50%;
    border: 0;
    font-family: monospace;
}

.Titulo_Modal {
    display: block;
    text-align: center;
    color: #325191;
    font-weight: bold;
    font-size: 30px;
    border-bottom: 2px solid #325191;
}
.Texto_Form {
    display: block;
    font-size: 20px;
    color: rgba(0,0,0,0.7);
}
.Caja_Form {
    display: block;
    width: 90%;
    font-size: 16px;
    margin-bottom: 20px;
    padding: 5px;
}
.Area {
    display: block;
    width: 90%;
}
.btnGuardar {
    font-size: 20px;
    padding: 5px;
    background: #325191;
    color: white;
    border: 0;
    font-weight: bold;
    width: 100px;
    cursor: pointer;
}
.btnLimpiar {
    font-size: 20px;
    padding: 5px;
    background: #2BAC6B;
    color: white;
    border: 0;
    font-weight: bold;
    width: 100px;
    margin-left: 20px;
    cursor: pointer;
}
.btnEditar {
    background: #ACA82B;
    color: white;
    border: 0;
    padding: 2px;
    font-size: 16px;
    border-radius: 10px;
    padding: 0 5px;
    cursor: pointer;
}
.btnEliminar {
    background: #AC352B;
    color: white;
    border: 0;
    padding: 2px;
    font-size: 16px;
    margin-left: 5px;
    border-radius: 10px;
    padding: 0 5px;
    cursor: pointer;
}
.vacio {
    display: none;
    background: none;
}
.MensajeForm_EditarProducto {
    display: block;
    color: white;
    
}
.Correcto {
    background: green;
    padding: 10px;
    color: white;
    font-size: 25px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    font-family: 'Merriweather', serif;
}
.Incorrecto {
    background: red;
    padding: 10px;
    color: white;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    font-family: 'Merriweather', serif;
}
.colorAumentar {
    background: rgba(0,0,0,0.7);
}

.img_Logo {
    display: block;
    width: 300px;
    margin: auto;
}
.Text_Dato {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: rgba(0,0,0,0.5);
}
.Text_Dato1 {
    display: block;
    font-size: 18px;
    color: rgba(0,0,0,0.5);
}
.Sub_Requerimiento {
    display: block;
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    color: rgba(0,0,0,0.6);
}

#Form_Requerimiento {
    background: rgba(0,0,0,0.1);
    padding: 20px;
    margin-right: 10px;
    width: 100%;
}

.Titulo_Modulo {
    display: block;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    color: rgba(0,0,0,0.7);
}
.SubTitulo_Modulo {
    display: block;
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    color: rgba(0,0,0,0.7);
    border-bottom: 2px solid rgba(0,0,0,0.7);
    margin-bottom: 10px;
}
.Margin_Bottom_Auto {
    margin-bottom: auto;
}
.Margin_Lef {
    margin-left: 20px;
}
.Link_Sesion {
    display: block;
    color: white;
    text-align: right;
}
.Text_Form {
    display: block;
    font-size: 14px;
    color: rgba(0,0,0,0.6);
}
.Caja {
    display: block;
    width: 95%;
    margin-bottom: 5px;
    border: 0;
    border-bottom: 1px solid black;
    background: white;
    border-radius: 5px;

}
.Caja_Tabla {
    
}
.Descripcion {
    width: 700px;
}
.Tabla_Requerimiento {
    margin: auto;
    
}
.Productos_Disponibles {
    padding: 20px;
    background: white;
    border: 3px solid #325191;
}
.ID {
    width: 50px;
}
.btnQuitar {
    border: 0;
    background: white;
    padding: 0 5px;
    font-weight: bold;
    cursor: pointer;
}
.requerir {
    margin-bottom: 20px;
    margin-top: 10px;
}

.imprimir {
    padding: 7px;
    margin-bottom: 20px;
    margin-top: 10px;
    margin-left: 10px;
    background: white;
    color: #325191;
    border: 1px solid #325191;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    width: 150px;
}
.nuevo {
    margin-bottom: 20px;
    margin-top: 10px;
    margin-right: 0;
    margin-left: 10px;
    background: #2BAC6B;
}
.Nota {
    display: block;
    color: red;
}
.Contenedor_Botones {
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    text-align: right;
    padding-right: 0;
}
.buttons-excel{
    background: #2BAC6B;
    cursor: pointer;
    color: white;
    border: 0;
    padding: 0 10px;
    font-size: 25px;
    font-weight: bold;
}







