:root {
    --verde: #92BA0F;
    --azul:  #148AFF;
    --azul_marino: #011931;
    --gris: #afb1a3;
    --gris_oscuro: #90949c;
    --surface-2: #F9F8F5;

    --radius-sm: 6px;
}

/* 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-azul-transparente{
    background: rgba(23, 162, 184, 0.12);
}

.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;
}

.bg-surface-2{
    background: var(--surface-2);
}

.negritas{
    font-weight: 700;
}

.radius-50{
    border-radius: 50px!important;
}

.items-center{
    align-items: center;
}

/*Espacios*/

.mg-top-10{
    margin-top: 10px;
}

.mg-top-20{
    margin-top: 20px;
}

.mg-bottom-10{
    margin-bottom: 10px;
}

.mg-left-20{
    margin-left: 20px;
}

.mg-right-20{
    margin-right: 20px;
}

.letter-spacing-1{
    letter-spacing: .1em;
}

.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%;
}

/* Gradientes */
.green-gradient{
    background: linear-gradient(135deg, #1c934e, #2ecc71);
}

.blue-gradient{
    background: linear-gradient(135deg, #2980b9, #3dbcca);
}

.orange-gradient{
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

.red-gradient{
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

/* Shadows */
.shadow-1{
    box-shadow: 3px 3px 12px 1px rgba(125,125,125,0.3);
}

/* 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 **/

/* 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;
}

/* Iconos para formas de pago*/
.payment-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pay-efectivo {
    background: #E8F5EE;
}

.pay-tarjeta {
    background: #EBF2FC;
}

.pay-transferencia {
    background: #F3F0FF;
}

.pay-otros {
    background: #F9F8F5;
}

/*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,
.pointer{
    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;
}

/*Para el cuadro de busqueda*/
.select2-container--default .select2-results>.select2-results__options{
    max-height: 50vh!important;
}

/*Para mi ventanta de busqueda*/
.input-invicible{
    width: 100%;
    background-color: transparent;
    color: #000;
    outline: none;
    border: none;
    font-size: 1.5rem;
}

.input-invicible::placeholder{
    color: #000;
}

/*Clases para mi card producto*/
.card-producto{
    position: relative;
}

.card-producto img{
    height: 150px;
    width: 100%;
    max-width: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 1px 2px 5px rgba(0,0,0,0.2);
}

.card-producto-info{
    font-size: 1rem;
    font-weight: 300;
}

.card-producto-info p:nth-child(1){
    font-weight: 600;
    color: grey;
}

.card-producto-info p{
    margin-bottom: 0;
}

/*Lugar dodne aparecen mis productos*/
.contenedor-productos{
    max-height: calc(100vh - 40px);
    overflow: hidden;
    overflow-y: auto;
}

/*Botones Invicibles*/
tr:hover .btn-invicible{
    display: inline-block!important;
}

/*Imagen en la nota*/
.image-nota{
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}