.contenedor-contenido{
    background-color: white;
    border-radius: 5px;
    padding: 8px;
}

.boton-transparente{
    transition: 0.3s;
    background-color: transparent;
    box-shadow: 2px 2px 4px #d3d4d4;
}

.boton-transparente:hover{
    transition: 0.3s;
    background-color: transparent;
    filter: brightness(1.2);
}

.boton-avanzar{
    transition: 0.3s;
    background-color: var(--color-primario);
    color: white !important;
}

.boton-avanzar:hover{
    transition: 0.3s;
    background-color: var(--color-primario);
    filter: brightness(1.2);
}

.boton-neutro{
    transition: 0.3s;
    background-color: #BCBBBB;
    color: black !important;
}

.boton-neutro:hover{
    transition: 0.3s;
    background-color: #BCBBBB;
    filter: brightness(1.2);
}

.boton-opcional{
    transition: 0.3s;
    background-color: var(--color-secundario);
    color: white !important;
}

.boton-opcional:hover{
    transition: 0.3s;
    background-color: var(--color-secundario);
    filter: brightness(1.2);
}

.boton-cancelar{
    transition: 0.3s;
    background-color: #DC001A;
    color: white !important;
}

.boton-cancelar:hover{
    transition: 0.3s;
    background-color: #DC001A;
    filter: brightness(1.1);
}

.remover-enlace{
    text-decoration: none;
}

.fondo-primario{
    background-color: var(--color-primario) !important;
}

.fondo-secundario{
    background-color: var(--color-secundario) !important;
}

.fondo-claro{
    background-color: #D9E4EB !important;
}
/* Breadcrum */
.breadcrumb a{
    text-decoration: none;
    color: darkslategrey;
}

.breadcrumb a:hover{
    text-decoration: none;
    filter: brightness(1.2) !important;
}
/* Alertas */
.alerta-informativa{
    background-color: #CFF4FC;
}

.alerta-exito{
    background-color: #D1E7DD;
}

.alerta-error{
    background-color: #F8D7DA;
}

.alerta-cuidado{
    background-color: #FFF3CD;
}
/* Tablas */
.tabla-primaria th{
    border: 1px solid white !important;
}

.tabla-primaria th{
    background-color: var(--color-primario) !important;
    color: white !important;
}

.tabla-primaria th:first-child{
    border-top-left-radius: 8px;
}

.tabla-primaria th:last-child{
    border-top-right-radius: 8px;
}

.tabla-primaria td.celda-acciones{
    display: table-cell;
    width: 1%;
}

.tabla-primaria img.icono-accion{
    width: 1.6em;
}

.cuadrante-opciones{
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-left: 13px solid var(--color-secundario) !important;
    box-shadow: 2px 2px 4px #d3d4d4;
    height: 130px !important;
}

.cuadrante-opciones h5{
    font-size: 1.5em;
}

.cuadrante-opciones img{
    width: 6em;
}

.dropdown-menu a{
    text-decoration: none;
}

#modal_procesando img{
    width: 200px;
}

.relleno-horizontal {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.relleno-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; /* Inicialmente no visible */
    height: 100%;
    background-color: #eee; /* Otro color de llenado */
    transition: width 0.2s ease-in-out; /* Transición suave del ancho */
}

.relleno-horizontal:hover::before {
    width: 100%; /* Llenado completo al hacer hover */
}

.relleno-horizontal h5 {
    color: black;
    transition: .2s;
    position: relative;
    z-index: 1;
}

.relleno-horizontal:hover h5 {
    color: black;
    transition: .2s;
}

@media screen and (min-width: 320px) {}

@media screen and (min-width: 576px) {}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 992px) {
    .cabecera h1{

    }

    .cuerpo{
        padding: 10px;
    }
}

@media screen and (min-width: 1400px) {
    .cabecera h1{

    }

    .cuerpo{
        padding: 10px;
    }

    .contenedor-contenido{
        padding: 17px;
        border-radius: 5px;
    }
}