/* Light */
@font-face {
    font-family: 'archivo';
    src: url('../fuentes/archivo/Archivo-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Regular */
@font-face {
    font-family: 'archivo';
    src: url('../fuentes/archivo/Archivo-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: 'archivo';
    src: url('../fuentes/archivo/Archivo-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Black */
@font-face {
    font-family: 'archivo';
    src: url('../fuentes/archivo/Archivo-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Light */
@font-face {
    font-family: 'archivo_expanded';
    src: url('../fuentes/archivo_expanded/Archivo_Expanded-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Regular */
@font-face {
    font-family: 'archivo_expanded';
    src: url('../fuentes/archivo_expanded/Archivo_Expanded-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Medium */
@font-face {
    font-family: 'archivo_expanded';
    src: url('../fuentes/archivo_expanded/Archivo_Expanded-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: 'archivo_expanded';
    src: url('../fuentes/archivo_expanded/Archivo_Expanded-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



body {
    font-family: 'archivo', sans-serif;
    margin: 0;
    overflow-x: hidden !important;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'archivo_expanded', sans-serif;
}

main {
    flex: 1 0 auto;
}
.Ocultar
{
    display: none;
}
#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esto asegura que el video se adapte manteniendo la proporción original */
    z-index: -1;
}
.centradoVertical
{
    display: flex !important;
    align-items: center !important; /* Centra verticalmente */
    justify-content: center !important;
}

#content {
    position: relative;
    z-index: 1;
    color: black;
}

.options-list {
    list-style: none;
    padding: 0;
}

/* Estilos para los enlaces */
.options-list li a {
    text-decoration: none;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #ccc;
    transition: background-color 0.3s;
}

.options-list li a .arrow {
    margin-left: 10px;
}

.options-list li:hover a,
.options-list li:active a {
    background-color: #f0f0f0;
}
.checkbox-container {
    display: flex;
    align-items: center;
}

/* Estilos para el checkbox */
.checkbox-container input[type="checkbox"] {
    margin-right: 10px; /* Espaciado entre el checkbox y el texto */
}

/* Estilos para el texto */
.checkbox-container span {
    font-size: 16px; /* Tamaño de fuente del texto */
}



.tarjeta-clinica{padding:0px !important}
.tarjeta-clinica p{margin-bottom:10px !important;}


.loader {
    width: 100%;
    height: 4.8px;
    display: inline-block;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}
.loader::after {
    content: '';
    width: 192px;
    height: 4.8px;
    background: darkgray;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    animation: animloader 2s linear infinite;
}

@keyframes animloader {
    0% {
        left: 0;
        transform: translateX(-100%);
    }
    100% {
        left: 100%;
        transform: translateX(0%);
    }
}

.IconsRedesFondo
{
    background: rgba(255, 255, 255, 0.8) !important;
    padding: 5px !important;
    border-radius: 5px !important;
}


/* Estilos personalizados */
:root {
    --bs-link-color: #055391;
    --bs-link-color-rgb: 5, 83, 145;
    --bs-primary: #055391;
    --bs-primary-rgb: 5, 83, 145;
    --bs-progress-bar-bg:#055391;
    --bs-secondary: #2bb1cd;
    --bs-tertiary: #ed674b;
    --bs-modal-title-line-height: 1;
}
.progress, .progress-stacked{
    --bs-progress-bar-bg:  #055391 !important;
}

.text-tertiary{
    color: var(--bs-tertiary) !important;
}

.text-min{
    font-size: 0.75rem !important;
    font-size: 0.75em !important;
}
.text-med{
    font-size: 0.9rem !important;
    font-size: 0.9em !important;
}
.ocultar{
    display: none !important;
    visibility: hidden !important;
}
.cursor-pointer {
    cursor: pointer !important;
}

.formularioV2 label.form-label{
    color: var(--bs-primary) !important;
}
.formularioV2 .form-control{
    color: var(--bs-primary) !important;
    border-width:0px;
    border-radius: 0px;
    border-bottom: 2px solid var(--bs-primary) !important;
}
.form-check-input:checked{
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

/*CALENDAR*/
.disabled-day {
    color: #e0e0e0 !important;
    cursor: not-allowed;
}

.selected-date {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
    cursor: pointer;
}

#calendar table tr th, #calendar table tr td{
    border-width:0px !important;
    padding:10px;
    cursor: pointer;
}

.sticky-footer, .sticky-top {
    position: sticky;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem !important;
    z-index: 10;
}

.grecaptcha-badge{z-index: 9999;}

@media (max-width: 768px) {
    #calendar table tr th, #calendar table tr td{
        padding:5px;
    }
}


