#WindowLoad {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 3200;
    filter: alpha(opacity=65);
    --moz-opacity: 65;
    opacity: 0.65;
    background: #999;
}

.btn-outline-warning {
    display: inline-block;
    font-weight: bold;
    color: #856404;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid #856404;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    /*background-color: transparent;*/
}

    .btn-outline-warning:hover {
        color: #fff;
        background-color: #856404;
        border-color: #856404;
    }

    .btn-outline-warning:focus, .btn-outline-warning.focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
    }

    .btn-outline-warning.disabled, .btn-outline-warning:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }

    .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
    .show > .btn-outline-warning.dropdown-toggle {
        color: #fff;
        background-color: #856404;
        border-color: #856404;
    }

        .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-warning.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
        }

img.avatar {
    /* cambia estos dos valores para definir el tamaño de tu círculo */
    height: 100px;
    width: 100px;
    /* los siguientes valores son independientes del tamaño del círculo */
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 50%;
    background-size: 100% 100%;
}

.left_col {
    background: rgba(31,63,101,1) !important;
    background-repeat: repeat-y;
    background-position: center;
}

.nav_title {
    width: 230px;
    background: rgba(31,63,101,1) !important;
    float: left;
    border-radius: 0;
    height: 57px;
}

.btn-custom {
    background-color: #FFC107 !important; /* Color de fondo */
    color: white !important; /* Color del texto */
    border: none; /* Sin borde */
    border-radius: 5px; /* Bordes redondeados */
    padding: 8px 16px; /* Espaciado interno */
    font-size: 14px; /* Tamaño de fuente */
    cursor: pointer; /* Cursor tipo puntero */
    transition: all 0.3s ease; /* Transición suave */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra ligera */
    display: inline-flex; /* Alinear icono y texto */
    align-items: center; /* Centrar verticalmente */
    gap: 8px; /* Espacio entre icono y texto */
}

    .btn-custom:hover {
        background-color: #e0a800 !important; /* Color de fondo al pasar el mouse */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada al pasar el mouse */
        transform: translateY(-2px); /* Efecto de elevación */
    }

    .btn-custom i {
        font-size: 16px; /* Tamaño del icono */
    }

.nav-sm #AnioLectivo {
    font-size: 9px;
}

.nav-sm .mCS_img_loaded {
    height: 20px;
    width: 20px;
}

.site_title {
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 400;
    font-size: 22px;
    width: 100%;
    color: #ECF0F1 !important;
    margin-left: 0 !important;
    line-height: 59px;
    display: block;
    height: 55px;
    margin: 0;
    padding-left: 0px;
}

.separador-con-icono {
    position: relative;
    text-align: center;
    margin: 10px 0;
    padding-top: 20px;
}

.separador-estilizado {
    border: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFC107, #FF9800);
    margin: 0;
}

.icono-separador {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(31, 63, 101, 1);
    padding: 0 0px;
    color: #FF9800;
    font-size: 20px;
}

/* Clase personalizada para centrar el modal verticalmente */
/*.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - (1.75rem * 2));*/ /* Ajusta el margen del modal */
/*}*/

.modal-dialog-centered {
    display: flex;
    align-items: center;
    /* min-height: calc(100% -(1.75rem* 2)); */
    margin: auto;
    justify-content: center;
    min-height: 100vh;
}

/* Asegura que el modal esté centrado en pantallas pequeñas */
@media (max-width: 767px) {
    .modal-dialog-centered {
        min-height: calc(100% - (0.5rem * 2)); /* Ajusta el margen para móviles */
    }
}
/* Hace que el modal sea desplazable si el contenido es demasiado grande */
.modal-body { /*EVITA QUE EL MODAL SE ROMPA EN IPHONE*/
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}