/*Scrollbar design*/
.barra-diseño::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

.barra-diseño::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.barra-diseño::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(0deg, #69d6f0 0%, #42a8c2 25%, #247c93 50%, #0f5365 75%, #032b36 100%);
}

.programaacademico-titulo {
  text-align: center;
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 108.611%;
  background: linear-gradient(90deg, #03547E 0%, #01558C 51%, #0699D6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 30px;
  padding-bottom: 43px;
}

.programaacademico-container {
  max-width: 1382px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  gap: 32px;
}

.programaacademico-ladoizquierdo {
  max-width: 198px;
  width: 100%;
  margin-left: 48px;
  margin-bottom: 30px;
}

.programaacademico-buscar {
  width: 100%;
  height: 38px;
  flex-shrink: 0;
  border-radius: 30px;
  background: #F9F9F9;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-in-out;
}

.programaacademico-filtro {
  max-width: 198px;
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
  background: #F9F9F9;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: border-radius 0.3s linear ;
}

.programaacademico-filtro-titulo {
  width: 87%;
  height: 38px;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 21px;
  color: #545454;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.programaacademico-filtro-campos {
  height: 32px;
  padding-left: 21px;
  padding-right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #747474;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-top: 1px solid #E9E9E9;
  cursor: pointer;
}


.filtro-datos {
  height: 0;
  overflow: hidden;
  transition: height var(--transition-duration) ease-out, opacity var(--transition-duration) ease-out;
  opacity: 0;
}

.filtro-datos.mostrar {
  opacity: 1;
  transition: height var(--transition-duration) ease-in, opacity var(--transition-duration) ease-in;
}

.programaacademico-filtro-horario {
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #747474;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-top: 1px solid #E9E9E9;
}

.programaacademico-ladoderecho {
  width: 100%;
  gap: 16px;
  padding-bottom: 30px;
}

.programaacademico-tarjeta {
  width: 264px;
  height: 436px;
  border-radius: 18px;
  border: 1px solid #C6C6C6;
  background: #FFF;
  transition: box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.programaacademico-tarjeta:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.programaacademico-tarjeta-image {
  height: 169px;
  padding-top: 10px;
}

.programaacademico-tarjeta-titulo {
  width: 242px;
  height: 80px;
  flex-shrink: 0;
  margin-top: 15px;
  color: #00548E;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  overflow-y: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.programaacademico-tarjeta-nombre {
  width: 232px;
  height: 32px;
  flex-shrink: 0;
  color: #00548E;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 6px;
}

.linea {
  width: 221px;
  height: 1px;
  background: #00548E;
}

.programaacademico-tarjeta-datos {
  width: 221px;
  color: #747474;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 9px;
  padding-bottom: 15px;
}

.programaacademico-tarjeta-boton {
  display: inline-flex;
  height: 28px;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #F07F1E;
  color: white;
}

@media (max-width: 770px) {
  .programaacademico-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .programaacademico-ladoizquierdo {
    max-width: 469px;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .programaacademico-filtro {
    border-radius: 30px;
  }

  .programaacademico-titulo {
    padding-top: 17px;
    padding-bottom: 16px;
  }

  .programaacademico-filtro-campos {
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }

  /*Efecto de transicion para filtro en tablet*/
  .transition-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .transition-visible {
    max-height: 1000px;
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .programaacademico-ladoizquierdo {
    padding: 0 15px;
  }
}

/*modal para confirmar correo*/
.modal {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 width: 459px;
 height: 245px;
 padding: 20px;
 box-shadow:  0px 0px 10px rgba(0, 0, 0, 0.20);
 background: #F9F9F9;
}

.custom-input {
  width: 400px;
  height: 38px;
  border-radius: 30px;
  border: none;
  box-shadow:  0px 0px 10px rgba(0, 0, 0, 0.20);
  font-size: 16px;
  outline: none;
  transition: box-shadow 0.3s ease;
  margin: 16px 0;
}
