/*GLOBALES*/
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

header {
    background: #fff;
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 10;
}

.text-responsive {
    margin-bottom: 0 !important;
}

/*FONDO DE LA PAGINA YA LOGGEADO*/
body {
    background-image: url('/imagenes/NuevoBG web legal-01.png'); /* Ruta de la imagen */
    background-size: cover; /* Cubre toda la pantalla */
    background-repeat: no-repeat; /* No se repite */
    background-attachment: fixed; /* Se queda fija al hacer scroll */
    background-position: center; /* Centrada en la pantalla */
    font-family: "Inter", sans-serif;
}

/*PROPIEDAD PARA DEJAR FIJADO EL FOOTER EN LA PANTALLA*/
.foot_fijo {
    position: fixed;
    z-index: 10;
    white-space: nowrap;
    width: 100%;
    line-height: 60px;
    bottom: 0;
    background: #fff;
}

/*SE USA ESTA PROPIEDAD PARA ALTERAR LA UBICACION DE UN ELEMENTO DE UNA TABLA EN HOME-MODAL MOMENTOS*/
.table_modal {
    vertical-align: unset !important;
}

/*ESTA SECCION ES PARA DEJAR UN ESPACIO SUPERIOR ENTRE EL HEADER Y CUERPO DE LA PAGINA AGREGAR A TODAS LAS VISTAS */
.demas {
    padding-top: 150px !important;
    display: flex;
    align-items: center;
}
/*.demas {
    padding-top: 150px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.demas h3 {
    margin: 0;
    text-align: center;
}*/
.button-section {
    display: flex;
    gap: 10px;
}

/*Se usa en el layoudSinNada*/
.barra{
    position:relative;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/*Responsive*/
.icon__menu {
    font-size: 26px;
    color: white;
    cursor: pointer;
    width: 26px;
    height: 100%;
    display: flex;
    align-items: center;
}

#label__check {
    width: 26px;
    height: 100%;
    display: none;
}

#check__menu {
    display: none;
}

/*RESPONSIVE DEL MENU*/
@media (max-width:720px){
    .logo{
        display:none;
    }
    .header_superior{
        align-items:center !important;
        margin: 0% !important;
    }
    .nav {
        display: grid !important;
        grid-template-columns: repeat(2,1fr);
        font-size:small;
    }
    .icono_usuario{
        display:none !important;
    }
    .boton_salir{
        padding:0 30px !important;
    }
    .nav {
        display: flex;
    }
    .nav_prin > ul {
        flex-direction: column;
        background-color: #515F65;
        position: fixed;
        left: 0;
        /*top: 158px;*/
        width: 100%;
        height: 0px;
        transition: all 300ms ease;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }
    .nav_prin > ul > li > a:hover{
        transform:scale(1);
    }
    .nav_prin > ul > li > ul {
        left: 90px;
    }

    .nav_prin > ul > li:hover > ul {
        top: 50px;
    }

    .nav_prin > ul > li:first-child a {
        background-position: 20px;
    }

    .lista_grande {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        grid-gap: 1px;
    }
    .lista_grande_Panel {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        grid-gap: 1px;
    }

    .elemento_lista {
        grid-column: span 1;
        width: 40%;
        white-space: nowrap;
    }

    .lista_grande_Proceso {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important; /* Tres columnas */
        grid-gap: 10px; /* Espacio entre los elementos */
        list-style: none;
        padding: 0;
        margin: 0;
        display: none; /* Escondemos el submenú inicialmente */
    }

    .lista_grande_Proceso_item {
        grid-column: span 1; /* Cada elemento ocupa una columna */
    }

    .lista_grande_Proceso_divisor {
        grid-column: 1 / -1; /* El divisor ocupa toda la fila */
        padding: 0;
        margin: 10px 0; /* Espaciado para el divisor */
    }

        .lista_grande_Proceso_divisor hr {
            border: none;
            border-top: 1px solid #ccc; /* Estilo del divisor */
        }

    #selected {
        transform: scale(1);
    }

    #label__check {
        display: block;
    }

    #icon__menu {
        display: flex;
    }

    #check__menu:checked ~ .nav_prin > ul {
        height: 300px;
        visibility: visible;
        opacity: 1;
    }
}

/*HEADER SUPERIOR*/
.header_superior {
    max-width: 1200px;
    margin:0 370px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
}

.usuario li {
    list-style-type: none;
}

.usuario_salir {
    padding-left:30px;
}

.usuario_contenido{
    text-decoration: none;
}

/*NavegacionR*/

.container__menu {
    width: 100%;
    height: 70px;
    padding: 0px 20px;
}
.menu__var {
    max-width: 1200px;
    /*padding-left: 220px;*/
    margin: auto;
    height: 100%;
}

.nav_text{
    font-weight:bold;
}

.nav_prin {
    height: 100%;
}

.nav_prin > ul {
    height: 100%;
    display: flex;
}

.nav_prin ul li {
    height: 100%;
    list-style: none;
    position: relative;
}

.nav_prin > ul > li > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 14px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 300ms ease;
    text-decoration: none;
    /*color: black;*/
}

.nav_prin > ul > li > a:hover {
    transform: scale(1.1);
    background: #4A4A4A;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    color:white;
}

#selected {
    transform: scale(1.1);
    background: #012E45;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/*SUBMENU*/
.nav_prin ul li ul {
    width: 200px;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 90px;
    left: -5px;
    padding: 14px 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
    transition: all 300ms ease;
}

.nav_prin ul li .lista_grande {
    width: auto;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 90px;
    left: -5px;
    padding: 14px 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
    transition: all 300ms ease;
}

.nav_prin ul li .lista_grande_Panel {
    width: auto;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 90px;
    left: -5px;
    padding: 14px 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
    transition: all 300ms ease;
}

.nav_prin ul li .lista_panel_resp {
    width: auto;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 90px;
    left: -5px;
    padding: 14px 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
    transition: all 300ms ease;
}

.nav_prin ul li:hover ul {
    visibility: visible;
    opacity: 1;
    top: 70px;
}

.lista_grande {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
}

.lista_grande_Panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.elemento_lista {
    grid-column: span 1;
    width: 100%;
    white-space: nowrap;
}

.nav_prin ul li ul::before {
    content: ' ';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    position: absolute;
    top: -12px;
    left: 20px;
}

.nav_prin ul li ul li a {
    display: block;
    color: #012E45;
    padding: 6px;
    padding-left: 14px;
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 300ms ease;
}

.nav_prin ul li ul li a:hover {
    background: #4A4A4A;
    color: white;
    transform: scale(1.1);
    padding-left: 30px;
    font-size: 14px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/*Boton Principal*/
.boton {
    text-shadow: 0px 0px rgba(0, 0, 0, 0);
    text-align: center;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    display: inline-block;
    color: #FFF;
    background: #7F8C8D;
    padding: 7px 20px;
    white-space: nowrap;
    border-radius: 30rem;
    margin: 10px 5px;
    transition: all 0.2s ease-in-out;
    border-color: rgba(255, 255, 255, 0);
    min-width: 120px; /* Agrega un ancho mínimo para mantener consistencia */
    width: 100%; /* Asegura que el ancho sea uniforme */
}
.boton_Nuevo {
    text-shadow: 0px 0px rgba(0, 0, 0, 0);
    text-align: center;
    text-decoration: none;
    /*font-family: 'Helvetica Neue', Helvetica, sans-serif;*/
    font-family: "Inter", sans-serif;
    display: inline-block;
    color: #FFF;
    background: #7F8C8D;
    padding: 7px 20px;
    white-space: nowrap;
    -webkit-border-radius: 5px;
    -moz-border-radius: 0px;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-color: rgba(255, 255, 255, 0);
    border-radius: 30rem;
    margin-top:25px;
}
/*Se usa en botones de guardar/aceptar....*/
.azul {
    background: #038eeb;
    box-shadow: 0px 0px 0px 0px #2980B9;
}

.azul:hover {
    background: #43a5e6;
}

.azul:active {
    box-shadow: 0px 2px 0px 0px #2980B9;
}

/*SE USAN EN BOTONES DE CANCELAR*/
.rojo {
    background: #E74C3C;
    box-shadow: 0px 0px 0px #C0392B;
}

.rojo:hover {
    background: #ff5242;
}

.rojo:active {
    box-shadow: 0px 2px 0px 0px #C0392B;
}

/*BOTONES DE INTERFAZ PARA RECEPCIONISTA 1 Y 2 RECEPCION*/
.btn-Administracion {
    border: none;
    color: black;
    text-align: center;
    text-decoration: none;
}
.btn-Administracion:hover{
    color:dimgrey;
}

#nav-item {
    color: white;
}

/*PROPIEDAD DE BOOTSRAP*/
.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

/*Boton Configurar*/

/*Alerta error*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700');
@import url('https://fonts.googleapis.com/css?family=Catamaran:400,800');

@keyframes shadowsdancing {
    0% {
        box-shadow: inset 30px 0 0 rgba(209, 242, 165, 0.4), inset 0 30px 0 rgba(239, 250, 180, 0.4), inset -30px 0 0 rgba(255, 196, 140, 0.4), inset 0 -30px 0 rgba(245, 105, 145, 0.4);
    }

    25% {
        box-shadow: inset 30px 0 0 rgba(245, 105, 145, 0.4), inset 0 30px 0 rgba(209, 242, 165, 0.4), inset -30px 0 0 rgba(239, 250, 180, 0.4), inset 0 -30px 0 rgba(255, 196, 140, 0.4);
    }

    50% {
        box-shadow: inset 30px 0 0 rgba(255, 196, 140, 0.4), inset 0 30px 0 rgba(245, 105, 145, 0.4), inset -30px 0 0 rgba(209, 242, 165, 0.4), inset 0 -30px 0 rgba(239, 250, 180, 0.4);
    }

    75% {
        box-shadow: inset 30px 0 0 rgba(239, 250, 180, 0.4), inset 0 30px 0 rgba(255, 196, 140, 0.4), inset -30px 0 0 rgba(245, 105, 145, 0.4), inset 0 -30px 0 rgba(209, 242, 165, 0.4);
    }

    100% {
        box-shadow: inset 30px 0 0 rgba(209, 242, 165, 0.4), inset 0 30px 0 rgba(239, 250, 180, 0.4), inset -30px 0 0 rgba(255, 196, 140, 0.4), inset 0 -30px 0 rgba(245, 105, 145, 0.4);
    }
}

@keyframes colordancing {
    0% {
        color: #103F91;
    }

    25% {
        color: #1553C1;
    }

    50% {
        color: #0041FF;
    }

    75% {
        color: #4A76F8;
    }

    100% {
        color: #88A5FB;
    }
}

@keyframes colordancing2 {
    0% {
        color: #103F91;
    }

    25% {
        color: #1553C1;
    }

    50% {
        color: #0041FF;
    }

    75% {
        color: #4A76F8;
    }

    100% {
        color: #88A5FB;
    }
}

/* demo stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*SE UTILIZA ESTA PROPIEDAD EN LAS LISTAS DE CHECKS EN RECEPCION Y AL MANDAR MOMENTOS*/ 
.groupbox {
    border: .5px solid #EEEEEE;
    padding: 10px;
    width: 100%;
    max-height: 200px;
    overflow: auto;
    box-sizing: border-box;
}

.checkbox-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

/*BUSQUEDA EN LOS HOMES*/
.input-container {
position: relative;
display: flex;
align-items: center;
}

.input {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: none;
    outline: none;
    padding: 18px 16px;
    background-color: transparent;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.input::placeholder {
    color: transparent;
}

.input:focus::placeholder {
    color: rgb(131, 128, 128);
}

.input:focus, .input:not(:placeholder-shown) {
    background-color: #fff;
    border: 1px solid #0D6EFD;
    width: 290px;
    padding: 18px 16px 18px 45px;
}

.icon {
    position: absolute;
    left: 0;
    height: 45px;
    width: 45px;
    background-color: #fff;
    border-radius: 99px;
    z-index: -1;
    fill: #0D6EFD;
    border: 1px solid rgb(91, 107, 255);
}

.input:focus + .icon, .input:not(:placeholder-shown) + .icon {
    z-index: 0;
    background-color: transparent;
    border: none;
}

/*Carta de usuario*/
.main {
    display: grid;
    place-items: center;
    width: 190px;
    height: 254px;
}

.card {
    width: 250px;
    height: 300px;
    background: #FAF1F6;
    padding: 2rem 1.5rem;
    transition: box-shadow .3s ease, transform .2s ease;
    display: flex;
    flex-direction: column;
    position: absolute;
}

.card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-avatar {
    background: radial-gradient(#A8A6B6,#B3B1BF,#BDBBC7,#C5C4CE,#E2E2E7);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: transform .2s ease;
}

.card-avatar svg {
    padding-top: 5px;
    height: 80px;
    width: 100px;
    fill: #515F65;
}

.card-social {
    display: flex;
    justify-content: space-around;
    width: 190px;
    margin-top: 10%;
    text-align: center;
}

.card-social-icon {
    list-style: none;
    color: #515F65;
    font-size: 0.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-social-icon svg {
    display: block;
    height: 20px;
    width: 20px;
    fill: #515F65;
    cursor: pointer;
}

.card-title {
    color: #1b1b1b;
    font-size: 13px;
    line-height: 2rem;
    margin-top: 5px;
}

.card-subtitle {
    color: #7e93a0;
    font-size: 1.0em;
}

.address-icon {
    fill: #515F65;
    height: 150px;
    width: 100px;
    list-style: none;
    justify-content: space-around;
}

.address-title {
    color: #333;
    font-size: 1.0em;
    font-weight: 600;
    list-style: none;
}

.address {
    color: #859ba8;
    font-size: 0.8em;
    list-style: none;
    padding-left: 20px;
}

.contact-title {
    color: #333;
    font-size: 1em;
    font-weight: 600;
    padding-bottom: 5px;
}

.card-contact {
    color: #859ba8;
    font-size: 0.8em;
}

.icon-contact {
    list-style: none;
    display: flex;
    align-items: center;
}

.icon-contact svg {
    display: block;
    height: 18px;
    width: 18px;
    fill: #515F65;
    padding-right: 5px;
}

.card:hover {
    box-shadow: 0 10px 50px #23232333;
}

.card:hover .card-info {
    transform: translateY(-5%);
}

.card-avatar:hover {
    transform: scale(1.1);
}

#cs1:hover {
    transform: scale(2.0);
}

#cs2:hover {
    transform: scale(2.0);
}

#cs3:hover {
    transform: scale(2.0);
}

.main:hover #c1 {
    transform: translateX(0px);
}

.main:hover #c2 {
    transform: translateX(300px);
}

.main:hover #c3 {
    transform: translateX(-300px);
}

/*CARGAR IMAGENES*/
.drag-image {
    border: 1px dashed #fff;
    height: 200px;
    width: 306px;
    border-radius: 5px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #6A6A6A;
}

.drag-image.active {
    border: 2px solid #fff;
}

.drag-image .icon {
    font-size: 30px;
    color: #fff;
}

.drag-image h6 {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}

.drag-image span {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    margin: 10px 0 15px 0;
}

.drag-image button {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 300;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s;
}

.drag-image button:hover {
    background-color: #fff;
    color: red;
}

.drag-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/*Labels editar y insertar*/
.CampoConIcono {
    display: flex;
    align-items: center;
}
.boton_input {
    display: flex;
    align-items: initial;
    gap: 10px; /* Espacio entre el input y el botón */
}
.boton_input button {
    align-self:flex-start;
}

.coolinput_Nuevo {
    flex-grow: 1; /* El input ocupará más espacio */
}

.boton_input button {
    flex-shrink: 0; /* El botón ocupará solo el espacio necesario */
}

input.input_lb {
    width: 100%; /* Asegura que el input ocupe todo el espacio disponible en su contenedor */
}
.input_lb {
    border-radius: 30rem;
}
.coolinput label.text {
    font-size: 0.90rem;
   /* color: #7c7e7d;*/
    font-weight: 700;
    position: relative;
    top: 0.3rem;
    /*margin: 0 0 0 7px;*/
    padding: 0 3px;
    background: #FFFFFF;
    width: fit-content;
    background-color: transparent;
}

.coolinput input[type=text] .input_lb {
    padding: 11px 10px;
    font-size: 1rem;
    border: 1px #DEE2E6 solid;
    border-radius: 30rem !important;
    background: #FFFFFF;
    background-color: transparent;
}

.coolinput input[type=select] .input_lb {
    padding: 11px 10px;
    font-size: 1rem;
    border: 1px #DEE2E6 solid;
    border-radius: 30rem !important;
}

.coolinput textarea[type=text].input_lb {
    padding: 11px 10px;
    font-size: 1rem;
    border: 1px #DEE2E6 solid;
    border-radius: 5px;
    background: #FFFFFF;
    background-color: transparent;
}

.coolinput input[type=text].input_lb:focus {
    outline: none;
}

/*SE UTILIZAN EN RUBRICAS*/
.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.timeline-steps .timeline-step {
        align-items: center;
        display: flex;
        flex-direction: column;
        position: relative;
        margin: 1rem;
    }

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted rgba(0, 0, 0, 0.5);
        width: 3.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem;
    }

    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted rgba(0, 0, 0, 0.5);
        width: 3.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem;
        color: black;
    }
}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1rem;
    height: .75rem;
    width: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #c2c2c2
}

.timeline-steps .timeline-content .inner-circle:before {
        content: "";
        background-color: #c2c2c2;
        display: inline-block;
        height: 2rem;
        width: 2rem;
        min-width: 2rem;
        border-radius: 4rem;
        opacity: .6
    }

/* Contenedor principal para el layout */
.main-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Parte fija en la parte superior */
.fixed-header {
    padding:10px;
    flex-shrink: 0;
    background: rgba(0,0,0,0); /* Fondo blanco para diferenciar */
    z-index: 10; /* Asegura que esté por encima del contenido desplazable */
    border-bottom: 1px solid rgba(0,0,0,0); /* Borde inferior para separar */
}

/* Contenedor envolvente para ocultar la barra de desplazamiento */
.scroll-wrapper {
    position: relative;
    overflow: hidden; /* Oculta la barra de desplazamiento */
    flex-grow: 1; /* Permite que crezca para ocupar el espacio disponible */
}

/* Contenedor desplazable */
.scrollable-container {
    max-height: 70vh; /* Ajusta la altura máxima del área de desplazamiento */
    overflow-y: auto; /* Habilita el desplazamiento vertical */
}

/* Estilos para ocultar la barra de desplazamiento en diferentes navegadores */
.scrollable-container::-webkit-scrollbar {
    width: 20px; /* Ancho de la barra de desplazamiento */
    background: #BEBEBE; /* Fondo de la barra de desplazamiento */
}

/* Hacer la barra de desplazamiento invisible en Firefox */
.scrollable-container {
    scrollbar-width: none; /* Ancho de la barra de desplazamiento */
    -ms-overflow-style: none; /* Deshabilitar la barra de desplazamiento en IE y Edge */
}
.new_scroll {
    max-height: 70vh; /* Ajusta la altura máxima del área de desplazamiento */
    overflow-y: auto; /* Habilita el desplazamiento vertical */
    scrollbar-color: #BEBEBE;
}
/* Para navegadores basados en WebKit */
.new_scroll::-webkit-scrollbar {
    width: 16px; /* Ancho del scroll vertical */
}

.new_scroll::-webkit-scrollbar-thumb {
    background-color: #959595; /* Color de la barra */
    border-radius: 10px; /* Bordes redondeados */
}

.new_scroll::-webkit-scrollbar-track {
    background-color: #BEBEBE; /* Color de la pista */
}

body::-webkit-scrollbar {
  width: var(--scroll-size, 0px);
  height: var(--scroll-size, 0px);
}

body::-webkit-scrollbar-track {
  background-color: var(--scroll-track, transparent);
  border-radius: var(--scroll-track-radius, var(--scroll-radius));
}

body::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color, transparent);
  background-image: var(--scroll-thumb, none);
  border-radius: var(--scroll-thumb-radius, var(--scroll-radius));
}

/*SE UTILIZA EN TURNO Y VENCIMIENTOS PARA RUBRICAS*/
.nombre-campo {
    max-width: 100px;
    white-space: normal;
    overflow-wrap: break-word;
    text-align: center;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.2;
}

.inner-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: grey;
    margin: 0 auto;
    transition: background-color 0.5s;
}

.highlight {
    background-color: red;
}

.boton-pequeno {
    width: 60px; /* Ancho del botón */
    height: 30px; /* Alto del botón */
    padding: 0; /* Sin padding para mantener el tamaño exacto */
    font-size: 10px; /* Ajusta el tamaño del texto si es necesario */
    overflow: hidden; /* Asegúrate de que el contenido quepa */
}

/*PESTAÑAS DE LAS INTERFACES DE HOME*/
.tabs {
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0);
}

.tabs-container {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Hace que el contenedor ocupe toda la altura de la vista */
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0);
    border-radius: 10px;
}

.tab-header {
    display: flex;
    cursor: pointer;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border-radius: 10px 10px 0 0;
    width:550px;
}

.tab-headerAdmin {
    display: flex;
    cursor: pointer;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border-radius: 10px 10px 0 0;
    width: 1150px;
}

.tab-header .tab-link {
    flex: 1;
    padding: 15px;
    color: white;
    background-color: #686868d3;
    border-radius: 10px 10px 0 0;
    transition: background-color 0.3s;
}

.tab-headerAdmin .tab-link {
    flex: 1;
    padding: 15px;
    color: white;
    background-color: #686868d3;
    border-radius: 10px 10px 0 0;
    transition: background-color 0.3s;
}

.tab-header .tab-link:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.tab-headerAdmin .tab-link:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.tab-header .tab-link.active {
    /*background-color: #e1176e;*/
    background-color: #000000;
}

.tab-headerAdmin .tab-link.active {
    /*background-color: #e1176e;*/
    background-color: #000000;
}
/*SE UTILIZA EN LA PESTAÑA DE HOME EN EXP NO TURNADOS*/
.botonTabla {
    text-shadow: 0px 0px rgba(0, 0, 0, 0);
    text-align: center;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    display: inline-block;
    color: #FFF;
    background: #7F8C8D;

    white-space: nowrap;
    -webkit-border-radius: 5px;
    -moz-border-radius: 0px;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-color: rgba(255, 255, 255, 0);
}
/* Contenedor de contenido de pestañas */
.tab-content-container {
    flex: 1; /* Permite que este contenedor ocupe el espacio restante */
    overflow-y: auto;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

.tab-content {
    display: none;
    height: 100%;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    margin-top: 0;
    color: #333;
}

/* CSS para hacer que los íconos parpadeen */
@keyframes parpadeo {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Clase para el parpadeo en rojo (URGENTE) */
.blink-red {
    animation: parpadeo 1s infinite;
    color: red;
}

/* Clase para el parpadeo en amarillo (IMPORTANTE) */
.blink-yellow {
    animation: parpadeo 1s infinite;
    color: #FFD700;
}

/* Clase para el parpadeo en verde (ORDINARIO) */
.blink-green {
    animation: parpadeo 1s infinite;
    color: green;
}

/*SE UTILIZA EN CONSULTA DE EXPEDIENTES*/
.wrap-text {
    word-break: break-word; /* Permite que el texto se divida */
    white-space: normal; /* Permite que el texto se ajuste a varias líneas */
    max-width: 300px; /* Puedes ajustar el tamaño máximo de la celda */
    font-size:13px;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

#alertIcon i {
    font-size: 3rem;
    color: red;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

#infoIcon i {
    font-size: 3rem;
    color: green;
    animation: bounce 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

#questionIcon i {
    font-size: 3rem;
    animation: pulse 1s infinite;
}

.card-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.cookieCard {
    width: 15%;
    height: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
    border-radius:20%;
}
.cookieHeading {
    font-size: 1.2em;
    font-weight: 600;
    color: rgb(241, 241, 241);
    z-index: 2;
}

.cookieDescription {
    font-size: 1.7rem;
    font-weight:bolder;
    color: rgb(241, 241, 241);
    z-index: 2;
}





























.notificaciones {
    position: absolute;
    top: 40px;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 280px;
    display: none;
    z-index: 1000;
}

.oculto {
    display: none;
}

.visible {
    display: block;
}

/* Estilos de las pestañas personalizadas */
.tabs-custom {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.tab-custom {
    background: none;
    border: none;
    font-weight: bold;
    padding: 5px;
    cursor: pointer;
    color: #555;
}

    .tab-custom.active {
        color: #e91e63;
        border-bottom: 2px solid #e91e63;
    }

/* Estilos del contenido de las pestañas personalizadas */
.tab-content-custom {
    display: none;
}

    .tab-content-custom.visible {
        display: block;
    }

/* Estilos del botón "Ver más" */
.ver-mas-container {
    text-align: center;
    margin-top: 10px;
}

.ver-mas-btn {
    display: inline-block;
    background-color: #e91e63;
    color: white;
    text-decoration: none;
    padding: 



