        body {
            /* Fuente actualizada a Quicksand */
            font-family: 'Quicksand', sans-serif;
            padding-top: 72px; /* Espacio para el navbar más grande */
            background-color: #f5f5f5; /* Fondo muy claro */
            color: #333;
        }

        /* --- NUEVO: Estilo para aplicar el desenfoque al fondo --- */
        .blur-active {
            /* Aplicamos el filtro blur al contenido principal (no al modal) */
            filter: blur(6px);
            /* Transición suave para el efecto visual */
            transition: filter 0.3s ease-out;
            /* Evita que se pueda interactuar con el contenido borroso */
            pointer-events: none; 
        }
        /* --- FIN NUEVO ESTILO --- */


        /* 1. Estilo para el navbar: Limpio y Minimalista */
        .navbar-custom {
            /* Nuevo color de fondo */
            background-color: #9899fa; 
            border-bottom: 1px solid #7a7bc9; /* Borde sutil más oscuro */
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05); /* Sombra muy suave */
            padding-top: 1rem;
            padding-bottom: 1rem;
            /* La transición se añade aquí para que el navbar también se desenfoque suavemente */
            transition: filter 0.3s ease-out; 
        }

        /* 2. Estilo para el texto y enlaces: Cambiamos a blanco */
        .navbar-custom .navbar-brand {
            color: #ffffff !important; /* Blanco para la marca */
            font-weight: 700;
            font-size: 1.5rem;
        }

        /* Aplicar transición de borde a los enlaces principales */
        .navbar-custom .nav-link,
        .navbar-custom .dropdown-toggle {
            color: #ffffff !important; /* Blanco para enlaces normales */
            font-weight: 500; /* Peso normal */
            font-size: 1.05rem;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease, background-color 0.3s ease, border-bottom 0.3s ease, font-weight 0.3s ease;
            border-radius: 0.3rem;
            border-bottom: 2px solid transparent; 
        }

        /* 3. Estilo del Caret del Dropdown: Ahora en blanco para contrastar */
        .navbar-custom .dropdown-toggle::after {
            content: "";
            display: inline-block;
            margin-left: 0.5rem;
            vertical-align: middle;
            
            /* Flecha custom con CSS en color blanco */
            border: none;
            width: 8px; 
            height: 8px;
            border-right: 1.5px solid #ffffff; /* Lado derecho */
            border-bottom: 1.5px solid #ffffff; /* Lado inferior */
            
            /* Inicia apuntando hacia abajo (rotated 45deg) */
            transform: translateY(-20%) rotate(45deg); 
            transition: transform 0.3s ease; /* Transición de rotación suave */
        }

        /* Rotar la flecha cuando el Dropdown está abierto. */
        /* FIX CLAVE: Apuntamos al atributo aria-expanded="true" en el enlace, lo que Bootstrap actualiza de forma fiable. */
        .navbar-custom .dropdown-toggle[aria-expanded="true"]::after {
            /* Gira 180 grados más, terminando en 225deg, apuntando hacia arriba */
            transform: translateY(-20%) rotate(225deg);
        }
        
        /* 4. Efecto Moderno al pasar el ratón (Borde Inferior para Desktop) */
        @media (min-width: 992px) {
            .navbar-custom .nav-link:hover,
            .navbar-custom .dropdown-toggle:hover {
                color: #ffffff !important; /* BLANCO PURO para el hover */
                background-color: transparent; 
                border-bottom: 2px solid #ffffff; /* Borde inferior blanco */
                font-weight: 700; /* MAYOR GROSOR al hacer hover */
            }
        }
        
        /* En móvil, mantenemos el fondo sutil para mejor toque */
        @media (max-width: 991.98px) {
             .navbar-custom .nav-link:hover,
             .navbar-custom .dropdown-toggle:hover {
                background-color: #8889db; /* Tono de hover ligeramente más oscuro en móvil */
                font-weight: 700; /* También aplicamos el grosor en móvil */
             }
        }


        /* 5. Estilo para el Toggler (Botón Hamburguesa): Barras en blanco */
        .navbar-toggler.custom-toggler {
            width: 38px;
            height: 38px;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 1px solid #ffffff; /* Borde blanco */
            border-radius: 0.3rem;
        }

        .navbar-toggler.custom-toggler:focus {
            box-shadow: none; 
        }
        
        .navbar-toggler .bar {
            display: block;
            width: 70%;
            height: 2px;
            margin: 3px 0; 
            background-color: #ffffff; /* Barras blancas */
            transition: all 0.3s ease-in-out; 
            border-radius: 1px;
        }
        
        .navbar-toggler:not(.collapsed) .top-bar {
            transform: translateY(8px) rotate(45deg); 
        }

        .navbar-toggler:not(.collapsed) .middle-bar {
            opacity: 0; 
        }

        .navbar-toggler:not(.collapsed) .bottom-bar {
            transform: translateY(-8px) rotate(-45deg); 
        }
        
        /* 6. Estilo para los Submenús (Dropdowns): Se mantienen en blanco para contraste */
        .navbar-custom .dropdown-menu {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 0.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .navbar-custom .dropdown-item {
            color: #333333;
            padding: 0.75rem 1rem;
            border-left: 3px solid transparent; 
            transition: background-color 0.2s, color 0.2s, border-left 0.2s;
        }
        
        .navbar-custom .dropdown-item:hover {
            background-color: #e9ecef; 
            color: #9899fa; /* Color primario del navbar */
            border-left: 3px solid #9899fa; 
            font-weight: 800;
        }

        /* 7. Adaptación para móvil (dentro del menú colapsado) */
        @media (max-width: 991.98px) {
            .navbar-custom .dropdown-menu {
                margin-top: 0.5rem;
                padding-left: 1rem; 
                background-color: #8889db; /* Fondo del submenú adaptado al color primario */
                border: none;
                box-shadow: none;
            }
             .navbar-custom .dropdown-menu .dropdown-item {
                color: #ffffff; /* Elementos del submenú en blanco en móvil */
             }
             .navbar-custom .dropdown-menu .dropdown-item:hover {
                background-color: #7a7bc9; 
                border-left: 3px solid #ffffff; 
             }
        }
        
        /* 8. Estilo moderno para las tarjetas de contenido */
        /* Transición añadida para el blur */
        .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 0.75rem;
            border: none;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        /* Transición para el contenedor principal, necesario para el efecto blur */
        #mainContent {
            transition: filter 0.3s ease-out;
        }

/* Estilos para la barra de scroll vertical */
::-webkit-scrollbar {
    width: 10px; /* Ancho del scrollbar vertical */
    height: 10px; /* Alto del scrollbar horizontal */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color del track */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #7a7bc9; /* Color del thumb (la parte que se mueve) */
    border-radius: 10px;
    border: 3px solid #f1f1f1; /* Borde igual al track */
}

::-webkit-scrollbar-thumb:hover {
    background: #7a7bc9; /* Color al pasar el mouse */
}

/* Para scrollbar horizontal */
::-webkit-scrollbar-horizontal {
    height: 8px;
}        

    .google-btn {
        background-color: white;
        /* Fondo blanco para un look minimalista */
        color: #5f6368;
        /* Color de texto gris oscuro de Google */
        border: 1px solid #dadce0;
        /* Borde gris claro para definirlo */
        padding: 10px 20px;
        border-radius: 6px;
        /* Bordes ligeramente redondeados */
        font-size: 1.1em;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        /* Transición suave para todos los cambios */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        /* Sombra muy sutil */
    }

    .google-btn:hover {
        background-color: #f8f8f8;
        /* Fondo ligeramente gris al pasar el ratón */
        color: #202124;
        /* Texto un poco más oscuro */
        border-color: #c6c6c6;
        /* Borde un poco más oscuro */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        /* Sombra un poco más pronunciada */
        transform: translateY(-1px);
        /* Pequeño efecto de elevación */
    }

    .google-btn .fab.fa-google {
        font-size: 1.2em;
        /* Tamaño del icono */
        color: #4285F4;
        /* Color azul de Google para el icono */
    }

table,
td,
th {
  font-family: "Quicksand", sans-serif;
  color: #464646 !important;
}
td,
th {
  vertical-align: middle !important;
  font-size: 0.87rem !important;
}
table {
  font-size: 0.93rem;
}
table {
  font-size: 0.93rem;
}
  .table-xxs th{ 
    font-size: 0.55rem !important; /* Tamaño personalizado */
  }
.td-textarea {
  outline: none;
  border-radius: 4px;
  border: 1px solid #c1c1c1;
  padding: 2px;
  margin-top: -3px;
  width: auto;
}  
.td-numero-precio {
  text-align: right;
  outline: none;
  border-radius: 4px;
  border: 1px solid #c1c1c1;
  padding: 3px;
  margin-top: -3px;
  width: 100px;
}
.td-numero-cant {
  text-align: right;
  outline: none;
  border-radius: 4px;
  border: 1px solid #c1c1c1;
  padding: 3px;
  margin-top: -3px;
  width: 80px;
}
.td-numero:focus {
  border: 1px dotted #b9b9b9;
}
.td-input {
  width: 70px;
}
.td-cant {
  text-align: right;
  outline: none;
  border-radius: 4px;
  border: 1px solid #c1c1c1;
  padding: 3px;
  margin-top: -3px;
  width: 100px;
  font-size: 0.8rem;
}
.td-cant:focus{
  border-color: #797bff;
  outline: 0;
  box-shadow: 0 0 0.25rem 0.05rem rgba(105, 108, 255, 0.1);
}
.td-right {
  text-align: right !important;
}
.td-center {
  text-align: center !important;
}
.tfoot {
  border: transparent;
  outline: none;
  font-size: 16px !important;
  line-height: 70%;
}
.fs-tfoot{
  font-size: 0.85rem !important;
}
.footer_print {
  line-height: 10pt;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  font-size: 8pt;
  text-align: center;
}
.footer_print > span {
  display: inline-block;
  vertical-align: middle;
  line-height: 16pt;
  font-size: 14pt;
}
.text-may {
  text-transform: uppercase;
}
.text-min {
  text-transform: lowercase;
}
.h1-caja{
  font-size: 44pt;
  font-family: 'Luckiest Guy', cursive;
  color: #969696;
}
.h1-precio{
  font-size: 44pt;
  font-family: 'Luckiest Guy', cursive;
}
.hr-double {
  border-top: 3px double #8c8b8b;
}
.tbl-input:focus {
  border-color: #838383;
}
.bi-arrow-repeat {
  top: 2px !important;
  animation-name: spin-gear;
  animation-duration: 3500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  display: inline-block;
}
.bi-gear-fill {
  top: 2px !important;
  animation-name: spin-gear;
  animation-duration: 3500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  display: inline-block;
}
@keyframes spin-gear {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
.mylogo {
  width: 25px;
  height: 25px;
  object-fit: cover;
  border-radius: 2%;
}
.miEmpresa{
  width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;      
}
.empresa{
  margin-top: 0.65em;
}
.x-small-line{
  font-size: 0.65rem;
}
.line-c{
  line-height: 65%;
}
.fs-small {
  font-size: 0.78em !important;
  text-align: center;
  line-height: 95%;
  color: #000000 !important;
  font-weight: 500;
}
.fs-10 {
  font-size: 10pt !important;
  color: #585858 !important;
}
.fs-x-small {
  font-size: 9pt !important;
  color: #585858 !important;
}
.fs-small-x {
  font-size: 9pt !important;
}
.tbl-fs-6 td,th{
  font-size: 0.8rem !important;
  color: #585858 !important;
}
.fs-iv{
  font-size: 0.88rem !important;
  color: #353535 !important;
}
.topUp {
  position: relative;
  top: -12px;
  left: 0;
}
.question{
  position: relative;
  font-size: 0.95rem;
  top: -12px;
  color: #696cff;
  cursor:help;
}
.sp-ri{
  position: relative;
  top: -7px;
  float: right;
  font-size: 1.7em;
  font-family: 'Luckiest Guy', cursive;
  color: #616161;
}
.row-m {
  margin-left: 10px;
  margin-right: 10px;
}
.fs-m {
  margin-left: -4%;
  margin-top: 14px;
}
.hidden-overflow {
  overflow: hidden !important;
}
.sesion {
  text-decoration: none;
  font-size: 18px;
  color: #474747;
}
.sesion:hover {
  width: 220px;
  background-color: #474747;
  color: #ffffff;
  padding: 8px;
  margin-top: -10px;
  border-radius: 8px;
}
.text-chk {
  color: #025029;
}
.der-icon-bx {
  position: absolute;
  top: 0.12rem;
  right: 5px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #4b4b4b;
  cursor: pointer;
  padding: 5px;
}
.der-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #4b4b4b;
  cursor: pointer;
  padding: 5px;
}
.eye-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #4b4b4b;
  cursor: pointer;
  padding: 5px;
}
.bi-percent {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 15px;
  color: #474747;
  cursor: pointer;
  padding: 5px;
}
.icon-simbol {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-size: 15px;
  color: #a09e9e;
  cursor: pointer;
  padding: 5px;
}
.number-icon-simbol {
  padding-right: 44px !important;
}
.number-icon {
  padding-right: 35px !important;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blinking {
  color: #004b97;
  animation: blink 1s infinite;
}
.ba-hov:hover{
  transform: translateX(-0.1rem);
}
.be-hov:hover{
  transform: translateY(-0.1rem);
}

.dropzone {
  padding: 20px;
  width: 450px;
  height: 110px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  border: 2px dashed #ccc;
  margin: 15px auto;
}
.dropzone label {
  display: block;
  margin: 10px 0 10px;
  font-size: 17px;
  color: #95989b;
}
.dropzone input[type="file"] {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.dropzone .img-url-paste {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: small;
  width: 50%;
  border-bottom: 2px dashed #ccc;
  border-left: 2px dashed #ccc;
  border-right: 2px dashed #ccc;
  border-top: 0;
  outline: none;
  text-align: center;
  color: #474747;
  font-weight: bold;
}
.dropzone .img-url-paste:focus::placeholder {
  color: transparent;
}
.dropzone.active {
  border-color: #369;
}

.dropzone.active label {
  color: #369;
}
#previa {
  max-width: 200px;
  height: auto;
  display: none;
  margin: 0 auto;
}
.container-zu{
  width: 100%;
  margin-top: 14.5rem;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}  
.container-sidebar {
  --bs-gutter-x: 1.5rem;
  width: 98%;
  margin-right: 10px;
  margin-left: auto;
  margin-top: 90px;
  margin-bottom: 10px;
  padding-right: calc(var(--bs-gutter-x) * 0.4);
}
@media only screen and (min-device-width: 100px) and (max-device-width: 280px) {
  .container-sidebar {
    margin-top: 130px;
    max-width: 98%;
    padding-left: 0px;
  }
  .dropzone {
    max-width: 250px;
  }
  table,
  td,
  th {
    font-size: 85%;
  }
}
@media only screen and (min-device-width: 500px) and (max-device-width: 720px) {
  .container-sidebar {
    margin-top: 130px;
    max-width: 98%;
    padding-left: 0px;
  }
  .divAcceso {
    margin-left: 10px;
  }
  table,
  td,
  th {
    font-size: 85%;
  }  
}
@media only screen and (min-device-width: 360px) and (max-device-width: 480px) {
  .container-sidebar {
    margin-top: 120px;
    max-width: 98%;
    padding-left: 0px;
  }
  .dropzone {
    max-width: 250px;
  }
  .divAcceso {
    margin-left: 17px;
  }
  table,
  td,
  th {
    font-size: 85%;
  }
}
@media only screen and (min-device-width: 900px) and (max-device-width: 1250px) {
  .container-sidebar {
    max-width: 70%;
  }
  .h1-caja{
    font-size: 36pt;
  }
}
@media (min-width: 1100px) {
  .container-sidebar {
    max-width: calc(98% * 0.4);
  }
}
@media (min-width: 1100px) {
  .container-sidebar {
    max-width: calc(98% * 0.77);
  }
}
@media (min-width: 1300px) {
  .container-sidebar {
    max-width: calc(98% * 0.8);
  }
}
@media (min-width: 1400px) {
  .container-sidebar {
    max-width: calc(98% * 0.83);
  }
}

@media screen and (max-width: 978px) {
  .dropzone {
    width: 350px;
  }
  .hidden-overflow {
    overflow-x: scroll !important;
  }
  .row-m {
    margin-left: 2px;
    margin-right: 0px;
  }
  .fs-m {
    margin-left: 18px;
    margin-top: -0.1em;
    width: 280px;
  }
  .h1-caja{
    font-size: 28pt;
  }  
}
@media screen and (max-width: 768px) {
  .tbl-input {
    width: 120px !important;
  }
  .my-buton-add {
    margin-left: 35px;
  }
  .h1-caja{
    font-size: 25pt;
  }  
}
.frame{
  margin-top: 30px;
}
.a1-tooltip {
  position: relative;
  display: inline-block;
}
.a1-tooltip .a1-tooltip-text {
  visibility: hidden;
  width: 80px;
  background-color: var(--color-a1-tooltips);
  color: var(--text-color-a1tooltips);
  text-align: center;
  font-weight: 800;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 10000 !important;
  bottom: 105%;
  left: 50%;
  margin-left: -40px;
  font-size: 12px;
}
.a1-tooltip .a1-tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--color-a1-tooltips) transparent transparent transparent;
}
.a1-tooltip:hover .a1-tooltip-text {
  visibility: visible;
}
.shadow-text {
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.65);
} 
.search-container {
  position: relative;
  display: inline-block;
}
#busq_modal {
  padding-top: 9px;
  padding-bottom: 7px;
  margin-top: 3px;
  padding-left: 25px;
  padding-right: 30px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 14px;
}
#busq_modal:focus {
  border: 1px solid #cfcfcf;
  outline: 0;
  box-shadow: 1px 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}
#search_input {
  padding-top: 9px;
  padding-bottom: 7px;
  margin-top: 3px;
  padding-left: 25px;
  padding-right: 30px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 14px;
}
#search_input:focus {
  border: 1px solid #cfcfcf;
  outline: 0;
  box-shadow: 1px 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}
.search_input {
  padding-top: 9px;
  padding-bottom: 7px;
  margin-top: 3px;
  padding-left: 25px;
  padding-right: 30px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 14px;
}
.search_input:focus {
  border: 1px solid #cfcfcf;
  outline: 0;
  box-shadow: 1px 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}
.mt-6{
  margin-top: 70px;
}
.search-icon,
.clear-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #a4a4a4;
}
.search-icon {
  left: 5px;
}
.clear-icon {
  right: 5px;
}
.bi-search,
.bi-x-lg {
  font-size: 16px;
}
.iframe-act{
  width: 100%;
  height: 144px;
}
.iframe{
  width: 99%;
  min-height: max-content;
  height: 780px;
}
.obt-box {
  animation-name: obt-up;
  animation-duration: 1.15s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: backwards;
}

@keyframes obt-up {
  0% {
      transform: rotateX(-65deg);
      transform-origin: top;
  }

  100% {
      transform: rotateX(0deg);
      transform-origin: top;
      opacity: 1;
  }
}

.ch {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ch-left {
  margin-right: auto;
}

.ch-center {
  text-align: center;
}

.ch-right {
  margin-left: auto;
}
.tooltip-inner {
  background-color: white !important;
  color: black !important;
  border: 1px solid #9c9dff !important;
  text-align: start !important;
  font-family: "Quicksand", sans-serif !important;
  font-size: 0.85rem;
}
.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  border-bottom-color: white !important;
} 
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Proporción 16:9 (dividir la altura por el ancho y multiplicar por 100) */
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.thumbnail {
  display: inline-block;
  width: 50px;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} 
.h-offcanvas {
  height: 100% !important;
  max-height: calc(90vh - 150px) !important; 
  overflow-y: auto !important;
}
@media (min-width: 340px) {
  .h-offcanvas{max-height: calc(80vh - 150px) !important;}
}
@media (min-width: 410px) {
  .h-offcanvas{max-height: calc(65vh - 150px) !important;}
}
@media (min-width: 800px) {
  .h-offcanvas{max-height: calc(45vh - 150px) !important;}
}
@media (min-width: 768px) {
  .h-offcanvas{max-height: calc(43vh - 150px) !important;}
}    
@media (min-width: 912px) {
  .h-offcanvas{max-height: calc(37vh - 150px) !important;}
}      
@media (min-width: 1024px) {
  .h-offcanvas{max-height: calc(76vh - 150px) !important;}
}    
@media (min-width: 1280px) {
  .h-offcanvas{max-height: calc(60vh - 150px) !important;}
}   
.ban-1 {
  background-image: linear-gradient(35deg, #f5f5f9 50%, rgba(67, 89, 113, 0.05) 50%);
}
.ban-2 {
  background-image: linear-gradient(to right, #d7d4fc 1%, rgba(215, 212, 252, 0) 50%);
}
.bg-s-light{
  background-color: rgba(88, 112, 138, 0.1) !important;
}
.load-spin-chart{
  font-size: 4rem;
  margin-right: 30px;
  color: #d3d3d3;
}
.busq-data-contain {
  position: relative;
  display: inline-block;
  min-width: 250px;
  width: 100%;
}

.inp-bus-data {
  padding: 8px 35px 8px 30px;
  border: 1px solid #c9c9c9;
  border-radius: 6px;
  width: 100%;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-indent: 3px;
}

.inp-bus-data:focus {
  border-color: #696cff;
  box-shadow: 0 0 0 2px rgba(105, 108, 255, 0.2);
  outline: 0;
}

.ico-bus-data {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 0.9em;
  color: #aaa;
  pointer-events: none;
}

.ico-clo-data {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #aaa;
  display: none;
  font-size: 0.9em;
}

.inp-bus-data:not(:placeholder-shown)~.ico-clo-data {
  display: block !important;
}

.ico-clo-data:hover {
  color: #555;
}

@media (max-width: 768px) {
  .busq-data-contain {
      min-width: 180px;
  }
}

@media (max-width: 576px) {
  .busq-data-contain {
      min-width: 100%;
  }
}
.video-wrapper {
    position: relative;
    width: 55%;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

#videoElement {
    width: 100%;
    height: auto;
    display: block;
}

#capturedImage {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: -140px;
}
.error-message {
    color: red;
    margin-top: 20px;
}
.in-height-der {
     height: 60px;
     padding-right: 44px !important;
    font-size: 35px !important;
    font-weight: bold;
}
.btn-primary {
  background: #7a7bc9 !important;
}
.d-date {
  position: relative; 
  width: fit-content; 
  margin:auto;
}
.d-date .bi-save {
  position: absolute;
  left: 5px; 
  top: 52%;
  transform: translateY(-50%);
  z-index: 2; 
  color: #6c757d; 
  cursor: pointer;
}    
.td-date {
  outline: none;
  border-radius: 4px;
  border: 1px solid #c1c1c1;
  padding: 3px;
  padding-left: 30px; 
  width: 150px;
}
/* Estilos para el contenedor de la cámara dentro del modal */
.Cont-Video {
    width: 100%;
    /* En móvil, la altura puede ser variable, pero 300px es un buen inicio */
    height: 240px;
    overflow: hidden;
    position: relative;
    background-color: #000;
}
.Video-Element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Asegura que el video cubra el área sin distorsión */
}
/* Opción Recomendada si usas Bootstrap */
.form-control[readonly] {
    background-color: #EBEBE4;
    opacity: 1; /* Bootstrap puede bajar la opacidad, esto lo asegura */
    cursor: default;
}

/* Opción de Alta Especificidad (Usar si la anterior no funciona) */
input.form-control[readonly] {
    background-color: #EBEBE4 !important; /* El !important forzará tu color */
    opacity: 1;
    cursor: default;
}    
.collapsing {
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
}

#toggleButton span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#toggleButton .bi {
    font-size: 1.5rem;
    width: 1.5rem;
    text-align: center;
}