:root {
    --verde: #92BA0F;
    --azul:  #148AFF;
    --azul_marino: #011931;
    --gris: #afb1a3;
    --gris_oscuro: #90949c;
}

/* Color Textos*/
.texto-azul{
    color: var(--azul);
}

.texto-azul-marino{
    color: var(--azul_marino);
}


.texto-verde{
    color: var(--verde);
}

.texto-gris{
    color: var(--gris);
}

.texto-gris-oscuro{
    color: var(--gris_oscuro);
}

.texto-blanco{
    color: white!important;
}

.texto-rojo{
    color: red;
}

.texto-naranja{
    color: orange;
}

.resumen-produccion{
    font-size: 1.8rem;
}

.tabla-produccion{
    font-size: 1.6rem;
}



/* Utilerias*/
.bg-azul-marino{
    background-color: var(--azul_marino);
    color: #FFF;
}

.bg-desactivado{
    background-color: var(--gris);
}

.bg-verde{
    background-color: var(--verde);
    color: #FFF;
}

.bg-verde:hover{
    background-color: #c5e65a;
    color: #FFF;
}

.bg-maroon:hover{
    background-color: #fa4d8d!important;
}

.negritas{
    font-weight: 700;
}

.radius-50{
    border-radius: 50px!important;
}

/*Espacios*/

.mg-top-10{
    margin-top: 10px;
}

.mg-bottom-10{
    margin-bottom: 10px;
}

.mg-left-20{
    margin-left: 20px;
}

.mg-right-20{
    margin-right: 20px;
}

.texto-izquierda{
    text-align: left!important;
}

.texto-derecha{
    text-align: right!important;
}

.texto-centrado{
    text-align: center;
}

.txt-place::placeholder {
    font-weight: 700;
}

.br-50{
    border-radius: 50%;
}

/* Texto Mayusculas*/
.texto-mayusculas{
    text-transform: uppercase;
}

/* Texto en chico para comentarios*/
.texto-chico{
    font-size: .8rem;
    margin-bottom: 0px;
}

.texto-30{
    font-size: 30px;
}

/*Caja para previsualizar documentos*/
.cajapreviewimg, 
.cajapreviewdocs{
    height: 138px;
    background: #FFF;
    margin-bottom: 10px;
    border-style: dashed;
    border-width: 2px;
    border-color: #007bff;
}

@media only screen and (max-width: 576px) {
    /* Contenedor que contiene los iconos de los documentos*/
    .cajapreviewdocs {
        height: auto;
    }
  }

/*Scrollbars en div*/
.barras{
    overflow-y: auto;
    max-width: 100%;
    height: 50vh;
    overflow-x: hidden;
}

.contenedor-subgrupos,
.contenedor-insumos,
.contenedor-comanda{
    max-height: 300px;
    display: block;
    overflow-y: scroll;
}

/* Clase para foto en caja*/
.foto-caja{
    height: 100%;
    max-width: 50%;
    min-width: 120px;
}

.foto-info{
    max-height: 100%;
    max-width: 100%;
}

/* Clase para documento en caja*/
.doc-caja{
    max-height: 100%;
    max-width: 50%;
    min-width: 120px;
}

/* Iconos para vista previa*/
.icono-documentos{
    display: inline-block;
    padding: 0px 10px;
    background-color: #007bff;
    color: #FFFF;
    font-size: 50px;
    transition: .15s ease-in-out;
}

.icono-documentos:hover{
    color: #ffffffdc;
    background-color: #0167d4;
}

/*Transicion*/
.transition{
    transition: .15s ease-in-out;
}

/* Para la sección donde se muestra la vista previa de la info general del registro*/
.width-available{
    width: 100%;
    width: -moz-available;          /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
    width: fill-available;
}

/* Cambiar el cursor al pasar por la tabla de registros*/
#registros tbody tr,
#registros-subgrupos tbody tr,
#registros-insumos tbody tr,
#tabla-comandas tbody tr,
#tabla-comanda tbody tr,
#tabla-productos-alta tr,
#tabla-servicios-alta tr,
#alertaCocina,
.pointer tr{
    cursor: pointer;
}

#registros tbody tr:hover,
#registros-subgrupos tbody tr:hover,
#tabla-productos-alta tr:hover,
#tabla-servicios-alta tr:hover,
#registros-insumos tbody tr:hover,
.sombreado tr:hover{
    background-color: rgba(104, 102, 222, 0.05);
}

#alertaCocina, 
#alertaAlimentos{
    position: absolute;
    padding: 0.25rem 0.75rem;
    display: none;
    cursor: pointer;
}

.filtro{
    display: none;
}

.padding-0{
    padding: 0px!important;
}

.padding-5{
    padding: 5px!important;
}

.nav-treeview .nav-item{
    padding-left: 12%;
}

/*Encabezado Fijo*/
.encabezado-fijo{
    position:sticky;
    top:0px;
}

.fondo{
    bottom: 1rem;
    position: absolute;
}