* {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.link-yellow {
  color: #F0C936;
}

.link-yellow:hover {
  color: #F0C936;
  text-decoration: underline;
}

/*Swal*/

.swal2-confirm {
  background-color: #F0C936;
  box-shadow: inherit;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*NOTICIAS*/
.icono-noticias {
  position: absolute;
  top: 10vh;
  right: 1rem;

  background-color: #F0C936;
  color: white;
  border-radius: 10px;
  padding: 1rem;
  z-index: 11;
  display: flex;           /* Activa Flexbox */
  justify-content: center; /* Centra el ícono horizontalmente */
  align-items: center; 
  transition: 100ms;
  cursor: pointer;
} 

.banner-hover {
  display: none; /* Mantén el banner en el DOM para animaciones */
  position: fixed;
  top: 20%; /* Ajusta según sea necesario */
  bottom: 0px;
  width: 100vw;         
  background-color: rgba(0, 0, 0, 0.8); 
  color: white;
  padding: 14px;
  z-index: 11;
  opacity: 0;              /* Oculto inicialmente */
  transform: translateY(-100px); /* Empieza fuera de la vista */
  transition: opacity 0.7s ease, transform 0.7s ease; /* Transición de desvanecimiento */
  pointer-events: none;  
  right: 0;
}

.banner-hover.active {
  display: block; /* Se muestra cuando se activa */
  opacity: 1;              /* Muestra el banner */
  transform: translateY(0); /* Efecto de desvanecimiento */
  pointer-events: auto;    /* Habilita la interacción al hacer clic */
}


.marquee-container {
  overflow: hidden; /* Oculta el texto que se desborda */
  white-space: nowrap; /* Evita el salto de línea */
  width: 100%; /* Ajusta el ancho al contenedor */
}

/* Texto desplazable */
.texto-animado {
  display: inline-block;
  white-space: nowrap; /* Evita el salto de línea y asegura que todo el texto esté en una línea */
  animation: scroll-left 10s linear infinite; /* Animación de desplazamiento */
  width: calc(100% + 50px); /* Ancho fijo para el desplazamiento */
}

/* Animación de desplazamiento continuo desde la derecha */
@keyframes scroll-left {
  0% {
      transform: translateX(0%); /* Empieza fuera de la vista a la derecha */
  }
  100% {
      transform: translateX(-100%); /* Se desplaza completamente hacia la izquierda */
  }
}

.banner-hover {
  opacity: 1;              /* Muestra el banner */
  transform: translateY(0); /* Efecto de desvanecimiento */
  pointer-events: auto;    /* Habilita la interacción al hacer hover */
}

.banner-hover ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

.banner-hover li {
  padding: 5px 0;
  margin-bottom: 40px;
  list-style: none;
  text-decoration: none;
}

.banner-hover small {
  margin-top: 2rem;
}

.banner h4 {
  font-size: 16px;
  text-wrap: wrap;
}

.banner span {
  font-size: 12px;
}

.banner {
  position: absolute;
  padding: 6px;
  background-color: #F0C936;
  color: white;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 300ms;
}

.banner:hover {
  color: white;

}

#showTable table {
  border-collapse: collapse;
  width: 100%;
}

#showTable th, td {
  padding: 8px;
  text-align: left;
  border: 1px solid black;
}

#showTable th {
  background-color: #f2f2f2; /* Color de fondo para las celdas de encabezado */
}

.bg_page {
  background-color: #F0C936 !important;
}

.convalidations-page strong h2 {
  color: black !important;
}

.convalidations-page table {
  background-color: white;
}

.propuesta-aceptada {
  background-color: #2d3e50;
  color: white;
}

.convalidation-red {
  background-color: #f91f1f;
  color: white !important;
}

.convalidation-yellow {
  background-color: #fff830;
}

.convalidation-grey {
  background-color: #c0c0c0;
}

.convalidation-blue {
  background-color: #F0C936;
  color: white;
}

.fc .fc-scrollgrid-section-sticky>* {
  position: inherit;
}

.fc-timegrid-event .fc-event-main {
  text-align: center;
  padding: 1px 1px 0;
  font-size: 16px;
}

.fc .fc-scrollgrid table {
  background-color: #03091E;
}
       /* Ocultar radios */
    .custom-radio input[type="radio"] {
      display: none;
    }

    /* Estilo personalizado para checkboxes simulados */
    .custom-radio input[type="radio"] + label {
        position: relative;
        padding-left: 30px; /* Ajusta el espacio a la izquierda según tu preferencia */
        cursor: pointer;
        display: inline-block;
        line-height: 1.5;
    }

    /* Estilo del checkbox simulado */
    .custom-radio input[type="radio"] + label:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 20px; /* Ajusta el tamaño del "checkbox" según tu preferencia */
        height: 20px;
        border: 2px solid #333; /* Color del borde del "checkbox" */
        background-color: #fff; /* Color de fondo del "checkbox" cuando no está seleccionado */
        border-radius: 4px; /* Bordes redondeados */
        transition: background-color 0.3s;
    }

    /* Cambia el fondo del "checkbox" cuando está seleccionado */
    .custom-radio input[type="radio"]:checked + label:before {
        background-color: #021A56; /* Color de fondo del "checkbox" cuando está seleccionado */
        border-color: #021A56; /* Color del borde del "checkbox" cuando está seleccionado */
    }

.chat-txt1 {
  background-color: #03091E !important;
}

.chat-txt2 {
  background-color: #051F56 !important;
}

.chat-txt3 {
  background-color: #a721a0 !important;
}

.guardar-modal {
  background-color: white !important;
  padding: 4vh 10vh;
  position: relative;
}

.entrega-error {
  display: none;
}

.entrega-error-def {
  display: none;
}

.tick-modal {
  font-size: 30px;
  color: green;
}

.notification {
  background-color: red;
  border-radius: 50%;
  padding: 5px 10px;
  color: white;
  font-weight: 800;
  position: absolute;
  left: -10px;
  top: -10px;
}

#contact-bar {
  display: none;
}

#calendar-format {
  display: none;
}

#list-format {
  display: flex;
}

#calendar-format-res {
  display: none;
}

#list-format-res {
  display: flex;
}

#horario-1 {
  display: none;
}

#horario-2 {
  display: inherit;
}

.basic-link {
  color: white;
}

.basic-link:hover {
  color: white;
}

.finalizarMatricula__input {
  width: 100%;
  color: white;
  border: 1px solid #F0C936;
  height: 3rem;
  font-size: 18px;
  padding-left: 1rem;
  background-color: transparent !important;
}

.finalizarMatricula__input option {
  color: black;
}

.w-full {
  width: 100%
}

/*CONSULTAS*/

.consultaChat-file-name {
  display: none;
  white-space: nowrap;
}

.consultaChat-input-file {
  cursor: pointer !important;
  position: relative;
  height: 100%;
}

.consultaChat-input-file input {
  position: absolute;
  left: 0;
  width: 100% !important;
  opacity: 0;
}

#crear-consulta-error {
  display: none;
}

.consultas-categorie-selected {
  background-color: #092743 !important;
  color: white !important;
}

.consultas {
width: 100%;
display: block;
position: relative;
}

.consultas-arrowBack img {
width: 1.5rem;
}

.consultas-msg-box {
min-height: 55vh;
max-height: 55vh;
overflow-y: scroll;
}

.consultas-list2 {
display: none;
}

.consultas-bottom {
max-height: 20rem !important;
overflow-y: scroll;
padding-bottom: 2.5rem;
}

.consultas-list {
max-height: 93vh;
padding-bottom: 2.5rem;
width: 100%;
}

.consultas__modal {
height: auto !important;
position: absolute !important;
top: 0 !important;
right: 0 !important;
left: inherit !important;
background-color: #F0C936;
color: white;
position: relative;
border: 1px solid white;
}

.consultas-modal-x {
position: absolute;
color: white;
top: 0.5rem;
right: 0.5rem;
cursor: pointer;
}

.consultas_file {
width: 2rem;
}

.crear-consulta {
display: none;
}

.generic-btn {
border: 1px solid #F0C936;
background-color: #F0C936;
padding: 1.5rem 0.8rem;
border-radius: 6px;
transition: 200ms;
font-size: 0.9rem;
font-weight: 700;
color: white;
height: 2.4rem;
width: 100%;
}

.generic-btn:hover {
border: 1px solid #F0C936;
background-color: transparent;
color: #F0C936;
}

.consulta-input-file {
border: 1px solid #F0C936;
width: 100%;
height: 3rem;
cursor: pointer;
position: relative;
border-radius: 8px;
}

.consulta-input-file p {
color: #F0C936;
font-weight: 600;
}

.consulta-input-file input {
position: absolute;
left: 0;
width: 100% !important;
opacity: 0;
}

.consultas-chat {
height: 93%;
}

.consultas-chat-btn {
padding: 0.5rem;
border: 1px solid #F0C936;
color: #F0C936;
border-radius: 20px;
background-color: #b2d5ea;
font-size: 0.8rem;
}

.consultas-input {
border: 0px;
outline: none;
font-size: 1.2rem;
color: #F0C936;
}

.consultas-textarea {
border: 0px;
outline: none;
font-size: 1.2rem;
width: 100%;
color: #F0C936;
}

.consultas-msg {
max-width: 80%;
padding: 1rem;
border-radius: 10px;
}

.msg-r {
background-color: #b5bdc7;
}

.msg-l {
background-color: white;
}

.consultas-x {
position: absolute;
top: 0.2rem;
right: 0.2rem;
font-size: 1rem;
color: #F0C936;
}

.consultas-modal {
border: 1px solid #F0C936;
background-color: #B2D5EA;
position: absolute;
bottom: 5rem;
right: 0rem;
display: flex;
width: 100vw;
}

.consultas-msgBox {
padding: 0.5rem 1rem;
position: relative;
width: 100%;
height: 6rem;
border-bottom: 1px solid silver;
border-top: 1px solid silver;
}

.border-green {
border-left: 0.6rem solid green;
}

.consulta-categorias-box {
max-width: 100vw;
overflow-x: scroll;
}

.consultas-msgBox-fecha {
position: absolute;
bottom: 0.2rem;
right: 0.2rem;
}

.crear-consulta-title {
font-size: 1.4rem;
}

.links img {
width: 1.5rem;
}

.consultas-search {
width: 100%;
height: 3rem;
}

.consultas-search-input {
border: 1px solid #F0C936;
padding-left: 1rem;
outline: none;
}

.consultas-search-btn {
background-color: #F0C936;
border-radius: 4px;
border: 0;
width: 3rem;
font-weight: 900;
}
/*CONSULTAS END*/

.fc-h-event {
  padding: 5px !important;
  background-color: #F0C936;
  border: 0px !important;
  cursor: pointer;
  height: 100% !important;
  width: 100% !important;
}

.fc-col-header-cell {
  border: 1px solid #2A92E7 !important;
  border-bottom: 0px !important;
}

.fc .fc-button-primary {
  background-color: #F0C936;
  border: 0px;
}

.fc-scrollgrid td {
  border: 1px solid #2A92E7 !important;
}

.fc-scrollgrid {
  border: 0px solid #2A92E7 !important;
}

.fc-day-today {
  background-color: #cfcfcf !important;
}

.fc-col-header-cell-cushion {
  color: #FFFFFF;
}

.fc-daygrid-day-number {
  color: #FFFFFF !important; /* Cambia el color a tu preferencia */
}

.fc-event {
  white-space: normal; /* Forzar salto de línea */
  overflow: hidden; /* Ocultar cualquier contenido que exceda el tamaño del evento */
  text-overflow: ellipsis; /* Mostrar "..." si el texto es demasiado largo */
}

/*PRACTICUM*/

.chat-search {
  width: 100%;
  height: 3rem;
}

.chat-box-2 {
  height: 100%;
}

.chat-search-input {
  padding: 0.6rem;
  border: 1px solid #0B3868;
  padding-left: 1rem;
  outline: none;
}

.chat-search-btn {
  background-color: #0B3868;
  border-radius: 4px;
  border: 0;
  min-width: 3rem;
  min-height: 3rem;
  max-height: 3rem;
  font-weight: 900;
  padding: 0px 1rem;
  color: white;
}

.whatshapp-box {
  border: 1px solid #021A56;
  background-color: #E0EEFD;
  padding: 1rem;
}

.msg-box {
  min-height: 60vh;
  padding: 1rem;
  background-color: #FFFFFF;
  height: 100%;
  overflow-y: scroll;
  margin: 1rem 0rem;
  border: 10px solid white;
}

.chat-box {
  height: 80vh;
}


.chat-list {
  max-height: 95%;
  overflow-y: scroll;
}

.chat {
  background-color: #FFFFFF;
  padding: 0.5rem;
  border-radius: 10px;
}

.msg {
  max-width: 80%;
  padding: 1rem;
  border-radius: 10px;
  word-wrap: break-word;
  white-space: pre-line;
}

.msg-r {
  background-color: #b5bdc7;
}

.msg-l {
  background-color: #E0EEFD;
}

/*ESTADO TFG*/

.modal-dialog {
  
  max-height: 90vh;
}

#defensa-autorizada-error {
  display: none;
}

#entrega-error {
  display: none;
}

#fecha-error {
  display: none;
}

#titulo-error {
  display: none;
}

#cita-error {
  display: none;
}

.calificar-error {
  display: none;
}

.dar-feedback-error {
  display: none;
}

.tfg-checkbox {
  width: 20px;
  height: 20px;
}

.tfg-checkbox:checked {
  width: 20px;
  height: 20px;
}

.tfg-arrow {
  width: 2rem;
  cursor: pointer;
}

.tfg-table {
  max-height: 80vh;
  overflow-y: scroll;
}

.estado-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #03091E;
  border-radius: 4px;
  padding: 1rem !important;
  color: white;
  width: 100%;
}

.estado_list {
  max-width: 100%;
  overflow-x: scroll;
}

.estado-table {
  border: 1px solid #2A92E7 !important;
  font-size: 10px;
  max-width: 100vw;
  overflow-x: scroll;
  color: white;
}

.estado-table body {
  color: black;
}

.estado-table td {
  border: 1px solid #2A92E7 !important;
}

.estado-table h4 {
  font-size: 8px !important;
}

/**/

.estado-table__td {
  border: 1px solid #2A92E7 !important;
}

.estado_status {
  border: 1px solid #2A92E7;
  background-color: #03091E;
}

.estado_entrega {
  border: 1px solid #2A92E7;
  background-color: #03091E;
  padding: 0.7rem;
}

.estado_col-R {
  
  padding: 0rem;
}

.estado_col-L {
  
  padding: 0rem;
}

.estado_status_top {
  color: #03091E;
  background-color: #F0C936;
  font-size: 12px;
}

.pass-modal {
  color: white !important;
  z-index: 5;
  z-index: 1060 !important;
  background-color: #03091E;
  width: 90vw;
  height: 50vh;
  top: 10vh;
  left: 5vw;
}

.pass-modal-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 30px;
  cursor: pointer;
}

a:not('.menu-principal') {
  color: #2A92E7 !important;
  font-weight: 300 !important;
  text-decoration: underline;
}

::-webkit-calendar-picker-indicator {
  filter: initial;
}

.modal-dialog2 {
  width: 95% !important;
  max-width: inherit !important;
}

.modal-content p {
  font-weight: 400 !important;
}

.modal-content {
  color: white !important;
  background-color: #0C1633;
}

.spinner {
  display: none;
  border: 4px solid #293133;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-left-color: transparent;
  animation: spin 1s linear infinite;
}

p {
  font-size: 1rem;
  font-weight: 200 !important;
}

small {
  font-weight: 200 !important;
}

#contact-bar p {
  font-weight: 500 !important;
}

a {
  font-weight: 400 !important;
}

.btn-secundario p {
  font-weight: 500 !important;
}

/*CALIFICACIONES CAMPUS*/

.dataTable {
  background-color: #03091E;
  border: 1px solid #2A92E7;
  color: white;
  margin-bottom: 0rem !important;
}

table.dataTable thead th, table.dataTable thead td {
  background-color: #03091E !important;
  color: white !important;
}

table.dataTable tbody tr {
  background-color: #03091E !important;
  color: white !important;
}

#notasDeAlumnos {
  background-color: #03091E;
  border: 1px solid #2A92E7;
  color: white;
  margin-bottom: 0rem !important;
}

#notasDeAlumnos td {
  border-top: 1px solid #2A92E7 !important;
}

#notasDeAlumnos th {
  border-top: 1px solid #2A92E7 !important;
}

#notasDeAlumnos tr {
  border-top: 1px solid #2A92E7 !important;
  border-bottom: 1px solid #2A92E7 !important;
  border-right: 1px solid #2A92E7 !important;
  border-left: 1px solid #2A92E7 !important;
}

#notasDeAlumnos thead th {
  border-bottom: 1px solid #2A92E7 !important;
}

.bg-primary {
  background-color: #051F56 !important;
}

.bg-info {
  background-color: #F0C936 !important;
}

/*PROFESORADO*/

.campusFile {
  display: none;
}

.campus-input-file {
  border: 1px solid #F0C936;
  width: 50%;
  height: 3rem;
  cursor: pointer;
  position: relative;
}

.campus-input-file p {
  color: white;
  font-weight: 600;
}

.campus-falta_p {
  font-size: 14px;
}

.campus-input-file input {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
}

#filtros-desk {
  display: none;
}

#filtros-mobile {
  display: flex;
}

.filtros {
  background-color: #03091E;
  border-radius: 6px;
  color: white;
  position: relative;
  cursor: pointer;
  width: 60%;
  color-scheme: dark;
}

.filtros-btn {
  background-color: #03091E;
  border-radius: 6px;
  color: white;
  padding: 8px 1rem;
}

.filtros-item {
 
  background-color: #03091E;
  color: white;
  padding: 12px;
  border-radius: 0px;
  width: 100%;
  overflow: hidden;
  max-width: 100%;
}

.filtros img {
  max-width: 1rem;
  width: 1rem;
  max-height: 1rem;
  height: 1rem;
}

.filtros-input {
  background-color: #03091E;
  border: 0;
  outline: none;
  color: white;
  color-scheme: dark
}

.filtros-input::placeholder {
  color: white;
}

.filtros-item img {
  max-width: 1rem;
  width: 1rem;
  max-height: 1rem;
  height: 1rem;
}

.filtros-box {
  position: absolute;
  top: 2.2rem;
  right: 0;
  width: 100%;
  display: none;
  border-radius: 6px;
  z-index: 2;
}

/*footer*/

.footer p {
  font-size: 12px !important;
}

.footer .nav-link span {
  font-size: 12px !important;
}

.footer span {
  font-size: 12px !important;
}

.contact-bar {
  position: fixed;
  top: 0;
  z-index: 20;
  background-color: #3A4A65;
  color: white;
  font-weight: 600;
  padding: 1rem 0;
}

.contact-bar img {
  width: 2rem;
}

.contact-bar p {
  font-size: 0.8rem;
}

.link-white {
  color: white;
  text-decoration: none;
  transition: 200ms;
}

.link-white:hover {
  color: white;
  opacity: 0.7;
  text-decoration: none;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.5rem;
}

.index-menu {
  position: fixed !important;
  z-index: 11;
  height: 90vh;
  background-color: #03091E;
  width: 100vw;
  bottom: 0 !important;
  padding: 0.5rem 2rem;
  padding-bottom: 2rem;
  overflow-y: scroll;
}

.index-menu li {
  border-bottom: 2px solid #6E6F78;
  font-size: 1.2rem;
}

.btn {
  border-radius: 4px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-toggler {
  padding-right: 0;
}

.opacity100 {
  opacity: 1 !important;
}

.links-white {
  text-decoration: none !important;
  color: white;
}

.links-white:hover {
  color: white;
}

/* INICIO SESION */

.login-container p {
  font-weight: 500 !important;
}

#error-phone {
  display: none;
}

#error-dni_email {
  display: none;
}

.login-container h3 {
  font-size: 1.2rem;
}

.login-container h1 {
  font-size: 1.4rem;
}

/*PORTAL USUARIO*/

.campus-page {
  background-color: #111E3C;
  max-height: 100vh;
  height: 100%;
  min-height: 100vh;
  overflow-y: scroll;
  color: white;
}

.campus-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #03091E;
  border-radius: 4px;
  padding: 28px 36px !important;
  color: white;
  width: 100%;
}

.campus-card-informative {
  background-color: white !important;
  color: black !important;
}

.campus-btn {
  width: 100% !important;
}

.text-ceie {
  color: #F0C936 !important;
  
}

.text-ceie:hover {
  text-decoration: none;
}

.campus-btn-secondary {
  background-color: transparent;
  color: #F0C936 !important;
  border: #F0C936 1px solid;
  outline: none;
  font-weight: 700;
  border-radius: 4px;
}

.campus-arrow-back {
  width: 2rem;
}

.campus-page p {
  font-weight: 400 !important;
}

.campus-page a {
  font-weight: 400 !important;
}

.portal-link {
  color: #F0C936;
}

.ceie-link {
  color: #FFFFFF;
  text-decoration: none;
}

.ceie-link:hover {
  color: #2A92E7;
  text-decoration: none;
}

.access-btn {
  display: none;
}

#header-profile-res-close {
  display: none;
}

#header-profile-res-menu {
  display: block;
}

#portal-profile {
  display: block;
}

#portal-payments {
  display: none;
}

#portal-formations {
  display: none;
}

#portal-curso {
  display: none;
}

.header-profile {
  cursor: pointer;
}

.header-profile-img {
  height: 2.5rem;
  min-width: 2.5rem;
  width: 2.5rem;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
}

.select-option-color {
  background-color: #021A56 !important;
}

.portal-user {
  background-color: #121F3D;
}

.portal-user__openTab-res {
  border: 2px solid #2186a7;
  height: calc(100vh - 56px);
  position: fixed;
  top: 56px;
  width: 100vw;
  background-color: #03091E;
  z-index: 2;
  display: none;
}

.openTab-profile-img {
  height: 5.5rem;
  width: 5.5rem;
  border-radius: 50%;
  background-image: url('https://definicion.de/wp-content/uploads/2019/07/perfil-de-usuario.png');
  background-position: center;
  background-position-x: 55%;
  background-position-y: 30%;
}

.portal-user__blueLine {
  height: 6px;
  border-radius: 2px;
  background-color: #2A92E7;
  width: 25%;
  margin: 0px auto;
  margin-bottom: 1rem;
}

.portal-user__navbar-asignaturas {
  background-color: #0C1633;
  height: 100vh;
  padding-top: 10vh;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: none;
}

.portal-user__navbar-asignaturas p {
  font-weight: 400 !important;
}

.portal-user__navbar {
  background-color: #0C1633;
  height: 100vh;
  padding-top: 10vh;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: none;
  color: #FFFFFF;
}

.portal-user__navbar p {
  font-weight: 400 !important;
}

.portal-user__navbar-responsive {
  background-color: #03091E;
  height: 94%!important;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: none;
}

.portal-user__navbar-responsive p {
  font-weight: 400 !important;
}

.portal-user__navbar-responsive-option {
  cursor: pointer;
  border-bottom: 2px solid silver;
}

.portal-user__navbar-top {
  height: 70%;
  border-bottom: 1px solid #F3F3F3;
}

.portal-user__navbar-responsive-icon {
  width: 12%;
}

.portal-user__navbar-responsive-iconLink {
  width: 25%;
  margin-right: 0.2rem;
}

.portal-user-link-icon {
  width: 12%;
  margin-right: 1rem;
}

.portal-user-container {
  padding: 0px 1rem;
  padding-top: 10vh;
  min-height: 100vh;
}

.portal-user__box {
  background-color: #03091E;
  width: 100%;
}

.portal-user-container h2 {
  font-size: 1.5rem;
}

.portal-user__box h4 {
  font-size: 1.2rem;
  text-align: center;
}

.portal-user__box-profileFoto {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcST8OntGXNOOKGKhAHGCxsTPLDDqtiSOfZ6iRh_hs6dq80jf0xNIIjbBIy6GpttDXLjOfI&usqp=CAU');
  background-position: center;
  background-position-x: 55%;
  background-position-y: 30%;
}

.portal-user__card {
  background-color: #03091E;
  width: 100%;
  margin-right: 0rem;
  min-height: 600px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.portal-user__card-img {
  height: 12rem;
  background-position: center;
  background-size: cover;
}

.portal-user__btn {
  background-color: #F0C936;
  border-color: #F0C936;
  font-size: 14px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  width: 100%;
}

.header-profile-res-close {
  font-size: 2.5rem;
}

.header-profile-res-menu {
  font-size: 2rem;
}

.portal-user__openTab {
  display: none;
  position: absolute;
  top: 66px;
  right: 0;
  width: 30%;
  background-color: #03091E;
  border: 1px solid #2A92E7;
}

@media screen and (max-width: 1200px) and (min-width: 990px) {
  #filtros-desk {
    display: flex;
  }
  
  #filtros-mobile {
    display: none;
  }

  .campus-btn-secondary {
    background-color: transparent;
    color: #F0C936 !important;
    border: #F0C936 1px solid;
    outline: none;
    font-weight: 700;
    border-radius: 4px;
  }

/*MATRICULATE*/

.ceie-link {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

.modal-content span {
  opacity: 0.8;
}

.modal {
  height: auto;
}

/*PORTAL USUARIO*/

.btn-login-method {
  font-size: 0.8rem !important;
}

.portal-user__blueLine {
  height: 6px;
  border-radius: 2px;
  background-color: #2A92E7;
  width: 10%;
  margin: 0px 0px;
  margin-bottom: 1rem;
}

.portal-user__navbar-responsive {
  display: none;
}

.portal-user__navbar {
  background-color: #0C1633;
  min-height: 100vh;
  padding-top: 10vh;
  position: initial;
  bottom: 0;
  left: 0;
  display: block;
  color: #FFFFFF;
}

.portal-user__navbar-top {
  height: 60%;
}

.portal-user__navbar-option {
  cursor: pointer;
}

.portal-user__navbar-option-icon {
  width: 18%;
}

.portal-user-container {
  padding: 0px 5rem;
  padding-top: 10vh;
  min-height: 100vh;
  max-height: 88vh;
  overflow-y: scroll;
}

.portal-user-container h2 {
  font-size: 2rem;
}

.portal-user__box h4 {
  font-size: 1.5rem;
  text-align: left;
}

.portal-user__box {
  background-color: #03091E;
  width: 70%;
}

.portal-user__box-profileFoto {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcST8OntGXNOOKGKhAHGCxsTPLDDqtiSOfZ6iRh_hs6dq80jf0xNIIjbBIy6GpttDXLjOfI&usqp=CAU');
  background-position: center;
  background-position-x: 55%;
  background-position-y: 30%;
}

.portal-user__card {
  background-color: #03091E;
  width: 520px;
  margin-right: 3rem;
  min-height: 600px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}



.portal-user__btn {
  background-color: #F0C936;
  border-color: #F0C936;
  font-size: 14px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  width: 40%;
}

.portal-user__openTab {
  display: none;
  position: absolute;
  top: 66px;
  right: 0;
  width: 30%;
  background-color: #03091E;
  border: 1px solid #2A92E7;
}
/*PORTAL USUARIO END */

  .menu-mobile {
    height: 8vh;
    width: 100vw;
    padding: 0px !important;
  }

  .menu-mobile img {
    width: 15vw;
    height: auto;
  }

  .header-profile-img {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem !important;
  }

  .header-profile-res-menu {
    font-size: 3rem;
  }

  .header-profile-res-close {
    font-size: 3rem;
  }

  .portal-user__openTab-res {
    height: calc(100vh - 8vh);
    position: fixed;
    top: 8vh;
    font-size: 2rem;
  }

  .portal-user__navbar-responsive {
    height: 92.5vh;
  }

  .portal-user__navbar-responsive-iconLink {
    width: 15%;
    margin-right: 1rem;
  }

  /* INICIO-SESION */

  .login-container {
    padding-top: 5vh;
  }

  .login-container label {
    font-size: 1.2rem;
  }

  .login-container button {
    font-size: 1.2rem;
  }

  .login-container p {
    font-size: 1.2rem;
  }

  .login-container input {
    font-size: 1.2rem;
  }

  .login-container h1 {
    font-size: 1.8rem;
  }

  .login-container h3 {
    font-size: 1.3rem;
  }

  .btn-principal-home {
    font-size: 0.8rem;
    
  }

  /*PROFESORADO*/
.profesorado_box {
  width: 45% !important;
  background-color: #03091e;
}

.profesorado_img {
  height: auto;
}

.profesorado_box img {
  max-width: 100%;
  height: 25vh;
  width: 20vh;
  max-height: 25rem;
  margin: 2rem 4rem;
}
}

/*PORTAL USUARIO END */
@media screen and (min-width: 1200px) {
/*NOTICIAS*/
.banner-hover {
  display: none; /* Mantén el banner en el DOM para animaciones */
  position: fixed;
  top: 7%; /* Ajusta según sea necesario */
  bottom: 0px;
  width: 30vw;         
  background-color: rgba(0, 0, 0, 0.8); 
  color: white;
  padding: 14px;
  z-index: 11;
  opacity: 0;              /* Oculto inicialmente */
  transform: translateY(-100px); /* Empieza fuera de la vista */
  transition: opacity 0.7s ease, transform 0.7s ease; /* Transición de desvanecimiento */
  pointer-events: none;  
  right: 0;
}

.icono-noticias {
  position: absolute;
  top: 12vh;
  right: 2rem;

  background-color: #F0C936;
  color: white;
  border-radius: 10px;
  padding: 1rem;
  z-index: 11;
  display: flex;           /* Activa Flexbox */
  justify-content: center; /* Centra el ícono horizontalmente */
  align-items: center; 
  transition: 100ms;
  cursor: pointer;
} 
.gracias-img {
  width: 70%;
}

.modal-dialog2 {
  max-width: 75% !important;
}

.estado-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #03091E;
  border-radius: 4px;
  padding: 1rem !important;
  color: white;
  width: 100%;
}

.portal-user__navbar-asignaturas {
  background-color: #0C1633;
  height: 100vh;
  padding-top: 10vh;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
}

.portal-user__navbar-asignaturas p {
  font-weight: 400 !important;
}

::-webkit-calendar-picker-indicator {
  filter: initial;
}
  
#filtros-desk {
  display: flex;
}

#filtros-mobile {
  display: none;
}

.filtros-item {
  width: fit-content;
}
.campus-checkbox {
  width: 1.5rem;
  height: 1.5rem;
}
.formacion-navbar {
  overflow-x: inherit;
  max-width: 100%;
}

.formacion-navbar li {
  min-width: inherit;
  width: inherit;
}

/*PROFESORADO*/
.profesorado_box {
  width: 48% !important;
  background-color: #03091e;
}

.profesorado_img {
  height: auto;
}

.profesorado_box img {
  max-width: 100%;
  height: 25vh;
  width: 20vh;
  max-height: 25rem;
  margin: 2rem 4rem;
}

/*PORTAL USUARIO*/

.campus__docente {
  position: absolute;
  bottom: 36px;
  right: 38px;
}

.campus-page {
  background-color: #111E3C;
  max-height: 100vh;
  height: 100%;
  min-height: 100vh;
  overflow-y: scroll;
  color: white !important;
}

body::-webkit-scrollbar {
  display: none;
}

.campus-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #03091E;
  border-radius: 4px;
  padding: 28px 36px !important;
  color: white;
  width: 100%;
}

.campus-btn {
  width: 19% !important;
}

.campus-btn-secondary {
  background-color: transparent;
  color: #F0C936 !important;
  border: #F0C936 1px solid;
  outline: none;
  font-weight: 700;
  border-radius: 4px;
}

.campus-arrow-back {
  width: 2rem;
}

.campus-page p {
  font-weight: 400 !important;
}

.campus-page a {
  font-weight: 400 !important;
}

.portal-user__blueLine {
  height: 6px;
  border-radius: 2px;
  background-color: #2A92E7;
  width: 10%;
  margin: 0px 0px;
  margin-bottom: 1rem;
}

.portal-user__navbar-responsive {
  display: none;
}

.portal-user__navbar {
  background-color: #0C1633;
  height: 100%;
  padding-top: 10vh;
  position: initial;
  bottom: 0;
  left: 0;
  display: block;
  color: #FFFFFF;
}

.portal-user__navbar-option {
  cursor: pointer;
}

.portal-user__navbar-option-icon {
  width: 18%;
}

.portal-user-container {
  padding: 0px 5rem;
  padding-top: 10vh;
  min-height: 100vh;
  max-height: 88vh;
  overflow-y: scroll;
}

.portal-user-container h2 {
  font-size: 2.5rem;
}

.portal-user__box h4 {
  font-size: 1.5rem;
  text-align: left;
}

.portal-user__box {
  background-color: #03091E;
  width: 70%;
}

.portal-user__box-profileFoto {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcST8OntGXNOOKGKhAHGCxsTPLDDqtiSOfZ6iRh_hs6dq80jf0xNIIjbBIy6GpttDXLjOfI&usqp=CAU');
  background-position: center;
  background-position-x: 55%;
  background-position-y: 30%;
}

.portal-user__card {
  background-color: #03091E;
  width: 520px;
  margin-right: 3rem;
  min-height: 600px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.portal-user__btn {
  background-color: #F0C936;
  border-color: #F0C936;
  font-size: 14px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  width: 40%;
}

.portal-user__openTab {
  display: none;
  position: absolute;
  top: 66px;
  right: 0;
  width: 20%;
  background-color: #03091E;
  border: 1px solid #2A92E7;
}
/*PORTAL USUARIO END */
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.content {
  padding-top: 100px;
  background-color: #121F3D;
  color: white;
}

/* HEADER ELEMENTS */
.menu-mobile {
  z-index: 100;
}

.menu-desk {
  display: none;
  z-index: 100;
}

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

  /*CONSULTAS*/

.consultas {
  width: 100%;
  display: block;
  position: relative;
}

.consultas-arrowBack img {
  width: 1.5rem;
}

.consultas-msg-box {
  min-height: 55vh;
  max-height: 65vh;
  overflow-y: scroll;
}

.consultas-list2 {
  display: block;
  height: 93vh;
  width: 100%;
}

.consultas-bottom {
  max-height: 35rem !important;
  overflow-y: scroll;
  padding-bottom: 2.5rem;
}

.consultas-list {
  max-height: 93vh;
  padding-bottom: 2.5rem;
  width: 100%;
}

.consultas__modal {
  
  height: auto !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: inherit !important;
  background-color: #F0C936;
  color: white;
  position: relative;
  border: 1px solid white;
}

.consultas-modal-x {
  position: absolute;
  color: white;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
}

.consultas_file {
  width: 2rem;
}

.crear-consulta {
  width: 100%;
  display: block;
  position: relative;
  display: none;
}

.generic-btn {
  border: 1px solid #F0C936;
  background-color: #F0C936;
  padding: 1.5rem 0.8rem;
  border-radius: 6px;
  transition: 200ms;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  height: 2.4rem;
  width: 100%;
}

.generic-btn:hover {
  border: 1px solid #F0C936;
  background-color: transparent;
  color: #F0C936;
}

.consulta-input-file {
  border: 1px solid #F0C936;
  width: 100%;
  height: 3rem;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
}

.consulta-input-file p {
  color: #F0C936;
  font-weight: 600;
}

.consulta-input-file input {
  position: absolute;
  left: 0;
  width: 100% !important;
  opacity: 0;
}

.consultas-chat {
  
}

.consultas-chat-btn {
  padding: 0.5rem;
  border: 1px solid #F0C936;
  color: #F0C936;
  border-radius: 20px;
  background-color: #b2d5ea;
  font-size: 0.8rem;
}

.consultas-input {
  border: 0px;
  outline: none;
  font-size: 1.2rem;
  color: #F0C936;
}

.consultas-textarea {
  border: 0px;
  outline: none;
  font-size: 1.2rem;
  width: 100%;
  color: #F0C936;
}

.consultas-msg {
  max-width: 80%;
  padding: 1rem;
  border-radius: 10px;
}

.msg-r {
  background-color: #b5bdc7;
}

.msg-l {
  background-color: white;
}

.consultas-x {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  font-size: 1rem;
  color: #F0C936;
}

.consultas-modal {
  border: 1px solid #F0C936;
  background-color: #B2D5EA;
  position: absolute;
  bottom: 5rem;
  right: 0rem;
  display: flex;
  width: 100vw;
}

.consultas-msgBox {
  padding: 0.5rem 1rem;
  position: relative;
  width: 100%;
  height: 6rem;
  border-bottom: 1px solid silver;
  border-top: 1px solid silver;
}

.border-green {
  border-left: 0.6rem solid green;
}

.consulta-categorias-box {
  max-width: 100vw;
  overflow-x: scroll;
}

.consultas-msgBox-fecha {
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;
}

.crear-consulta-title {
  font-size: 1.4rem;
  color: #F0C936;
}

.links img {
  width: 1.5rem;
}

.consultas-search {
  width: 100%;
  height: 3rem;
}

.consultas-search-input {
  border: 1px solid #F0C936;
  padding-left: 1rem;
  outline: none;
}

.consultas-search-btn {
  background-color: #F0C936;
  border-radius: 4px;
  border: 0;
  width: 3rem;
  font-weight: 900;
}
/*CONSULTAS END*/

  /*PRACTICUM*/

  input:disabled {
    background-color: #f0f0f0; /* Cambia el color de fondo a un gris más claro (#f0f0f0) cuando está deshabilitado */
  }

  .evaluacion__input {
    border: 1px solid #F0C936;
    border-radius: 0px;
    height: 3rem;
    padding-left: 1rem;
  }

  .evaluacion__checkbox {
    font-size: 2rem;
  }

  .chat-search {
    width: 100%;
    height: 3rem;
  }

  .chat-box-2 {
    height: 100%;
    background-color: #212529;
    padding: 2rem;
  }

  .chat-search-input {
    padding: 0.6rem;
    border: 1px solid #0B3868;
    padding-left: 1rem;
    outline: none;
  }

  .chat-search-btn {
    background-color: #F0C936;
    border-radius: 4px;
    border: 0;
    min-width: 3rem;
    min-height: 3rem;
    max-height: 3rem;
    font-weight: 900;
    padding: 0px 1rem;
    color: white;
  }

  .whatshapp-box {
    border: 1px solid #021A56;
    background-color: #E0EEFD;
    padding: 1rem;
  }

  .msg-box {
    padding: 1rem;
    background-color: #FFFFFF;
    height: 100%;
    overflow-y: scroll;
    margin: 1rem 0rem;
    min-height: 60vh;
  }

  .chat-box {
    height: 80vh;
  }


  .chat-list {
    max-height: 95%;
    overflow-y: scroll;
  }

  .chat {
    background-color: #FFFFFF;
    padding: 0.5rem;
    border-radius: 10px;
  }

  .msg {
    max-width: 80%;
    padding: 1rem;
    border-radius: 10px;
    word-wrap: break-word;
    white-space: pre-line;
  }

  .msg-r {
    background-color: #b5bdc7;
  }

  .msg-l {
    background-color: #212529;
    color: #FFFFFF;
  }

  .filtros {
    border-radius: 6px;
    color: white;
    position: relative;
    cursor: pointer;
    width: 70%;
    color-scheme: dark;
    background-color: transparent;
  }

  .filtros-input {
    background-color: #293133;
    border: 0;
    outline: none;
    color: white;
    color-scheme: dark;
    width: auto !important;
  }

  .filtros {
    border-radius: 6px;
    color: white;
    position: relative;
    cursor: pointer;
    width: 70%;
    color-scheme: dark;
    background-color: transparent;
  }

  .filtros-input {
    
    border: 0;
    outline: none;
    color: white;
    color-scheme: dark;
    width: auto !important;
  }

  /*ESTADO TFG*/

.estado_status {
  border: 1px solid #2A92E7;
  background-color: #03091E;
}

.estado_entrega {
  border: 1px solid #2A92E7;
  background-color: #03091E;
  padding: 0.7rem;
}

.estado_col-R {
  
}

.estado_col-L {
  
}

.estado_status_top {
  color: #03091E;
  background-color: #F0C936;
  font-size: 16px;
}

.estado-table {
  border: 1px solid #2A92E7 !important;
  font-size: 14px;
  max-width: 100vw;
  overflow-x: scroll;
  color: white;
  background-color: #03091E;
}

.estado-table button {
  margin: auto;
}

.estado-table th {
  text-align: center;
}

.estado-table td {
  border: 1px solid #2A92E7 !important;
  text-align: center;
}

.estado-table h4 {
  font-size: 18px !important;
}

/**/

.estado-table__td {
  border: 1px solid #2A92E7 !important;
}

  .pass-modal {
    color: white !important;
    z-index: 5;
    z-index: 1060 !important;
    background-color: #03091E;
  }

  .menu-mobile {
    display: none;
  }

  .menu-desk {
    display: block;
  }

  .menu-desk .btn-principal-login {
    font-size: initial;
    line-height: initial;
  }

  .menu-desk form.input-group {
    width: initial;
  }
}

.menu-principal {
  background-color: #121F3D;
  color: #FFFFFF;
}

.btn-principal-login {
  background-color: #F0C936;
  border-color: #F0C936;
  padding: 0.5rem 1rem;
  font-size: 11px;
  font-weight: normal;
  border-radius: 6px !important;
}

.nav-link {
  color: #FFFFFF;
}
.nav-item:hover {
  background: #fcbe08;
  border-radius: 5px;
}
.nav-item:hover .nav-link {
    color: #212529 !important;
}

.navbar-toggler-icon-custom {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-close-icon {
  display: none;
  width: 1.6rem;
  background-image: url("/img/iconos/close.svg");
}

.input-search, .input-search:focus, .input-email, .input-email:focus {
  background-color: #03091E;
  color: #FFFFFF;
  border-color: #2A92E7;
}

.btn-principal-home {
  background-color: #F0C936;
  border-color: #F0C936;
  box-shadow: none;
  width: 100%;
  border-radius: 4px !important;
  padding: 16px 22px;
  font-size: 14px;
  border: 0px;
}

.btn-principal-home a {
  color: #03091E;
  font-weight: bold;
  text-decoration: none;
}

/* FOOTER ELEMENTS */
.footer p {
  font-size: 14px !important;
}

.footer .nav-link span {
  font-size: 14px !important;
}

.footer span {
  font-size: 14px !important;
}

.footer {
  background-color: #03091e;
  color: #FFFFFF;
  padding: 39px 24px;
}

.footer .row {
  max-width: 960px;
}

.footer-part1 {
  text-align: left;
}

.footer-part1 a {
  font-size: 31px;
  color: #FFFFFF;
}

.footer-part2 ul {
  list-style-type: none;
}

.footer-part2 ul li:nth-child(1) {
  border-left: solid 3px #2a92e7;
  font-size: 12px;
  margin-bottom: 16px;
}

.footer-part2 ul li:nth-child(2) {
  border-left: solid 3px #ff5a5a;
  font-size: 12px;
  margin: 16px 0;
}

.footer-part2 ul li:nth-child(3) {
  border-left: solid 3px #61c9ab;
  font-size: 12px;
  margin-bottom: 16px;
}

.footer-part2 ul li a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-part2 ul li a span {
  margin-left: 7px;
  width: 100%;
}

.footer-part2 ul li a i {
  font-size: 12px;
}

.footer-part3 iframe {
  border-color: transparent;
  height: 39px;
}

.footer-part4 {
  border-top: #BCCFF1 solid 1px;
}

.copyright {
  min-height: 56px;
  padding: 0.5rem 1rem;
}

.copyright span {
  display: block;
  min-height: 40px;
  padding: 0.5rem 1rem;
}

/* ERROR 404 */
.error404-container {
  background-color: #121F3D;
  color: #FFFFFF;
  flex: 1 1 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* INICIO SESION */
/* Login */
.login-container {
  background-color: #121F3D;
  color: #FFFFFF;
  flex: 1 1 auto;
  display: flex;
  width: 100vw;
  min-height: 100vh;
}

.login-container .container {
  margin-top: 6vh;
  background-color: #0C1633;
}

.login-container .login-form-dni {
  display: none;
}

.login-container .login-form-code {
  display: none;
}

.login-container .form-group {
  background-color: #03091e;
  color: #BCCFF1;
  font-weight: bold;
  border: #2A92E7 1px solid;
  border-radius: 0.25rem;
}

.login-container .form-group input {
  background-color: #03091e;
  color: #FFFFFF;
  border-color: #03091e;
  box-shadow: none;
}

.login-container .login-methods {
  border-top: #FFFFFF 1px solid;
}

.btn-login-method {
  background-color: transparent;
  color: #2A92E7!important;
  border: #2A92E7 1px solid;
  box-shadow: none!important;
}

.btn-secundario {
  background-color: transparent;
  color: #F0C936!important;
  border: #F0C936 1px solid;
  box-shadow: none!important;
  width: 100%;
  font-size: 14px;
}

.btn-secundario a {
  color: #F0C936!important;
  font-weight: bold;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

/* Google login */
.google-login-container {
  display: none;
  flex: 1 1 auto;
}