.acordeon-content {
  display: none;
}

.text-uppercase {
  text-transform: uppercase;
}

.footer {
  background: linear-gradient(to right, #b8181e, #ff801e);
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 24px;
  width: 100%;
}

.footer a {
  color: white;
}

.footer img {
  width: 35px;
}

.footer img:hover {
  opacity: 0.5;
}

.footer a:hover {
  color: #19407C;
}

/* label{
color: white;
font-weight:500;
font-size: 18px;

} */
.text_orange {
  color: #ff801e;
  font-weight: 600;

}

.color_orange {
  background-color: #ff801e !important;
  color: white !important;
}

.color_orangebtn {
  background-color:#ff801e;
  color: white;
}

.btn-check+.color_orangebtn {
  color: #ff801e;
  border-color: #ff801e;
}

/* Cuando el botón está seleccionado */
.btn-check:checked+.color_orangebtn {
  color: #fff;
  /* Texto blanco */
  background-color: #ff801e;
  border-color: #ff801e;
}

.color_azul {
  background-color: #19407C;
  color: white;
}

.bordes_superiores {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;

}

.link {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
}

.encabezado_formularios {
  display: flex;
  background-color: #19407C;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 2%;

}

body {
  width: 100%;
  height: 100%;
  margin: 0px;
  color: white;
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  background-color: rgb(230, 230, 230, 0.7);

}

.loader {
  border: 16px solid #3498db;
  /* Light grey */
  border-top: 16px solid #C70039;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 9999;
  animation: spin 2s linear infinite;
  display: none;
}

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

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

header {
  background: linear-gradient(to right, #b8181e, #ff801e);
  box-shadow: 0px 10px 10px rgb(0, 0, 0, 0.2);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
}

.header_transicion {
  background: linear-gradient(to right, #b8181e, #ff801e);
  box-shadow: 0px 10px 10px rgb(0, 0, 0, 0.2);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
}

/* Contenedor del header con flexbox */
.header-container {
  display: flex;
  justify-content: space-between;
  /* Separa los elementos a los extremos */
  align-items: center;
  /* Centra verticalmente */
  width: 100%;
  height: 100%;
}

/* Estilo para la imagen izquierda */
.logo-izquierdo {
  width: 18%;
  max-width: 200px;
  /* Límite máximo */
  height: auto;
}

/* Estilo para la imagen derecha */
.logo-derecho {
  width: 18%;
  max-width: 200px;
  /* Límite máximo */
  height: auto;
}

.titulos {
  margin-top: 2%;
  margin-left: 1%;
  background-color: #19407C;
  width: 100%;
  padding: 1%;
  box-shadow: -15px 5px 10px rgb(0, 0, 0, 0.3);
  color: white;
}

.titulos h1 {
  font-weight: 400;

}

#error_ingreso {
  color: red;
  font-weight: 800;
  margin-bottom: 10px;
}

p {
  color: black;
}

.div_tabla {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
}

.tabla {
  margin-top: 2%;
  margin-bottom: 2%;
  margin-left: 2%;
  margin-right: 2%;
  width: 97%;
  border-collapse: collapse;
}

.tabla_encabezado {
  background-color: #19407C;
  color: white;
}

.fila_impar {
  background-color: #DBDBDB;
}

.celda_encabezados {
  padding: 14px;
  border: solid 1px black;
  margin: 0;
  width: 12.5%;
  text-align: center;
}

.tabla td {
  text-align: center;
  padding-bottom: 10px;
  padding-top: 10px;
  border: solid 1px black;
}

#gestiones {
  color: black;
}

.div_boton_gestiones {
  display: flex;
  justify-content: end;
  margin-top: 6%;
  margin-bottom: 6%;

}

#gestiones_texto {
  color: black;
  display: none;
  margin-left: 2%;
  margin-right: 2%;
}

.fondo_azul_formularios {
  background-color: #1c4767;
  color: white;
}

.fondo_blanco_formularios {
  color: black;
  background-color: white;
}