@font-face {
    font-family: 'Vollkorn'; /* Nombre de la fuente */
    src: url(../fonts/principal/Vollkorn-Bold.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueLTStd'; /* Nombre de la fuente */
    src: url(../fonts/secundaria/HelveticaNeueLTStd-Bd.otf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 13px;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-size: 12px;
    background-color: white !important;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Vollkorn', sans-serif;
}

th {
    white-space: nowrap;
}

p {
    text-align: justify;
    text-justify: inter-word;
    font-size:16px;
}

li {
    text-align: justify;
    text-justify: inter-word;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.bpFab {
    animation: bounceIn 2s ease-out infinite;
    background-color: transparent;
    width: 64px !important;
    height: 64px !important;
    overflow: hidden !important;
}

.btn-custom-gray {
    background-color: #cccccc !important; /* Gris claro */
    color: #333333 !important; /* Texto oscuro */
    border: none !important;
}

.required-field::after {
    content: " *";
    color: red;
    font-weight: bold;
}

.card-header {
    color: white !important;
}

.loader-overlay {
    display: none; /* Oculto por defecto */
    position: fixed; /* Cubre toda la pantalla */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo semi-transparente */
    z-index: 9999; /* Asegura que esté por encima de todo */
    display: flex; /* Para centrar el contenido del loader */
    flex-direction: column; /* Para alinear el spinner y el texto verticalmente */
    justify-content: center;
    align-items: center;
}