.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../../images/logo_marn_gris') 50% 50% no-repeat rgb(249, 249, 249);
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-text {
    font-size: 24px;
    color: #000;
    animation: moveText 1s linear infinite;
    position: absolute;
    top: calc(50% + 20px); /* Posición debajo del logo */
    left: calc(50% - 60px);
    transform: translateX(-50%);
}

@keyframes moveText {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}
.menu_scrollable {
    height: 500px !important;
    overflow: auto !important;
}
.validarExistePeriodo{
    display: none;
}

.cardCuerpo{
    background-color: #e0eafc;
}
.cardEncabezado{
    background-color: #222d32;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px
}