﻿/* Submenús dentro de dropdowns */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -0.1rem;
        margin-left: 0.1rem;
        display: none;
        position: absolute;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

/*ENTORNO DE COLORES PARA SHEKAPAN*/
/*INPUT*/
/* Cambiar color de fondo y borde de todos los inputs */

input.form-control { /* Nuevos cambios */
    padding: 10px;
    border-radius: 8px !important;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.3s;
    height: 3rem;
}

.input-group #Clientes {
    margin-top: 11px !important;
}

/* Opcional: cambiar el color al hacer focus */
input.form-control:focus { /* Nuevos cambios */
    border-color: #e62331;
    box-shadow: 0 0 5px rgba(230,35,49,.5);
}

/* Nuevos selectores de clase */
/* Cambio de los bordes y agregación de sombras a los contenedores de elementos */
.container, .modal-content { /* Nuevo selector */
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .container h2 { /* Nuevo selector */
        margin-bottom: 20px;
        color: #e62331;
        font-size: 2.3rem;
    }

/* Estilos nuevos para los textos label */
.form-label { /* Nuevo selector */
    font-weight: bold;
    margin-bottom: 5px;
    color: #754c28;
}

/* Cambio de colores para los inputs que solo muestran los datos */
.form-control[disabled] { /* Nuevo selector */
    background-color: #f2e31c33;
    border: 1px solid #c2986b;
    cursor: not-allowed;
    color: #333;
    font-weight: 500;
}

.form-control[readonly] { /* Nuevo selector */
    background-color: #f2e31c33;
    border: 1px solid #c2986b;
    cursor: not-allowed;
    color: #333;
    font-weight: 500;
}

/* Cambio de forma y colores a los botones */
.btn { /* Nuevo selector */
    background: #e62331;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 15px !important;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin: 12px;
    outline: none !important;
    box-shadow: none !important;
}

    .btn:hover, .btn:focus { /* Nuevo selector */
        background: #c91e2b;
        color: #fff;
    }

/* Cambios de colores para le etiqueta select */
select.form-control:focus { /* Nuevo selector */
    border-color: #e62331;
    box-shadow: 0 0 5px rgba(230,35,49,.5);
}

/*TABLAS*/
.text-secondary, h5[class="modal-title"] { /* Nuevo selector */
    margin-bottom: 15px;
    color: #754c28 !important;
    font-size: 1.8rem;
}

table { /* Nuevo selector */
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 10px;
}

thead th { /* Nuevo Selector */
    background: #e62331 !important;
    color: white !important;
}

td[class="text-center fw-bold"] { /* Nuevo selector */
    background: white;
}

tfoot tr[class="table-info fw-bold"] td { /* Nuevo selector */
    background: #e62331 !important;
    color: white !important;
}

    tfoot tr[class="table-info fw-bold"] td input { /* Nuevo selector */
        background: white !important;
    }

textarea:focus { /* Nuevo selector */
    border-color: #e62331 !important;
    box-shadow: 0 0 5px rgba(230,35,49,0.5) !important;
}

/* Cabecera de la tabla */
#tablaDetalles thead {
    background-color: #996633;
    color: white; /* color del texto */
}

/* Filas del cuerpo */
#tablaDetalles tbody tr:nth-child(even) {
    background-color: #f2f2f2; /* gris claro para filas pares */
}

#tablaDetalles tbody tr:nth-child(odd) {
    background-color: #ffffff; /* blanco para filas impares */
}

/* Hover sobre filas */
#tablaDetalles tbody tr:hover {
    background-color: #c8e6c9; /* verde claro al pasar el mouse */
}

/* Bordes y alineación de las celdas */
#tablaDetalles th, #tablaDetalles td, .table th, .table td {
    border: 1px solid #996633;
    text-align: center;
    padding: 8px;
}

.table th, .table td {
    text-align: left;
}

.table tbody tr:hover {
    background-color: #f2e31c33;
}

/*========= CAMBIOS PARA EL BOTÓN "ENVIAR PEDIDO" Y FORMULARIO "INGRESAR DATOS DEL CLIENTE" =========*/
button[class="btn btn-primary btn-sm"] { /*Nuevo selector*/
    background-color: #e62331 !important;
    border-color: #e62331 !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}

    button[class="btn btn-primary btn-sm"]:hover, button[class="btn btn-primary btn-sm"]:active { /*Nuevo selector*/
        background: #c91e2b !important;
    }

.btn-info:hover {
    color: #fff !important;
}

.input-group > button {
    margin-left: 12px !important;
    border-radius: 15px;
}

#btnBuscarNIT {
    background-color: #e62331;
    border-radius: 12px;
    color: #fff;
}

    #btnBuscarNIT:hover {
        background-color: #c91e2b !important;
    }

#btnIngresoCF:focus {
    background-color: #c91e2b !important;
    color: #fff;
}

#NITCliente {
    margin-top: 12px;
    height: 3rem;
    border-radius: 13px;
}

div[class="mb-3 p-3 rounded shadow-sm border bg-light"] {
    background-color: #f2e31c33 !important;
    border: 24px !important;
}

#btnEnviar {
    background-color: #e62331;
}

    #btnEnviar:hover {
        background-color: #c91e2b !important;
    }

div[class="row"] {
    margin: 12px auto;
}

.odd:hover, .even:hover {
    background-color: #f2e31c33 !important;
}

footer.footer {
    border-top: none !important;
}

footer .container {
    border-radius: 0px 0px 12px 12px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,.10);
}

/*========= CAMBIOS PARA TABLA DE PRODUCTOS =========*/
h3[class="border-bottom pb-2 text-secondary"], ul[class="nav nav-tabs mb-3"] {
    border-bottom: 1px solid #e62331 !important;
}

button[class="nav-link active"] {
    border-color: #e62331 !important;
    border-bottom: none !important;
    background: #f2e31c33 !important;
    color: #754c28 !important;
    font-weight: 600;
}

button[class="nav-link"], button[aria-selected="false"] {
    color: #754c28 !important;
    font-weight: 400;
}

    button[class="nav-link"]:hover, button[aria-selected="false"]:hover {
        border-color: #e62331 !important;
        box-shadow: 0 0 5px rgba(230,35,49,.5);
        border-bottom: none;
    }

/*CARDS*/
.card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    }

    .card img {
        background-color: #fff !important;
        border: 2px solid #f2e31c;
        border-radius: 13px;
    }

.card-title {
    font-size: 1.1rem !important;
    font-weight: bold !important;
    color: #e62331 !important;
    margin-bottom: 10px;
}

/*========= CAMBIOS PARA EL MODULO DE RIFA =========*/
h3[class="text-center mb-4"] {
    margin-bottom: 20px;
    color: #e62331;
    font-size: 1.8rem;
}

#btnParticipar {
    background-color: #e62331 !important;
}

/*========= CAMBIOS EN EL TABLERO DE UBICACIONES =========*/
h4[class="card-title"], p[class="card-title"] {
    color: #f2e31c !important;
}

/*========= CAMBIO EN LOS INPUTS Y LOS BOTONES DE PAGINACIÓN =========*/
/* Mover todo el bloque a la derecha */
.dataTables_filter {
    text-align: right !important;
    font-weight: 600;
}
    /* Texto arriba, input abajo, pero alineados a la izquierda */
    .dataTables_filter label {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px;
    }

#tablaDetalles_filter {
    width: 18rem !important;
    margin-left: auto; /* mantiene el bloque alineado a la derecha */
}

.dataTables_paginate {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 10px; /* opcional */
}

/* BOTONES DE PAGINACIÓN */
.page-link {
    border-color: #c2986b;
    color: #E62331;
}

/* ESQUINA REDONDEADA PARA EL BOTÓN "Anterior" (lado izquierdo) */
#tablaDetalles_previous .page-link {
    border-radius: 12px 0 0 12px !important;
}

/* ESQUINA REDONDEADA PARA EL BOTÓN "Siguiente" (lado derecho) */
#tablaDetalles_next .page-link {
    border-radius: 0 12px 12px 0 !important;
}

    #tablaDetalles_previous .page-link:focus, #tablaDetalles_next .page-link:focus {
        color: #754C28;
        box-shadow: none;
        background-color: #f2e31c33;
    }

.dataTables_paginate .pagination .page-item.disabled .page-link {
    border-color: #c2986b;
    color: #C2986B55; /* café oscuro, apagado */
}

.dataTables_paginate .pagination .page-item .page-link:hover {
    background-color: #f2e31c33;
    color: #754C28; /* café oscuro */
    border-color: #c2986b;
}

/* ACTIVO (página seleccionada) */
.dataTables_paginate .pagination .page-item.active .page-link {
    background-color: #E62331; /* rojo */
    color: #fff;
    box-shadow: 0 0 6px #E62331AA; /* shadow rojo */
    border: none;
}

/*======== CAMBIOS PARA DIMENSIONES DE CELULAR ====== */
/* Ajustar las columnas a la par cuando sea menor a 770px */
@media (max-width: 770px) {
    .row > .col-sm-12.col-md-6 {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }

    /* Necesario para que no se desborde el input */
    #tablaDetalles_filter input[type="search"] {
        width: 100% !important; /* se ajusta al contenedor */
        max-width: 12rem !important; /* pero nunca excede 20rem */
        box-sizing: border-box; /* evita overflow por padding */
    }
}

.input-group .btn-info {
    flex: 0 0 auto !important; /* Evita que el botón se expanda */
    width: auto !important; /* El botón toma su ancho natural */
    padding-left: 20px;
    padding-right: 20px;
}



/* Contenedor general centrado */
.tombola-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* MARCO EXTERIOR DE LA TÓMBOLA */
.tombola-container #NumeroGanador {
    background: #E62331; /* Rojo intenso */
    border: 6px dashed #F2E31C; /* Amarillo */
    padding: 20px 25px;
    border-radius: 25px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    margin-top: 50px;
    margin-bottom: 25px;
    height: 15rem;
}

/* CADA DIGITO COMO EN LA IMAGEN */
.tombola-container #NumeroGanador span {
    background: #FFF; /* Blanco */
    color: #000; /* Negro para contraste */
    font-size: 70px;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    padding: 15px 22px;
    border-radius: 20px;
    border: 4px solid #C2986B; /* Café suave */
    box-shadow: 0 4px 0 #754C28; /* Sombra café oscuro */
    min-width: 70px;
    text-align: center;
    display: inline-block;
}

/* ANIMACIÓN DE MOVIMIENTO “TÓMBOLA” */
.tombola-container #NumeroGanador.animando span {
    animation: giroDigito 0.15s linear infinite;
}

@keyframes giroDigito {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

.tombola-container {
    position: relative;
    padding-top: 120px; /* Espacio para el logo */
}

/* Espacio superior para que el logo pueda sobresalir */
.tombola-container {
    position: relative;
    padding-top: 80px; /* Puedes ajustar según tamaño del logo */
}

/* LOGO SUPERPUESTO */
.tombola-container::before {
    content: "";
    position: absolute;
    top: -45px; /* Parte superior afuera */
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 250px;
    width: 350px; /* ⬅ Ajusta tamaño del logo */
    height: 160px;
    background-image: url('https://shekapan.com.gt/Complementos/img/shekapan.png'); /* Coloca tu logo real */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10; /* Para que se muestre arriba */
}

.tombola-container .input-palabra {
    width: 100%;
    background: #FFFFFF; /* Fondo blanco limpio */
    border: 2px solid #C2986B; /* Café claro */
    color: #000000 !important; /* Texto negro */
    padding: 12px 15px;
    border-radius: 10px; /* Bordes suaves */
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all .25s ease;
}

input[name="NombreGanador"] {
    font-weight: 700 !important;
    font-size: 2.6rem !important;
    height: 60px !important;
}

/* AL HACER FOCUS (cuando escriben en el input) */
.tombola-container .input-palabra:focus {
    border-color: #E62331; /* Rojo corporativo */
    box-shadow: 0 0 8px rgba(230, 35, 49, 0.5);
    outline: none;
}

/* INPUT DESHABILITADO (Nombre del ganador) */
.tombola-container .input-palabra:disabled {
    background: #F2E31C33; /* Amarillo suave translúcido */
    border-color: #754C28; /* Café oscuro */
    color: #754C28; /* Texto café */
    font-weight: bold;
}

.container .title-sorteo {
    font-size: 5rem !important;
    font-weight: 800;
    text-align: center;
}

/* CONFETI A PANTALLA COMPLETA CUANDO HAY GANADOR */
.tombola-container #NumeroGanador.ganador::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Toda la pantalla */
    height: 100vh; /* Toda la pantalla */
    background-image: url('https://video-public.canva.com/VADhwTpAAI4/v/14cc84bfdd.gif'); /* GIF de confeti */
    background-size: cover; /* Que cubra todo */
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none; /* No bloquea clics */
    z-index: 9999; /* Arriba de todo */
    animation: fadeConfeti 1s ease-out;
}

/* Animación suave para aparecer */
@keyframes fadeConfeti {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Botón del primer formulario (Elegir Número) */
#formTercer > button[type="submit"] {
    display: inline-block;
}

/* El segundo form solo lo usamos como “portador” del botón */
form[action="/PromocionesEventos/GuardarGanadorPromocion"] {
    display: inline-block;
}

    /* Botón Guardar Ganador: lo movemos a la par del primero */
form[action="/PromocionesEventos/GuardarGanadorPromocion"] > button[type="submit"] {
    display: inline-block;
    margin-left: 182%; /* separación horizontal respecto al primero */
    margin-top: -88px; /* súbelo hasta que quede en la misma línea */
}

.btn-primary {
    margin-left: 21%;
}

.btn-success, .btn-primary {
    width: 20rem;
}

.mt-2 {
    margin-top: 0 !important;
}

/* --- TAB ACTIVO --- */
.nav-tabs .nav-link.active {
    border-color: #e62331 !important; /*Rojo */
    border-bottom: none !important;
    background: #f2e31c33 !important; /*Amarillo suave translúcido */
    color: #754c28 !important; /*Café oscuro */
    font-weight: 600;
}

/* --- TABS INACTIVOS --- */
.nav-tabs .nav-link {
    color: #754c28 !important;
    font-weight: 400;
}

/* --- TABS INACTIVOS - HOVER --- */
.nav-tabs .nav-link:hover {
    border-color: #e62331 !important;
    box-shadow: 0 0 5px rgba(230,35,49,.5);
    border-bottom: none !important;
    color: #754c28 !important;
}

.border {
    border: 1px solid #e62331 !important;
}

.nav-tabs {
    border-bottom: none;
}

#tablaDetallesSoloTabla_length {
    display: none;
}

.btn-crear {
    margin-left: 0px !important;
}

/* CONFIGURACIÓN DE DISEÑO PARA PUNTO DE VENTA */
.pos-container {
    height: calc(100vh - 100px);
}

.pos-table thead th {
    background-color: #f1f3f5;
    font-weight: 600;
    border-bottom: 1px solid #dee2e6;
}

.pos-table tbody tr {
    cursor: pointer;
}

.pos-table input {
    border: none;
    background: transparent;
    padding: 2px 4px;
}

.pos-table input:focus {
    border: 1px solid #c2986b;
    background: #fff;
}

.pos-table tbody tr:hover {
    background-color: #f8f9fa;
}

.total-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #dc3545;
}

.total-card {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    margin-top: 15px;
}

.pos-table td {
    padding: 2px 4px; /* reduce altura de la fila */
    vertical-align: middle;
}

.pos-table input.form-control {
    height: 26px; /* clave */
    padding: 2px 6px;
    font-size: 0.85rem;
    line-height: 1.2;
}

/* Dimensiones para el contenedor del punto de venta */
@media screen and (min-width:576px), screen and (min-width: 1400px) {
    .container-punto-venta {
        max-width: 98% !important;
    }
}

/* Panel de métodos de pago */
/* Asegura que el contenedor de los botones no tenga espacios raros a los lados */
.cont-lista-product {
    max-height: 65vh;
    overflow-y: auto;
}

.container-botones-pago {
    margin: 0 !important;
    width: 100% !important;
}

/* Forzamos a que todos los botones de la rejilla tengan la misma altura */
.container-botones-pago .col-6 {
    display: flex;
    padding-right: 0px !important;
}

/* Estilizamos los botones sin quitarles sus clases de Bootstrap */
.container-botones-pago .btn {
    flex: 1; /* Hace que todos ocupen el mismo alto que el vecino */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    padding: 15px 5px !important;
    min-height: 120px;
}

/* Ajustamos los iconos para que también sean responsivos */
.container-botones-pago .btn i {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem) !important;
    margin-bottom: 5px;
}

/* Ajustamos el label para que no herede márgenes extra */
.container-botones-pago .btn label {
    margin-bottom: 0 !important;
    cursor: pointer;
    font-weight: 600;
}

/* Estilo responsivo para el cuadro del total */
.total-card .total-amount {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #dc3545;
}

.tabla-detalle .btn, .container-botones-pago .btn {
    margin: 1px !important;
}

.cont-cantidad-pago {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    gap: 4px;
    padding: 5px 0 !important;
}

/* Texto "TOTAL A PAGAR" */
.cont-cantidad-pago .texto-pagar:first-child {
    line-height: 1.1;
    width: 100%;
}

.texto-pagar {
    font-weight: 500 !important;
    font-size: 14px !important;
    text-transform: uppercase;
}

/* Monto */
.cont-cantidad-pago .total-amount {
    font-weight: 700;
    font-size: 3rem;
}

@media(min-width: 767px) and (max-width: 991.98px) {
    .cont-cantidad-pago .texto-pagar:first-child {
        font-size: .8rem !important;
    }

    .cont-cantidad-pago .total-amount {
        font-size: 1.2rem;
    }
}

/* Estilo para referencia/observaciones */
.container-reference {
    margin-bottom: 0px !important;
}

.cont-referencia-observaciones {
    margin-bottom: 12px !important;
}

/* ESTILOS PARA LA TABLA */
.tabla-detalle th, .tabla-detalle td {
    border: .02px solid #996633;
}

/* Diseño de cuadro de autocompletación */
.autocomplete-list {
    border-radius: 15px;
    max-height: 40vh;
    overflow-y: auto;
    box-sizing: border-box;
    background-color: #fff;
}

@media screen and (max-width:768px), screen and (max-width: 1000px) {
    .autocomplete-list {
        box-sizing: border-box;
        min-width: 35%;
    }
}

.autocomplete-item {
    padding: 1px 8px;
    border-radius: 15px;
    border: 1px solid #c2986b;
    margin: 1px 0;
    cursor: pointer;
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.autocomplete-item strong {
    font-weight: 600;
    font-size: 1.05rem;
}

.autocomplete-item small {
    text-align: center;
    font-size: 1rem;
}

.autocomplete-item:hover {
    background-color: #f2e31c33;
}

.fila-seleccionada input {
    background: #ffe8e8 !important;
    border-color: #e62331;
}

/* Diseño para los sugerencias */
.autocomplete-item{
    padding:8px;
    cursor:pointer;
}

.autocomplete-item:hover{
    background:#f2e31c15;
}

.autocomplete-activo {
    background: #f2e31c33;
    color: #000;
}

/* Diseño del botón eliminar */
.btn-eliminar-fila {
    padding: 0 !important;
    width: 34px;
    height: 34px;
}

/* Estilo para los modales */
.btn-modal {
    display: flex;
    justify-content: flex-end; /* Los alinea a la derecha */
    align-items: center;
    gap: 15px; /* Espacio entre botones */
    flex-wrap: nowrap; /* Evita que se bajen */
}

/* Estilos para los botones de los modales */
#btnConfirmar {
    border-color: #e62331 !important;
    box-shadow: 0 0 5px rgba(230,35,49,.5) !important;
}

/* Diseño al botón confirmar realizando proceso */
.btn-venta-completada {
    background: #f2e31c33 !important;
    color: #000 !important;
    transition: all .3s ease-in-out;
}

.bloqueado,
.bloqueado:disabled,
.bloqueado:hover,
.bloqueado:disabled:hover {
    cursor: not-allowed !important;
    pointer-events: auto !important;
}

/* ====== CUADRO DE BIENVENIDA Y INFORMACIÓN ====== */
/* CARD PRINCIPAL */
.panel-sistema {
    background: #fff;
    border: 1px solid #eee;
}

/* TABS */
.custom-tabs .nav-link {
    border: none;
    font-weight: 600;
    color: #754C28;
    padding: 12px 20px;
}

.custom-tabs .nav-link.active {
    border-top: 4px solid #E62331;
    background: #fff;
    color: #000;
}

@media screen and (min-width:576px), screen and (min-width:1400px) {
    .container-inicio-interno {
        max-width: 98% !important;
    }
}

/* Contenedor de mensaje de bienvenida */

.welcome-container {
    text-align: center;
    padding: 40px;
}

.titulo-sistema {
    font-size: 32px;
    font-weight: 800;
}

.usuario-texto {
    margin-top: 15px;
}

.empresa-texto {
    color: #e53935;
    font-weight: bold;
}

.dispositivo-badge {
    background: #ffd600;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

/* PANEL INFORMACIÓN */
.info-panel {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 25px;
    border-left: 6px solid #E62331;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item span {
    color: #754C28;
}

.info-item strong {
    color: #000;
}

.button-confirmar:focus {
    border-color: #e62331 !important;
    box-shadow: 0 0 6px 2px rgba(230,35,49,.5) !important;
}

/* Modificaciones semana santa */
@media (max-width: 571px){
    .contenedor-tabla-pedidos {
        width: 100%;
        margin: 0 auto;
    }

    .contenedor-tabla-pedidos {
        overflow-x: auto;
    }

    #tablaDetallesSimplificado {
        min-width: 420px;
    }
}

@media (min-width: 572px) {
    .contenedor-tabla {
        overflow-x: visible;
    }
}

@media (max-width: 990px) {
    body > .container {
        background: transparent;
        padding: 5px;
        border-radius: 0;
        box-shadow: none;
    }

    .container-mobile button[class="btn btn-primary btn-sm"] {
        padding: 5px !important;
    }

    .container-mobile .container {
        padding: 15px !important;
    }

    .container-mobile div[class="row"] {
        margin: 0px !important;
    }

    .container-mobile .row > * {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .container {
        margin-top: 0 !important;
    }

    .row > .col-md-3.mb-3:last-of-type {
        margin-bottom: 2rem !important;
    }

    @media (min-width: 768px) {
        .container {
            max-width: 98% !important;
        }
    }

    @media (min-width: 576px) {
        .container {
            max-width: 98% !important;
        }
    }
}