﻿body {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Evita el desplazamiento de la página mientras el spinner está activo */
    margin: 0; /* Asegura que no haya márgenes alrededor del cuerpo */
    padding: 0; /* Asegura que no haya relleno alrededor del cuerpo */
    pointer-events: auto;
}

/************** Estilos para modo celular ****************/
.animacion-deslizar-arriba {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animacion-deslizar-abajo {
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animación de deslizamiento hacia la derecha */
@keyframes slideRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animación de deslizamiento hacia la izquierda */
@keyframes slideLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animacion-deslizar-derecha {
    animation: slideRight 0.5s ease;
}

.animacion-deslizar-izquierda {
    animation: slideLeft 0.5s ease;
}

.detalle-btn {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 999;
    display: none;
    width: 100%;
    border-radius: inherit;
    text-align: left;
    height: 40px;
    font-size: 17px;
}

@media (max-width: 767px) {
    /* Estilos para el botón */
    .detalle-btn {
        display: block;
    }
}

/************** Estilo de lista de Clientes para celular ****************/
.card-cliente {
    border-bottom: 1px solid #e3dede;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 13px;
    width: 100%;
    justify-content: space-between;
    padding-top: 3px;
    cursor: pointer;
}

.cliente-nombres {
    display: flex;
    justify-content: space-between;
    color: black;
}

.select-cli {
    color: white !important;
}

.btn-nuevo-cli {
    position: fixed;
    bottom: 12px;
    right: 18px;
    z-index: 999;
    display: block;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    height: 60px;
    color: white !important;
    font-size: 28px;
    background-color: var(--secundario) !important;
    border: 1px solid var(--secundario) !important;
}

    .btn-nuevo-cli:hover {
        background-color: var(--hoversecundario) !important;
        color: white !important;
        border: 1px solid var(--hoversecundario) !important;
    }

/************** End ****************/

#spinner-container {
    display: none; /* Oculta el spinner por defecto */
}

.spinner-style-container {
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}

.spinner-style-card {
    height:calc(100% - 140px);
    position: fixed;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    align-items:center;
}

.spinner-style {
    width: 5rem;
    height: 5rem;
    color: var(--primario) !important;
}

.fondolibre {
    height: 100%;
}

.cajas {
    padding-left: 0;
    padding-right: 0;
}

.tabla-fija {
    padding-left: 0;
    padding-right: 0;
    height: calc(100% - 50px);
}

.pv {
    padding-left: 0;
    padding-right: 0;
    height:100%;
}

.rowpv {
    margin-left: 0;
    margin-right: 0;
}

.colpad {
    padding: 0;
}

.contenedor-caja-apertura {
    width: 55%;
    margin-top: 50px;
}

@media only screen and (max-width: 850px) {
    .contenedor-caja-apertura {
        width: 90%;
    }
}

.alert-caja {
    font-size: 25px;
    padding: 10px;
    color: #ed6f15;
    background-color: #f5d56682;
    border: 1px solid #ffb307a6;
    margin-top: 15px;
}

/************** Estilos para las mesas ****************/
.mlibre {
    margin-right: 5px;
    margin-bottom: 5px;
    width: 181px;
    height: 90px;
    padding-top: 33px;
    background-color: #68cc8b;
    border: 1px solid #38AE93;
    border-radius: 25px;
    box-shadow: 0 -3px 0 rgba(0,0,0,0.1) inset;
    border-style: solid;
}

    .mlibre:hover {
        background-color: #38AE93;
        border: 1px solid #79c349;
    }

@media only screen and (max-width: 850px) {
    .mlibre {
        width: 48%;
    }
}

.mocupada {
    margin-right: 5px;
    margin-bottom: 5px;
    width: 181px;
    height: 90px;
    padding-top: 33px;
    background-color: #EF464D;
    border: 1px solid #c33;
    border-radius: 25px;
    box-shadow: 0 -3px 0 rgba(0,0,0,0.1) inset;
    border-style: solid; 
}

    .mocupada:hover {
        background-color: #c33;
        border: 1px solid #c33;
    }

@media only screen and (max-width: 850px) {
    .mocupada {
        width: 48%;
    }
}

/************** Color para botónes ****************/
.btn-warning {
    border-radius: 8px;
}

.btn-danger {
    border-radius: 8px;
}

.btnSc {
    background-color: #04AA6D;
    border: #04AA6D;
    color: white;
    border-radius: 8px;
}

    .btnSc:hover {
        background-color: #0b8d5d;
    }

.btnPri {
    background-color: var(--secundario);
    border: var(--secundario);
    color: white;
    border-radius: 8px;
}

    .btnPri:hover {
        background-color: var(--hoversecundario);
    }

.btnLight {
    background-color: #ffffff;
    color: var(--secundario);
    border-color: var(--secundario);
    border-radius: 8px;
}

    .btnLight:hover {
        background-color: var(--hoversecundario);
        color: white;
        border-color: var(--hoversecundario);
    }

.btnPrima {
    background-color: var(--primario);
    color: white;
    border: 1px solid var(--primario);
    border-radius: 10px;
}

    .btnPrima:hover {
        background-color: white;
        color: var(--primario);
        border: 1px solid var(--primario);
    }

.btnFactPri {
    background-color: var(--secundario);
    border: 1px solid var(--secundario);
    color: white;
    border-radius: 8px;
}

    .btnFactPri:hover {
        background-color: white;
        color: var(--secundario);
        border: 1px solid var(--secundario);
    }

.btnInfo {
    background-color: #31AEE4;
    border: #31AEE4;
    color: white;
    border-radius: 8px;
}

    .btnInfo:hover {
        background-color: #02b1fb;
    }

.btnDefecto {
    background-color: white;
    border: 1px solid #cdcdcd;
    color: black;
    border-radius: 8px;
}

    .btnDefecto:hover {
        background-color: #e1e1e1;
        border: 1px solid #e1e1e1;
    }

.btnOrdenCongelada {
    padding-top: 5px;
    height: 30px;
    width: 45px;
    color: #595959;
    background-color: #e0e5e7;
    border-radius: 5px;
    border: 0;
    box-shadow: none;
}

    .btnOrdenCongelada:hover {
        background-color: #c8d0d3;
    }

.btnPolitica {
    background-color: white;
    border: 1px solid #dc243e;
    color: #dc243e;
    border-radius: 8px;
    font-weight: bold;
}

    .btnPolitica:hover {
        color: white;
        background-color: #dc243e;
        border: 1px solid #dc243e;
        font-weight: bold;
    }

.btnOrange {
    background-color: #f0822b;
    border: #f0822b;
    color: white;
    border-radius: 8px;
}

    .btnOrange:hover {
        background-color: #e56d0e;
    }

.btnDanger {
    background-color: #dc3545;
    border: #dc3545;
    color: white;
    border-radius: 8px;
}

    .btnDanger:hover {
        background-color: #bf5761;
    }

.btnSecon {
    background-color: #b2b2b2;
    border: #b2b2b2;
    color: white;
    border-radius: 8px;
}

    .btnSecon:hover {
        background-color: #919090;
    }

.btnTurq {
    background-color: #07a59d;
    border: #07a59d;
    color: white;
    border-radius: 8px;
}

    .btnTurq:hover {
        background-color: #06817b;
    }

.btnRose {
    background-color: #ee4b82;
    border: #ee4b82;
    color: white;
    border-radius: 8px;
}

    .btnRose:hover {
        background-color: #bd0845;
    }

.btnOrange2 {
    background-color: #ffc107;
    border: #ffc107;
    color: white;
    border-radius: 8px;
}

    .btnOrange2:hover {
        background-color: #e5ae08;
    }

.btnFacturita {
    width: 45px;
    height: 32px;
    font-size: 23px;
    background-color: #31AEE4;
    border: 1px solid #31AEE4;
    color: white;
    border-radius: 7px;
    margin-bottom: 2px;
}

    .btnFacturita:hover {
        background-color: #0587f7;
    }

.btnAnalogo {
    width: 45px;
    height: 32px;
    font-size: 23px;
    background-color: var(--analogo);
    border: 1px solid var(--analogo);
    color: white;
    border-radius: 7px;
    margin-bottom: 2px;
}

    .btnAnalogo:hover {
        background-color: var(--hoversecundario);
        border: 1px solid var(--hoversecundario);
        color: white;
    }

.btnFacturitaLight {
    width: 45px;
    height: 32px;
    font-size: 23px;
    background-color: #ffffff;
    border: 1px solid #1b78bd;
    color: #1b78bd;
    border-radius: 7px;
    margin-bottom: 2px;
}

    .btnFacturitaLight:hover {
        background-color: #1b78bd;
        color: white;
        border: 1px solid #1b78bd;
    }

.btnFacturitaOrange {
    width: 45px;
    height: 32px;
    font-size: 23px;
    background-color: #ffc107;
    border: #ffc107;
    color: white;
    border-radius: 7px;
    margin-bottom: 2px;
}

    .btnFacturitaOrange:hover {
        background-color: #e5ae08;
    }

.btnFacturitaEdicion {
    height: 32px;
    background-color: #ffffff;
    border: 1px solid #1b78bd;
    color: #1b78bd;
    border-radius: 7px;
    margin-bottom: 2px;
}

    .btnFacturitaEdicion:hover {
        background-color: #1b78bd;
        color: white;
        border: 1px solid white;
    }

.btnFacturitaCancelEdicion {
    height: 32px;
    background-color: #c0c0c0;
    border: 1px solid #c0c0c0;
    color: black;
    border-radius: 7px;
    margin-bottom: 2px;
}

    .btnFacturitaCancelEdicion:hover {
        background-color: #f5f5f5;
        color: black;
        border: 1px solid black;
    }

.btnFacturitaRose {
    height: 32px;
    font-size: 14px;
    background-color: #ee4b82;
    border: #ee4b82;
    color: white;
    border-radius: 7px;
    margin-bottom: 2px;
    display:flex;
}

    .btnFacturitaRose:hover {
        background-color: #bd0845;
    }

/************** Estilos para las Cajas ****************/
.card {
    width: 100%;
    height: 100%;
}

.btnAccion {
    color: black;
    border: 1px solid silver;
    margin-left: -7px;
}

    .btnAccion:hover {
        background-color: silver;
        border: 1px solid silver;
    }

.menu-acciones {
    padding-top: 1px;
    padding-bottom: 1px;
    right: 29.5px;
    top: -1px;
    position: absolute;
    z-index: 1 !important;
}

.menu-acciones-ordenes {
    padding-top: 1px;
    padding-bottom: 1px;
    right: 0;
}

/************** Estilos para el Punto de Venta ****************/
.contenedorPV{

}

.botonestopizq {
    min-height: 38px;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    display: flex;
}

    .botonestopizq i {
        vertical-align: top;
    }

.botonestopder {
    min-height: 38px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    display:flex;
}

    .botonestopder i {
        vertical-align: top;
    }


.contenedor-detalle {
    height: calc(100% - 40px);
}

.body-detalle {
    background-color: white;
    border: 1px solid #dfdfdf;
    font-size: 13px;
    width: 100%;
    margin-bottom: 5px;
    overflow-x: hidden;
    overflow-y: auto;
}

/* ========== ScroolBar Detalle - Productos ==========*/
    .scrool-detalle {
    overflow-y: auto; /* Habilita la barra de desplazamiento horizontal */
    /*white-space: nowrap;*/ /* Evita que el contenido se ajuste automáticamente */
}

    /* Estilos de la barra de desplazamiento */
    .scrool-detalle::-webkit-scrollbar {
        width: 6px; /* Establece la altura de la barra de desplazamiento */
    }

    .scrool-detalle::-webkit-scrollbar-thumb {
        background-color: silver; /* Color del pulgar de la barra de desplazamiento */
    }

    .scrool-detalle::-webkit-scrollbar-track {
        background-color: #f1f1f1; /* Color de la pista de la barra de desplazamiento */
    }

.scrool-detalle-x {
    overflow-x: auto; /* Habilita la barra de desplazamiento horizontal */
    /*white-space: nowrap;*/ /* Evita que el contenido se ajuste automáticamente */
}

    /* Estilos de la barra de desplazamiento */
    .scrool-detalle-x::-webkit-scrollbar {
        height: 7px; /* Establece la altura de la barra de desplazamiento */
    }

    .scrool-detalle-x::-webkit-scrollbar-thumb {
        background-color: silver; /* Color del pulgar de la barra de desplazamiento */
    }

    .scrool-detalle-x::-webkit-scrollbar-track {
        background-color: #f1f1f1; /* Color de la pista de la barra de desplazamiento */
    }

.producto-item {
    border-bottom: 1px solid #e3dede;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 13px;
    width: 100%;
    justify-content: space-between;
    padding-top: 3px;
    cursor: pointer;
}

/*.producto-item:hover {
        background-color: var(--primario);
    }*/

.producto-und-imp {
    display: flex;
    justify-content: space-between;
    color: #414141;
}

.producto-imp {
    color: #0189FA;
    font-weight:bold;
}

.select-imp {
    color: black !important;
}

.seleccionfila {
    background-color: #e6f2f3;
    color: black !important;
    border: 1px solid #017e84;
    border-radius: 5px;
}

.botonesAT{
    padding:7px;
}

.classBotonTotal {
    margin-bottom: 7px;
    width: 100%;
    font-size: 15px;
    height:45px;
}

.classBotonCliente {
    margin-top: -15px;
    margin-bottom: -8px;
    width: 100%;
    text-align: left;
    font-size: 15px;
}

.classBotonBottom {
    width: 100%;
    text-align: center;
    font-size:15px;
}

.classBotonMax {
    width: 100%;
    text-align: center;
    font-size: 15px;
}

    .classBotonMax i {
        font-size: 18px;
        vertical-align: middle;
    }

.label-text-totales{
    margin-top:5px;
}

.color-total {
    font-size: 19px;
    color: #48c517;
}

.label-totales {
    margin-top: 5px;
    text-align:right;
}

.totales {
    font-weight: bold;
    font-size: 13px;
    display: flex;
    padding: 4px 10px;
    width: 100%;
}

    .totales input {
        margin-top: -10px;
        margin-bottom: -10px;
        margin-left: 6px;
        text-align: right;
        padding-right: 5px;
    }

/************** Categorias ****************/
.menu-container {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Para un desplazamiento suave en dispositivos iOS */
    scrollbar-width: auto; /* Para ocultar la barra de scroll en navegadores que la soportan */
    -ms-overflow-style: none; /* Para ocultar la barra de scroll en navegadores que la soportan */
}

.menu-item {
    white-space: nowrap; /* Evita que los elementos se envuelvan a la siguiente línea */
}

.categorias {
    display: flex;
    font-weight: bold;
    font-size: 13px;
    min-height: 40px;
    width: 100%;
    padding-left: 5px;
}

.nav-link2 {
    display: block;
    padding: 0.5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.nav-item-color {
    color: #fff;
    background-color: var(--secundario);
}

    .nav-item-color:hover {
        color: white;
        background-color: var(--hoversecundario);
    }

.active {
    background-color: var(--primario);
}

/* ========== ScroolBar Categorías ==========*/
.scrool-categorias {
    overflow-x: auto; /* Habilita la barra de desplazamiento horizontal */
    white-space: nowrap; /* Evita que el contenido se ajuste automáticamente */
}

    /* Estilos de la barra de desplazamiento */
    .scrool-categorias::-webkit-scrollbar {
        height: 4px; /* Establece la altura de la barra de desplazamiento */
    }

    .scrool-categorias::-webkit-scrollbar-thumb {
        background-color: silver; /* Color del pulgar de la barra de desplazamiento */
    }

    .scrool-categorias::-webkit-scrollbar-track {
        background-color: #f1f1f1; /* Color de la pista de la barra de desplazamiento */
    }

/************** Salones ****************/
.menu-container-salon {
    display: flex;
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch; /* Para un desplazamiento suave en dispositivos iOS */
    scrollbar-width: none; /* Para ocultar la barra de scroll en navegadores que la soportan */
    -ms-overflow-style: none; /* Para ocultar la barra de scroll en navegadores que la soportan */
}

.menu-item-salon {
    white-space: nowrap; /* Evita que los elementos se envuelvan a la siguiente línea */
}

.salones {
    display: flex;
    font-size:18px;
    width: 95%;
}

.nav-item-color-salon {
    color: #1378BC;
    background-color: white;
}

.activeSalon {
    color: white !important;
    background-color: #1378BC !important;
}

/* ========== ScroolBar Salones ==========*/
.scrool-salones {
    overflow-x: auto; /* Habilita la barra de desplazamiento horizontal */
    white-space: nowrap; /* Evita que el contenido se ajuste automáticamente */
}

    /* Estilos de la barra de desplazamiento */
    .scrool-salones::-webkit-scrollbar {
        height: 4px; /* Establece la altura de la barra de desplazamiento */
    }

    .scrool-salones::-webkit-scrollbar-thumb {
        background-color: silver; /* Color del pulgar de la barra de desplazamiento */
    }

    .scrool-salones::-webkit-scrollbar-track {
        background-color: #f1f1f1; /* Color de la pista de la barra de desplazamiento */
    }

/************** Productos ****************/
.productos-contenedor {
    padding-left: 5px;
    padding-right: 0;
    margin-top: 5px;
    height: calc(100% - 125px);
    overflow-y: auto;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    /*grid-template-columns: repeat(auto-fill, 275px);
    justify-content: space-between;*/
}

.productPos {
    height: 122px;
    background: #fff;
    border: 0.1rem solid rgb(178 178 178 / 72%);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    padding-left: 0;
    padding-right: 3px;
    box-shadow: 1px 2px 5px rgba(0,0,0,.1);
    position:relative;
}

    .productPos:hover {
    }

.producto-img-container {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .producto-img-container img {
        display: block;
    }

.producto-name {
    font-weight: bold;
    font-size: 10.5px;
    margin-top: 1px;
    line-height: normal;
    white-space: normal;
}

.row-preciofav {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.producto-precio {
    font-weight: bold;
    font-size: 12px;
    border-radius: 2px;
    color: #1378bc;
    padding: 1px 4px 1px 5px;
}

.producto-favorito {
    padding-left: 5px;
    color: orange;
    font-size: 16px;
}

.producto-name-bottom {
    position: absolute;
    bottom: 8px;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 5px 0 5px;
}

/*** Animación para agregar el producto (Phone) ***/
.add-prod-animation {
    animation: addcarrito 1s;
}

@keyframes addcarrito {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    100% {
        transform: translateY(80vh) translateX(0) scale(0.4);
        opacity: 1;
    }
}

.add-prod-animation-izquierda {
    animation: addcarritoizq 0.4s;
}

@keyframes addcarritoizq {
    from {
        transform: translateX(0) scale(1);
        opacity: 0;
    }

    to {
        transform: translateX(-120vh) scale(0.4);
        opacity: 1;
    }
}

/************** Paginación ****************/
.contenedor-pag {
    padding-left: 5px;
    padding-right: 0;
}

.contenedor-group {
    display: flex;
    justify-content: space-between;
    border: 1px solid #c9c9c9;
    padding: 3px;
    border-radius: 3px;
    position: relative;
}

.pagination {
    display: flex;
    justify-content: right;
}

    .pagination span {
        margin: 0 2px;
        padding: 4px 8px;
        font-size: 14px;
        text-decoration: none;
        border: 1px solid #ccc;
        color: #7f7d7d;
        border-radius: 3px;
        font-weight: bold;
        cursor:pointer;
    }
        .pagination span:hover {
            background-color: #0189fa;
            color: white;
        }

    .pagination .previous,
    .pagination .next {
        color: #0189fa;
    }

    .pagination i {
        font-weight: bold;
        font-size: 14px;
    }

.registros {
    font-size: 13.5px;
    font-weight: bold;
    color: #595656;
    margin-top: 7px;
    padding-left:7px;
}

/************** Estilos para Tablas ****************/
.redondear {
    border-radius: 12px;
}

.table {
    border-collapse: separate;
    border-spacing: 0;
}

    .table thead th {
        background-color: var(--secundario);
        padding: 0.3rem 0.2rem 0.4rem 0.2rem;
        white-space: nowrap;
        overflow: hidden;
        border-bottom: none !important;
        top: 35px;
        color: white;
    }

    .table td {
        
    }

    .table tfoot {
        background-color: #e6ecef;
        color: #0189fa;
    }

.cardnew-sf {
    height: 100%;
    margin-bottom: 0px !important;
    border-radius: 12px;
}

.cardnew-cf {
    height: 100%;
    margin-bottom: 0px !important;
    padding-bottom: 50px;
}

.sftabla {
    margin-bottom: 0rem !important;
    height: 100%;
}

.headfijodosfilas {
    top: 0;
    position: sticky;
    z-index: 100;
    font-size: 14px;
}

.footfijodosfilas {
    position: sticky !important;
    bottom: 0px;
    background-color: white;
}

.sfcardfooter {
    position: absolute;
    bottom: 0;
    background-color: white;
    height: 50px;
    width: 100%;
}

.seleccionfilatable {
    background-color: #FAE288;
    color: black !important;
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: white;
}

/************** Estilos para Modales ****************/
.modal {
    position:absolute;
}

.modal-header{
    padding:10px;
}

.modal-body {
    padding: 15px;
}

.modal-footer {
    padding: 5px;
}

.close {
    border: 1px solid silver;
    border-radius: 4px;
    font-size: 16px;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: bold;
}

    .close:hover {
        background-color: #dfdddd;
    }

.msjeError {
    font-size: 13.5px;
    font-weight: bold;
    background-color: #fda400;
    padding: 10px;
}

/************** Estilo Modal Tipo Documento ****************/

.card-doc {
    margin-bottom: 7px;
    margin-right: 4px;
    margin-left: 4px !important;
    height: 100px;
    width: 148px;
    border-radius: 5px !important;
}

.cont-name-serie {
    padding: 2px;
    font-weight: bold;
    font-size: 15px;
}

/************** Estilo de MultiPago ****************/
.contenedor-MP {
    margin-top: 12px;
}

.buttonformaspago {
    font-size: 18px;
    text-align: center;
    width: 100%;
    height: 57px;
    border: solid 1px #e5d7cc;
    border-radius: 10px;
    background-color: white;
    box-shadow: 1px 1px 1px 1px #e6e6e6;
}

    .buttonformaspago:hover {
        background-color: var(--primario) !important;
        color:white !important;
    }

.botonesMP {
    display: flex;
    justify-content: end;
}

@media only screen and (max-width: 700px) {
    .botonesMP {
        justify-content:center;
        margin-top:15px;
    }
}

.rowpvMP {
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.card-oper {
    padding: 6px;
    margin-bottom: 11px;
    height: 56px;
    background-color: white;
    border: solid 1px rgb(206 212 218);
    border-radius: 4px;
}

.card-nom-ope {
    margin-top: 5px;
    font-weight: bold;
}

.card-nro-ope {
    text-align: center;
    margin-top: -7px;
    font-size: 15px;
    color: #0ca503;
    margin-right: 70px;
}

.input-ope {
    text-align: right;
    border: 0;
    font-weight: bold;
}

.span-quitar-ope {
    font-size: 25px;
    margin-left: 30%;
    cursor: pointer;
    color: #0060ed;
}

.span-quitar-cliente {
    color: white;
    margin-left: 0;
    position: absolute;
    right: 25px;
    font-size: 25px;
    margin-top: -2px;
    cursor:pointer;
}

.row-monedas {
    margin-bottom: 7px;
    display: flex;
    text-align: right;
}

.estilo-total {
    color: #0d6efd;
    text-align: right;
    font-weight: bold;
}

.estilo-saldo {
    color: #f0822b;
    text-align: right;
}

.btn-moneda {
    font-weight: bold;
    height: 37px;
    width: 80%;
    font-size: 16px;
    background-color: #c3bfbf !important;
    border: #c3bfbf;
    border-radius: 4px;
}

    .btn-moneda:hover {
        background-color: #a3a0a0 !important;
        border: #a3a0a0;
    }

@media only screen and (max-width: 850px) {
    .btn-moneda {
        font-size: 13px;
    }
}

/******* Estilos para la parte de Caja ********/
.contenedor-IE {
    margin-top: 10px;
    border: 1px solid #d3d2d2;
    border-radius: 10px;
    padding: 10px;
}

.nav-IE {
    justify-content: center;
    border-bottom: 0;
    margin-bottom: 7px;
    font-weight: bold;
}

.nav-IE-item {
    border: 1px solid #cbc8c8;
    border-radius: 5px;
}

.tag-caja-active {
    background-color: #f5f5f5 !important;
    color: #1b78bd !important;
    font-weight: bold;
    border-bottom: 2px solid #1b78bd !important;
}

/***** Historial de Ventas ******/
.card-contenedor {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.detalle-anulado {
    font-weight: bold;
    color: red;
    font-size: 14px;
    margin-top: 15px;
    padding-right: 4px;
}

.detalle-card-doc {
    position: initial;
    display: grid;
    text-align: center;
    border: 1px solid #0189fa;
    border-radius: 10px;
    font-weight: bold;
}

.title-formapago {
    font-size: 12px;
    font-weight: bold;
    background-color: #1b78bd;
    color: white;
    padding: 2px;
    padding-left: 7px;
}

.detalle-formapago {
    font-size: 12px;
    font-weight: bold;
    top: 5px;
    position: relative;
}

.col-totales {
    text-align: right;
    font-weight: bold;
    font-size: 12px
}

/****** Selección Multiple *******/
.col-title-cab {
    text-align: center;
    padding: 5px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
    background-color: var(--primario);
    color: white;
}

.col-grupokit {
    margin-bottom: 5px;
    font-size: 14px;
    background-color: #f27474f0;
    color: white;
    padding: 5px;
    font-weight:bold;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1), 0 -3px 0 rgba(0, 0, 0, 0.1) inset;
}

/****** Estilos para el listado de Ordenes ******/
.card-body-sel {
    padding: 10px;
    border-radius: 5px;
    box-shadow: 1px 1px silver;
}

    .card-body-sel:hover {
        background-color: #e3e3e3;
        cursor:pointer;
    }

/****** Estilos del DateTimePicker de Radzen ******/
.rz-calendar .rz-inputtext {
    height: 30px !important;
    max-width: 135px !important;
}

.rz-datepicker-trigger .rzi-calendar {
    font-size: 20px !important;
    position: initial !important;
}

.rz-spinner {
    display: inline-block !important;
    position: relative !important;
    padding: 0px !important;
    height: 30px !important;
}

.rz-event-content {
    cursor: pointer !important;
    background-color: #420b18 !important;
}

.rz-view-header {
    background-color: #ced1d0 !important;
    font-weight: bold !important;
}

.rz-colorpicker-value {
    display: none !important;
}

/****** Estilos para la carga de datos del POS ******/
.progress {
    background-color: white;
    height: 2rem;
    font-size: 1rem;
    border-radius: 0.75rem;
}

.contenedor-progress {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.texto-cargando {
    font-weight: bold;
    color: white;
    text-align: center;
}
.progress-bar {
    background-color: #F5A227 !important;
}
.fondocarga {
    height: 100%;
    background-color: #244f7c;
}

/******* Importar Productos ********/
/* ESTILO DEL DIV QUE CONTENTRÁ EL INPUT */
.upload-btn-wrapper {
    position: relative;
    display: inline-block;
}
    /* ESTILO DEL INPUT*/
    .upload-btn-wrapper input[type=file] {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
    }
/* ESTILO DEL BOTÓN */
.boton-standar-rw {
    background-color: white;
    color: rgb(62 169 245);
    border-radius: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 15px;
    border: 2px solid rgb(62 169 247);
    transition: all 0.3s ease 0s;
    padding: 8.5px;
    top: 1.2px;
    position: relative;
}
    /* ESTILO DEL BOTÓN CON HOVER DE MOUSE */
    .boton-standar-rw:hover {
        /*color: white;
        background-color: rgb(62 169 247);*/
    }

/***** Modal de Cuotas *****/
.footer-cuota {
    height: 35px;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    border-radius: 0 0 12px 12px !important;
    color: var(--secundario);
    margin-left: 1px;
    position: relative;
}

#spinner-container-modal {
    display: none; /* Oculta el spinner por defecto */
}

.spinner-style-container-modal {
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}

/**** Badges ****/

.badge-success {
    background-color: #2ca444 !important;
    color: white;
}

.badge-primary {
    background-color: var(--primario) !important;
    color: white;
}

.badge-secondary {
    background-color: #8f8f8f !important;
    color: white;
}

.badge-warning {
    background-color: #ffaa0f !important;
    color: white;
}

.badge-danger {
    background-color: #ed4040 !important;
    color: white;
}

.badge-info {
    background-color: #2ecded !important;
    color: white;
}

.badge-light {
    background-color: white !important;
    color: #555454;
    border: 1px solid #4b4949;
    padding: 4px 6px 2px 6px;
}

/***** ESTILOS PARA EL MONITOS DE COCINA *****/

.contenedor-cocina {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.card-comand-cocina {
    color: black;
    font-weight: bold;
    height: 300px;
    background-color: white;
    border: 1px solid #5f5c5c;
    border-radius: 20px;
    border-style: solid;
}

.cab-card-cocina {
    padding: 15px;
    height: 50px;
    color: black;
    font-size: 18px;
    position: relative;
    margin-left: -13px;
    margin-top: -1px;
    width: calc(100% - -26px);
    display: flex;
    border-radius: 20px 20px 0 0;
    justify-content: space-between;
}

.hora-card-cocina {
    margin-top:10px;
    margin-bottom: 7px;
    display: flex;
    justify-content: space-between;
}

.detproducto-card-cocina {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dbd7d7;
    cursor: pointer;
}

.title-card-cocina {
    display: flex;
    justify-content: space-between;
}

/***** Clases para items de modal ******/
.button-close {
    height: 35px;
    width: 35px;
    background-color: #E47C21;
}

.span-close {
    font-size: 37px;
    position: relative;
    top: -10px;
    color: white;
}

.modal-footer-new {
    padding: 10px;
    border-top: 1px solid #dee2e6
}

/***** Monitor de Alquiler *****/
.contenedor-alquiler {
    justify-content: center;
    gap: 30px;
}

.card-comand-alquiler {
    color: black;
    font-weight: bold;
    background-color: white;
    border-radius: 15px;
    box-shadow: 2px 3px 11px 0px #e5e1e1;
    padding: 0 10px 0 10px;
}

.seccion-left{
    align-items: center;
    display: flex;
    justify-content: center;
}

.seccion-right {
    align-items: center;
    display: grid;
    justify-content: center;
}

.title-card-alquiler {
    display: flex;
    justify-content: space-between;
}

.panel-alquiler {
    font-weight: bold;
    width: 100%;
    border: none;
    box-shadow: none;
    color: #172733 !important;
    background-color: #c1cad9;
}

    .panel-alquiler:hover {
        color: #172733 !important;
        background-color: #9fa9b9;
    }


.panel-alquiler-active {
    font-weight: bold;
    width: 100%;
    border: none;
    box-shadow: none;
    color: white !important;
    background-color: #476798;
}

    .panel-alquiler-active:hover {
        color: white !important;
        background-color: #2f558f;
    }

/***** Botones de Alquiler *****/

.btnAlqValidar {
    background-color: #fa6400;
    border: #fa6400;
    color: white;
    border-radius: 8px;
}

    .btnAlqValidar:hover {
        background-color: #d55703;
    }

.btnIniciar {
    background-color: #0078d0;
    border: 0;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
    font-weight: 600;
    outline: 0;
    padding: 10px 18px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

    .btnIniciar:before {
        background-color: initial;
        background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
        border-radius: 125px;
        content: "";
        height: 50%;
        left: 4%;
        opacity: .5;
        position: absolute;
        top: 0;
        transition: all .3s;
        width: 92%;
    }

    .btnIniciar:hover {
        box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
        transform: scale(1.05);
    }

@media (min-width: 850px) {
    .btnIniciar {
        /*padding: 16px 48px;*/
    }
}

.span-count-items {
    vertical-align: super;
    font-size: 11px;
    border-radius: 50%;
    height: 21px;
    width: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -4px;
    position: relative;
    top: -4px !important;
}

/***** Estilos para llegada de pedidos *****/
.panel-llegada {
    font-weight: bold;
    width: 100%;
    border: none;
    color: #172733 !important;
    background-color: #ffffff;
    box-shadow: 1px 1px 4px 0px #c7c6c6;
}

    .panel-llegada:hover {
        background-color: #1cc7570f;
    }


.panel-llegada-active {
    font-weight: bold;
    width: 100%;
    border: none;
    color: #172733 !important;
    border: 1px solid #1aab37;
    background-color: #1cc7570f;
}

    .panel-llegada-active:hover {
        /*background-color: #ffffff;*/
    }

.panelFiltroTotal {
    margin-left: 0;
    margin-right: 0;
    background-color: white;
    box-shadow: 0px 0px 2px #c5c5c5;
    border-radius: 10px 10px 0 0;
    padding: 9px 0 9px 0;
}

.col-total {
    color: #8d8d8d;
    text-align: right;
    font-weight: bold;
    padding-top: 5px;
}

.label-total {
    color: #024ab5;
    font-size: 20px
}

/***** Estilo para el check *****/
.custom-checkbox {
    display: none;
}

.custom-label {
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    user-select: none;
}

    .custom-label::before {
        content: "";
        position: absolute;
        left: 0;
        top: 1px;
        width: 16px;
        height: 16px;
        border: 2px solid #ccc;
        border-radius: 3px;
        background-color: white;
    }

.custom-checkbox:checked + .custom-label::before {
    background-color: #dc243e; /* color al estar checkeado */
    border-color: #dc243e;
}

.custom-checkbox:checked + .custom-label::after {
    content: "✔";
    position: absolute;
    left: 3px;
    top: -1px;
    color: white;
    font-size: 13px;
}

/***** Estilo para las notificaciones *****/
.notification-container {
    position: relative;
    display: inline-block;
}

.notification-icon {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.notification-modal {
    position: absolute;
    top: 45px;
    right: 310px;
    max-height: 0;
    max-width: 350px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.5s ease, max-height 0.4s ease;
}

.opacity {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px !important;
}

.modal-header-notif {
    background-color: var(--primario);
    color: white;
    padding: 12px;
    font-weight: bold;
}

.modal-content-notif {
    max-height: 250px;
    overflow-y: auto;
    padding: 12px;
}

.notification-item {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    align-items: center;
    font-size: 13px;
}

    .notification-item img {
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }

.modal-footer-notif {
    text-align: center;
    padding: 3px;
    background: #ffffff;
}

.hidden {
    display: none;
}

.notif {
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.5s ease, max-height 0.4s ease;
}

@keyframes pulse-zoom {
    0% {
        transform: scale(1) translate(0, 0);
    }

    25% {
        transform: scale(1.02) translate(-1px, -1px);
    }

    50% {
        transform: scale(1.04) translate(1px, 1px);
    }

    75% {
        transform: scale(1.02) translate(-1px, 1px);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

.shake {
    animation: pulse-zoom 0.8s infinite;
}

/***** Promociones *****/
.estilo-promocion {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background: #fdd500;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.span-promo {
    position: absolute;
    font-size: 11px;
    font-weight: bold;
    right: 3px;
    color: #4d4d4d;
    font-style: italic;
}

/*.corner-fold {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 25px;
    z-index: 10;
}

    .corner-fold::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 0;
        border-bottom: 22px solid rebeccapurple;*/ /* Color del fondo (cinta) */
        /*border-left: 22px solid transparent;
        z-index: 1;
    }

    .corner-fold::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 0;
        background-color: #f56a0c;
        border-bottom: 25px solid white;*/ /* Color de fondo del card */
        /*border-left: 25px solid transparent;
        transform: translate(3px, 3px);*/ /* Simula elevación */
        /*box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.2);*/ /* Simula sombra de doblez */
        /*z-index: 2;
    }*/

/*** MODAL PARA VENTAS CONGELADAS ***/
.card-venta-congelada {
    font-weight: bold;
    font-size: 20px;
    background-color: #dbdbdb;
    padding: 7px 20px 7px 20px;
    border-radius: 7px;
    cursor: pointer;
    text-align: center;
}

    .card-venta-congelada:hover {
        background-color: #bbb9b9;
    }

/***** BOTON SWITCH PARA VISTA DE PRODUCTOS *****/
.view-switch {
    display: inline-flex;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #adadad;
    margin-left: 7px;
}

.vs-btn {
    width: 50px;
    height: 32px;
    background: #f4f4f4;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

    .vs-btn:hover {
        background: #e8e8e8;
    }

    /* 🔵 Botón activo */
    .vs-btn.active {
        background: #cbe6ff;
        color: #004a7f;
    }