@charset "UTF-8";
/*
// Fuentes
$fuente-principal: 'Outfit', sans-serif;
$fuente-principal-color:  #39433B;

// Tamaño de Media Queries
$telefono: 480px;
$tablet: 768px;
$desktop: 1024px;
$xl_desktop: 1200px;

// Colores
$azul: #007df4;
$secundario: #00c8c2;
$azul:#49c3e9;
*/
/** Media Queries **/
/*FERNANDO*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
  height: 100%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  color: #39433B;
  background: rgb(226, 242, 248) no-repeat fixed center;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(246, 254, 194)), color-stop(9%, rgb(246, 254, 194)), color-stop(100%, rgb(31, 217, 192)));
  background: linear-gradient(45deg, rgb(246, 254, 194) 0%, rgb(246, 254, 194) 9%, rgb(31, 217, 192) 100%) no-repeat fixed center;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f6fec2", endColorstr="#1fd9c0", GradientType=1 ) no-repeat fixed center;
  /*
  background: rgba(226,242,248,1) no-repeat fixed center;
  background: -moz-linear-gradient(45deg, rgba(226,242,248,1) 0%, rgba(226,242,248,1) 25%, rgba(73,195,233,1) 100%) no-repeat fixed center;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(226,242,248,1)), color-stop(25%, rgba(226,242,248,1)), color-stop(100%, rgba(73,195,233,1))) no-repeat fixed center;
  background: -webkit-linear-gradient(45deg, rgba(226,242,248,1) 0%, rgba(226,242,248,1) 25%, rgba(73,195,233,1) 100%) no-repeat fixed center;
  background: -o-linear-gradient(45deg, rgba(226,242,248,1) 0%, rgba(226,242,248,1) 25%, rgba(73,195,233,1) 100%) no-repeat fixed center; 
  background: -ms-linear-gradient(45deg, rgba(226,242,248,1) 0%, rgba(226,242,248,1) 25%, rgba(73,195,233,1) 100%) no-repeat fixed center;
  background: linear-gradient(45deg, rgba(226,242,248,1) 0%, rgba(226,242,248,1) 25%, rgba(73,195,233,1) 100%) no-repeat fixed center;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2f2f8', endColorstr='#49c3e9', GradientType=1 ) no-repeat fixed center;    
  */
}

/*
main{
     max-width: 1024px;
     margin: 0 auto;
     padding:1rem 2.5%;
     display: flex;
     justify-content: center;
    }

.estado_inicial_oculto {
     height: 0px;
     overflow: hidden;
    }    

.despliegue_vertical{
      overflow: hidden;
      -webkit-transition: max-height var(--duracion, 0s);  
      -moz-transition: max-height var(--duracion, 0s);  
      -ms-transition: max-height var(--duracion, 0s);  
      -o-transition: max-height var(--duracion, 0s);  
      transition: max-height var(--duracion, 0s);  
      overflow: hidden;
      max-height: var(--altura, 0px);
     }    
     */
.contenedor_principal {
  --webkit-backdrop-filter: blur(1.8px);
  -webkit-backdrop-filter: blur(1.8px);
          backdrop-filter: blur(1.8px);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  padding: 1.2rem 1.2rem;
  box-shadow: 0px 5px 15px 0px rgba(112, 112, 112, 0.48);
  animation: aparece_ventana 1s;
}

.contenedor_principal_desaparece {
  --webkit-backdrop-filter: blur(1.8px);
  -webkit-backdrop-filter: blur(1.8px);
          backdrop-filter: blur(1.8px);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  padding: 1.2rem 1.2rem;
  box-shadow: 0px 5px 15px 0px rgba(112, 112, 112, 0.48);
  animation: desaparece_ventana 0.5s forwards;
}

.div_encabezado_fijo {
  position: fixed;
  z-index: 1;
  padding: 0 1.2rem;
  top: 46px;
  width: var(--ancho_div_principal);
  display: var(--display_desktop);
}

.div_encabezado_fijo_desaparece {
  position: fixed;
  z-index: 1;
  padding: 0 1.2rem;
  top: 46px;
  width: var(--ancho_div_principal);
  display: var(--display_desktop);
  animation: desaparece_ventana 0.5s forwards;
}

.contenedor_principal_invisible {
  opacity: 0;
}

@keyframes aparece_ventana {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes desaparece_ventana {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.separador_contenedor {
  padding: 0 0 0 0;
}

.separador_hr {
  height: 5px;
  background-color: #04AA6D;
  border: none;
  border-radius: 10px;
  width: 6rem;
  text-align: center;
  padding: 0;
}

.esp_separador {
  padding: 0 0 3rem 0;
}

.uppercase {
  text-transform: uppercase;
}

.link_rojo, .link_rojo_ext {
  font-weight: 700;
  color: #f27474;
  text-decoration: none;
  cursor: pointer;
}

main {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1rem 2.5%;
  display: flex;
  justify-content: center;
}

.swal2-popup {
  font-size: 2rem !important;
}

::-moz-placeholder {
  color: transparent;
}

::placeholder {
  color: transparent;
}

.label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0 4px;
  color: rgba(128, 128, 128, 0.527);
  transition: 0.5s;
  z-index: -1;
}

.label--deshabilitado {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0 4px;
  color: rgba(128, 128, 128, 0.527);
  transition: 0.5s;
  z-index: -1;
}

.input__text {
  /*position: absolute;*/
  outline: none;
  padding: 1rem 1rem 1rem 1rem;
  border-width: 3px;
  width: 100%;
  border-style: none none solid none;
  border-color: rgba(128, 128, 128, 0.527);
  background: transparent;
  transition: 0.5s;
  z-index: 3;
  box-shadow: none;
  /*
  &.deshabilitado{
      color: rgba(128, 128, 128, 0.527);
     }*/
}
.input__text.habilitado:focus {
  border: 0px solid #04AA6D;
  border-width: 0 0 3px 0;
}
.input__text.habilitado:focus + .label {
  top: -10px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  color: #04AA6D;
}
.input__text:not(:-moz-placeholder-shown) + .label {
  top: -1rem;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}
.input__text:not(:placeholder-shown) + .label {
  top: -1rem;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}
.input__text:not(:-moz-placeholder-shown) + .label--deshabilitado {
  top: -1rem;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}
.input__text:not(:placeholder-shown) + .label--deshabilitado {
  top: -1rem;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}
.input__textarea {
  resize: none;
  height: 150px;
}
.input__contenedor {
  /*
   position: relative;
   height: 45px;
   margin-bottom: 17px;         
   */
  position: relative;
  padding: 0 0 1rem 0;
}
.input__icono {
  border: 0px solid;
  padding: 1rem 0;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
}

.btn_rojo {
  background-color: red;
}
.btn_rojo:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn_rojo:hover {
  background-color: #cc0000;
}

.btn_regresar {
  /* top: 0rem; */
  left: -2rem;
  width: auto;
  background-color: orange;
  padding: 1rem;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  transition-property: background-color;
  transition-duration: 0.3s;
  text-align: center;
  display: inline;
  border-radius: 10px;
  /* position: absolute; */
  position: relative;
}
.btn_regresar:hover {
  background-color: #cc8400;
  cursor: pointer;
}

.btn_siguiente {
  /* top: 0rem; */
  right: -2rem;
  width: auto;
  background-color: orange;
  padding: 1rem;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  transition-property: background-color;
  transition-duration: 0.3s;
  text-align: center;
  display: inline;
  border-radius: 10px;
  /* position: absolute; */
  position: relative;
}
.btn_siguiente:hover {
  background-color: #cc8400;
  cursor: pointer;
}

.btn_siguiente_a {
  width: auto;
  background-color: #04AA6D;
  padding: 1rem 0.5rem 1rem 0.5rem;
  margin: 0.5rem 0;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  transition-property: background-color;
  transition-duration: 0.3s;
  text-align: center;
  display: inline;
  border-radius: 0 10px 10px 0;
  /* position: absolute; */
  position: relative;
}
.btn_siguiente_a:hover {
  background-color: #03784d;
  cursor: pointer;
}
.btn_siguiente_a:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn_siguiente_b {
  width: auto;
  background-color: orange;
  padding: 1rem 0.5rem 1rem 0.5rem;
  margin: 0.5rem 0;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  transition-property: background-color;
  transition-duration: 0.3s;
  text-align: center;
  display: inline;
  border-radius: 0 10px 10px 0;
  /* position: absolute; */
  position: relative;
}
.btn_siguiente_b:hover {
  background-color: #cc8400;
  cursor: pointer;
}
.btn_siguiente_b:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn_semaforo_amarillo {
  background-color: #ECEC00;
  color: #39433B;
  padding: 1.5rem 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  transition-property: background-color;
  transition-duration: 0.3s;
  text-align: center;
  display: inline;
  border-radius: 10px;
  /* position: absolute; */
  position: relative;
}
.btn_semaforo_amarillo:hover {
  background-color: #b9b900;
  cursor: pointer;
}
.btn_semaforo_amarillo:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn_semaforo_naranja {
  background-color: orange;
  color: white;
  padding: 1.5rem 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  transition-property: background-color;
  transition-duration: 0.3s;
  text-align: center;
  display: inline;
  border-radius: 10px;
  /* position: absolute; */
  position: relative;
}
.btn_semaforo_naranja:hover {
  background-color: #cc8400;
  cursor: pointer;
}
.btn_semaforo_naranja:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn_semaforo_rojo {
  background-color: #CE0000;
  color: white;
  padding: 1.5rem 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  transition-property: background-color;
  transition-duration: 0.3s;
  text-align: center;
  display: inline;
  border-radius: 10px;
  /* position: absolute; */
  position: relative;
}
.btn_semaforo_rojo:hover {
  background-color: #9b0000;
  cursor: pointer;
}
.btn_semaforo_rojo:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cnt_cerrar_modo_dev {
  margin-top: 10px;
}

.btn_50p {
  padding: 5px;
}

@media (min-width: 480px) {
  .btn_50p {
    width: 50%;
    display: inline-block;
    padding: 5px;
  }
}
/*
.cnt_btn{
         display: flex;
         z-index: 100; 
         box-sizing: border-box; 
         flex-wrap: wrap; 
         align-items: center; 
         justify-content: center; 
         width: auto; 
         margin: 1.25em auto 0; 
         padding: 0;
         position:relative;
     &:hover{
         background-image:linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));

       }
    }    
    */
.cnt_btn_guardar_programacion {
  text-align: right;
}

.boton_fit {
  width: auto;
}

.link, .link_ext {
  font-weight: 700;
  color: #f27474;
  text-decoration: none;
  cursor: pointer;
}

.swal2-container {
  z-index: 2001 !important;
}

.input__boton_gris_si {
  background-color: #b5bac9;
}

.input__boton_default_si:hover {
  background-color: #04AA6D;
  cursor: not-allowed;
}

.input__boton_amarillo {
  background-color: #ff6737;
}

.input__boton_rojo_no {
  background-color: #ff6737;
}
.input__boton_rojo_no:hover {
  background-color: #ff6737;
  cursor: not-allowed;
}

.input__boton_gris_no {
  background-color: #b5bac9;
}
.input__boton_gris_no:hover {
  background-color: #ff4004;
  cursor: pointer;
}

.input__boton_gris {
  background-color: #b5bac9;
}
.input__boton_gris:hover {
  background-color: #b5bac9;
  cursor: not-allowed;
}

.input__boton_rojo {
  background-color: #ff6737;
}
.input__boton_rojo:hover {
  background-color: #03784d;
  cursor: pointer;
}

.input__boton_default_seleccionado:hover {
  background-color: #04AA6D;
  cursor: not-allowed;
}

.dsp_none {
  display: none;
}

.btn_dis {
  filter: grayscale(1);
  cursor: not-allowed;
}
.btn_dis:hover {
  background-color: #04AA6D;
  filter: grayscale(1);
}

.disabled-link {
  pointer-events: none;
  filter: grayscale(1);
}

.contenedor_loader {
  z-index: 1001;
  position: fixed;
  top: 0px;
  width: 100%;
  /*filter: blur(8px);*/
  -webkit-backdrop-filter: blur(1.8px);
  backdrop-filter: blur(1.8px);
  display: flex;
  align-items: center;
  justify-content: center;
  /*EL TAMAÑO VERTICAL LO GENERA CON JAVASCRIPT*/
}

.loader_cara_A, .loader_cara_B {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-backface-visibility: hidden;
}

.loader_cara_A {
  background: url(/build/img/loader_itcm.png);
  background-size: 100px;
  /*animation: rotate_loader_cara_A 1s linear infinite;*/
  -webkit-animation: rotate_loader_cara_A 1s linear infinite;
  z-index: 1001;
}

.loader_cara_B {
  background: url(/build/img/loader_tecnm.png);
  background-size: 100px;
  /*animation: rotate_loader_cara_B 1s linear infinite;*/
  -webkit-animation: rotate_loader_cara_B 1s linear infinite;
  z-index: 1001;
}

.div_loader {
  width: 100px;
  margin: 9% auto;
  /*position: relative;*/
  height: 100px;
  -webkit-transform-style: preserve-3d;
  /*transform-style: preserve-3d;*/
}

@keyframes rotate_loader_cara_A {
  from {
    -webkit-transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
  }
  from {
    -moz-transform: rotateY(0deg);
  }
  to {
    -moz-transform: rotateY(360deg);
  }
  from {
    -ms-transform: rotateY(0deg);
  }
  to {
    -ms-transform: rotateY(360deg);
  }
  from {
    -o-transform: rotateY(0deg);
  }
  to {
    -o-transform: rotateY(360deg);
  }
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes rotate_loader_cara_B {
  from {
    -webkit-transform: rotateY(180deg);
  }
  to {
    -webkit-transform: rotateY(540deg);
  }
  from {
    -moz-transform: rotateY(180deg);
  }
  to {
    -moz-transform: rotateY(540deg);
  }
  from {
    -ms-transform: rotateY(180deg);
  }
  to {
    -ms-transform: rotateY(540deg);
  }
  from {
    -o-transform: rotateY(180deg);
  }
  to {
    -o-transform: rotateY(540deg);
  }
  from {
    -transform: rotateY(180deg);
  }
  to {
    -transform: rotateY(540deg);
  }
}
.marcador_rojo {
  background-color: #f27474;
  padding: 1rem;
  color: white;
}
.marcador_verde {
  background-color: #a5dc86;
  padding: 1rem;
}
.marcador_naranja {
  background-color: #f8bb86;
  padding: 1rem;
}
.marcador_verde_m0 {
  background-color: #a5dc86;
  padding: 1rem;
  margin: 0 0 2rem 0;
  /*& .link{
      font-weight: 700;
      color: yellow;
      text-decoration: none;
      cursor: pointer;
     }
     */
}
.marcador_verde_lima {
  color: #39433B;
  background-color: limegreen;
  padding: 0.5rem;
  border-radius: 1rem;
}
.marcador_verde_lima_b {
  color: #39433B;
  background-color: limegreen;
  padding: 0 0.5rem;
}
.marcador_amarillo {
  color: #39433B;
  background-color: #eef000;
  padding: 0.5rem;
}
.marcador_amarillo_b {
  color: #39433B;
  background-color: #eef000;
  padding: 0rem 0.5rem;
}
.marcador_rojo_solido {
  color: white;
  background-color: red;
  padding: 0.5rem;
  border-radius: 1rem;
}

.barra--vacia {
  width: 100%;
  background-color: black;
  background-color: #1a1a1a;
  background-size: 30px 30px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  animation: barra__animacionA 1.25s linear infinite reverse, barra__animacionB 1s;
  animation-duration: 1.25s;
  text-align: center;
  border-radius: 10px;
  margin: 0 0 1rem 0;
  overflow: hidden;
}
.barra--llenando {
  color: rgba(0, 0, 0, 0);
  background-color: limegreen;
  width: 0%;
  padding: 1rem 0;
}
.barra--contenedor {
  position: relative;
}
.barra--mensaje {
  top: 0px;
  position: absolute;
  z-index: 10;
  width: 100%;
  text-align: center;
  margin: 1rem 0;
  color: white;
}

@keyframes barra__animacionA {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 0;
  }
}
@keyframes barra__animacionB {
  0% {
    top: -60px;
  }
  100% {
    top: 0px;
  }
}
/*DE LA ETIQUETA <a> OCULTA TODO EXEPTO EL PRIMER CHILD*/
.menu a:not(:first-child), .contenedor_submenu .boton_muestra_submenu, .contenedor_salida {
  display: none;
}

/*INICIO DE DISEÑO INICIAL*/
.icono_salida {
  font-size: 22px !important;
  padding: 0px;
}

.menu {
  font-weight: 600;
  background-color: #333;
  overflow: hidden;
}
.menu a { /*DISEÑO DE LOS ELEMENTOS DEL MENU*/
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.menu i.icono_salir { /*DISEÑO DE LOS ELEMENTOS DEL MENU*/
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  padding: 0 5px 0 0;
}
.menu p.contenedor_salida {
  float: left;
  color: #f2f2f2;
  text-align: left;
  text-decoration: none;
  font-size: 17px;
  padding: 14px 16px;
  margin: 0;
  width: 100%;
}
.menu a.icono_menu { /*POSICION DEL iconoO*/
  float: right;
  display: block;
}
.menu a.nombre { /*DISEÑO Y POSICION INICIAL DEL CONTENEDOR nombre*/
  float: right;
  display: flex;
  padding: 0px 5px;
  text-align: right;
  font-size: 12px !important;
  height: 48px;
  align-items: center;
  justify-content: center;
}
.menu .active {
  padding: 15.5px;
}

.contenedor_menu {
  position: sticky;
  top: 0px;
  z-index: 999;
  animation: aparece_ventana 1s;
}
.contenedor_menu {
  background-color: #333;
}

.contenedor_menu_desaparece {
  position: sticky;
  top: 0px;
  z-index: 999;
  animation: desaparece_ventana 0.5s forwards;
}
.contenedor_menu_desaparece {
  background-color: #333;
}

.contenedor_submenu-contenedor_opciones { /*ESTADO INICIAL DEL CONTENIDO DEL SUBMENU <button>*/
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.contenedor_submenu-contenedor_opciones a:hover { /*ACCION QUE OCURRE AL PASAR EL MOUSE SOBRE LOS BOTONES DEL SUBMENU DISEÑO*/
  background-color: #ddd;
  color: black;
}
.contenedor_submenu-contenedor_opciones a { /*DISEÑO DEL LOS BOTONES DENTRO DEL SUBMENU*/
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.active {
  background-color: #04AA6D;
}

/*DISEÑA EL BOTON DEL SUBMENU*/
.contenedor_submenu { /*DISEÑA EL FORMATO DEL CONTENEDOR DEL BOTON DEL SUBMENU*/
  float: left;
  overflow: hidden;
}
.contenedor_submenu .boton_muestra_submenu {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 13px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}
.contenedor_submenu:hover .contenedor_submenu-contenedor_opciones { /*ACCION AL PASAR EL MOUSE SOBRE EL BOTON DEL SUBMENU, ABRE SUBMENU*/
  display: block;
}

/*ACCION QUE OCURRE AL PASAR EL MOUSE SOBRE LAS ETIQUETAS a Y EL BOTON DEL SUBMENU DISEÑO DE BOTON*/
.menu a:hover, .contenedor_submenu:hover, .contenedor_salida:hover {
  background-color: #555;
  color: white;
  cursor: pointer;
}

.contenedor_salida {
  padding: 14px 16px;
  margin: 0;
}

/*FIN DE DISEÑO INICIAL*/
.menu.responsivo {
  position: relative;
  top: 0px;
  width: 100%;
}
.menu.responsivo a, .menu.responsivo .contenedor_salida { /*AL ACTIVAR responsive MUESTRA EL MENU DE LAS ETIQUETAS <a> FORMA VERTICAL*/
  float: none;
  display: block;
  text-align: left;
}
.menu.responsivo .icono_menu { /*AL ACTIVAR responsive MANTIENE EL iconoO FIJO */
  position: absolute;
  right: 0;
  top: 0;
}
.menu.responsivo .contenedor_submenu {
  float: none;
}
.menu.responsivo .contenedor_submenu .boton_muestra_submenu { /*MUESTRA EL BOTON DEL SUBMENU*/
  display: block;
  width: 100%;
  text-align: left;
}
.menu.responsivo .nombre { /*POSICION DE nombre AL OPRIMIR EL BOTON QUE MUESTRA EL MENU*/
  text-align: right;
  display: flex;
  position: absolute;
  right: 47px;
  top: 0;
  font-size: 12px !important;
}
.menu.responsivo .contenedor_submenu-contenedor_opciones { /*MUESTRA CADA BOTON DEL SUBMENU CON UN ANCHO DEL 100%*/
  position: relative;
}

@media screen and (min-width: 1060px) {
  .menu a:not(:first-child), .contenedor_submenu .boton_muestra_submenu {
    display: block;
  }
  .menu { /*COLOCA EL MENU EN EL CENTRO CON ESE TAMAÑO*/
    width: 1060px;
    margin: auto;
  }
  .menu a.icono_menu { /*OCULTA EL iconoO*/
    display: none;
  }
  .menu a.icono_salir { /*OCULTA EL iconoO*/
    float: right;
    display: block;
  }
  .menu a.nombre {
    float: right;
    display: flex;
    padding: 0px 5px;
    text-align: right;
    font-size: 12px !important;
    height: 48px;
    align-items: center;
    justify-content: center;
  }
  .menu .contenedor_salida span {
    display: none;
  }
  .menu p.contenedor_salida {
    float: right;
    display: flex;
    width: initial;
  }
  .menu i.icono_salir {
    padding: 0;
  }
}
h1 {
  font-weight: 900;
  text-align: center;
}

button {
  background-color: #04AA6D;
  padding: 1.5rem 1.5rem;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  transition-property: background-color;
  transition-duration: 0.3s;
  text-align: center;
  width: 100%;
  display: inline-block;
  border-radius: 10px;
  cursor: pointer;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
button:hover {
  background-color: #03784d;
}

.titulo_centrado {
  text-align: center;
  margin: 0;
  padding: 1rem 0 3rem 0;
}

#puente {
  display: none;
}

.progressBarVacia {
  position: relative;
  width: 100%;
  background-color: #1a1a1a;
  background-size: 30px 30px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  /*animation: ani_pbBaseAnimadaOA 1.25s linear infinite reverse,ani_pbBaseAnimadaOB 4s;*/
  text-align: center;
  /*top:-60px;*/
  border-radius: 5px;
  overflow: hidden;
}

.progressBarLlenando {
  background-color: green;
  padding-bottom: 5px;
  padding-TOP: 5px;
  height: 100%;
  width: 0%;
  color: WHITE;
}

.progressBarLlenandoCampus {
  background-color: #8A2BE0;
  padding-bottom: 2px;
  padding-TOP: 2px;
  height: 100%;
  width: 0%;
  color: WHITE;
}

.progressBarLlenandoEdificio {
  background-color: #DA70D0;
  padding-bottom: 5px;
  padding-TOP: 5px;
  height: 100%;
  width: 0%;
  color: WHITE;
}

.progressBarPorcentaje {
  top: 0px;
  position: absolute;
  padding-bottom: 2px;
  padding-TOP: 2px;
  width: 100%;
  color: WHITE;
}

.progressBarLetrero {
  top: 0px;
  position: absolute;
  padding-bottom: 2px;
  padding-TOP: 2px;
  width: 100%;
  color: WHITE;
  text-align: left;
  cursor: pointer;
}

@media only screen and (max-width: 804px) {
  .progressBarPorcentaje {
    text-align: right;
  }
}
.columna_dato_exp, .columna_boton_exp {
  display: inline-block;
  width: 100%;
}

.columna_boton_exp {
  padding: 0 0 3rem 0;
}

@media (min-width: 768px) {
  .contenedor_renglon_flex_exp {
    display: flex;
    align-items: center;
  }
  .columna_boton_exp {
    display: inline-block;
    width: 30%;
    padding: 1rem 0;
  }
  .columna_dato_exp {
    display: inline-block;
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .columna_boton_exp {
    display: inline-block;
    /*width: 20%;*/
  }
  .columna_dato_exp {
    display: inline-block;
    width: 80%;
  }
}
.separador_tbl {
  height: 1px;
  background-color: #44c596;
  border: none;
  border-radius: 10px;
  width: 98%;
  text-align: center;
  padding: 0;
}

.cnt_seleccionador div:first-child {
  position: relative;
  padding: 0 0 1rem 0;
}
.cnt_seleccionador select {
  outline: none;
  padding: 1rem 1rem 1rem 1rem;
  border-width: 3px;
  width: 100%;
  border-style: none none solid none;
  border-color: rgba(128, 128, 128, 0.527);
  background: transparent;
  transition: 0.5s;
  box-shadow: none;
}
.cnt_seleccionador select:not(:-moz-placeholder-shown) + label {
  top: -1rem;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}
.cnt_seleccionador select:not(:placeholder-shown) + label {
  top: -1rem;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}
.cnt_seleccionador select:disabled {
  cursor: not-allowed;
}
.cnt_seleccionador select.habilitado:focus {
  border: 0px solid #04AA6D;
  border-width: 0 0 3px 0;
}
.cnt_seleccionador select.habilitado:focus + label {
  top: -10px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  color: #04AA6D;
}
.cnt_seleccionador label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0 4px;
  color: rgba(128, 128, 128, 0.527);
  transition: 0.5s;
  z-index: -1;
}

.cnt_input_text div:first-child {
  position: relative;
  padding: 0 0 1rem 0;
}
.cnt_input_text div:first-child :nth-child(3) {
  border: 0px solid;
  padding: 1rem 0;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
}
.cnt_input_text input {
  outline: none;
  padding: 1rem 1rem 1rem 1rem;
  border-width: 3px;
  width: 100%;
  border-style: none none solid none;
  border-color: rgba(128, 128, 128, 0.527);
  background: transparent;
  transition: 0.5s;
  box-shadow: none;
}
.cnt_input_text input:not(:-moz-placeholder-shown) + label {
  top: -1rem;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}
.cnt_input_text input:not(:placeholder-shown) + label {
  top: -1rem;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}
.cnt_input_text input:disabled {
  cursor: not-allowed;
}
.cnt_input_text input.habilitado:focus {
  border: 0px solid #04AA6D;
  border-width: 0 0 3px 0;
}
.cnt_input_text input.habilitado:focus + label {
  top: -10px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  color: #04AA6D;
}
.cnt_input_text label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0 4px;
  color: rgba(128, 128, 128, 0.527);
  transition: 0.5s;
  z-index: -1;
}

.semaforo .naranja {
  background: orange;
}
.semaforo .naranja:hover {
  background-color: #cc8400;
  cursor: pointer;
}
.semaforo .amarillo {
  background: #ECEC00;
  color: #39433B;
}
.semaforo .amarillo:hover {
  background-color: #b9b900;
  cursor: pointer;
}
.semaforo .rojo {
  background: #CE0000;
}
.semaforo .rojo:hover {
  background-color: #9b0000;
  cursor: pointer;
}

.semaforo_tabla_a, .semaforo_tabla_b {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .semaforo_tabla_a, .semaforo_tabla_b {
    display: inline-block;
    width: 50%;
    padding: 0;
    margin: 2rem 0 2rem 0;
  }
}

.semaforo_tabla_b {
  margin: 0 0 2rem 0;
}

.semaforo_tabla {
  width: 100%;
  text-align: center;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  border-spacing: 2px 1px;
}
.semaforo_tabla .naranja {
  background: orange;
  width: 50%;
  padding: 1rem 0;
  color: white;
}
.semaforo_tabla .amarillo {
  background: #ECEC00;
  width: 50%;
  padding: 1rem 0;
  color: #39433B;
}
.semaforo_tabla .rojo {
  background: #CE0000;
  width: 50%;
  padding: 1rem 0;
  color: white;
}
.semaforo_tabla .verde {
  background: #04AA6D;
  width: 50%;
  padding: 1rem 0;
  color: white;
}

/*
@include m.telefono {   
.semaforo_tabla{
    width: 100%;
    //display: inline-block;
    & .naranja,& .amarillo,& .rojo,& .verde{
        width: 50%;
       }

   }
   }
   */
.ccb {
  display: inline-block;
}
.ccb .toggle-button {
  display: inline-block;
  position: relative;
  width: 110px;
  height: 65px;
  border-radius: 40px;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(246, 254, 194)), color-stop(9%, rgb(246, 254, 194)), color-stop(100%, rgb(31, 217, 192)));
  background: linear-gradient(45deg, rgb(246, 254, 194) 0%, rgb(246, 254, 194) 9%, rgb(31, 217, 192) 100%) no-repeat fixed center;
  box-shadow: 0px 5px 15px rgba(112, 112, 112, 0.48) inset;
}
.ccb .toggle-button label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  outline: none;
}
.ccb .toggle-button .handle {
  position: absolute;
  width: 57px;
  height: 57px;
  left: 4px;
  top: 4px;
  background-color: #04AA6D;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  color: #fff;
  transition: 0.5s ease;
}
.ccb .toggle-button input[type=checkbox] {
  left: -10px;
  top: -10px;
  visibility: hidden;
}
.ccb .toggle-button input[type=checkbox]:checked + .handle {
  left: calc(100% - 61px);
}
.ccb .toggle-button input[type=checkbox]:checked + .handle :nth-child(1) {
  display: none;
}
.ccb .toggle-button input[type=checkbox] + .handle :nth-child(2) {
  display: none;
}
.ccb .toggle-button input[type=checkbox]:checked + .handle :nth-child(2) {
  display: block;
}
.ccb .toggle-button input[type=checkbox]:disabled + .handle {
  cursor: not-allowed;
  filter: grayscale(1);
}
.ccb .toggle-button:has(input[type=checkbox]:disabled) {
  filter: grayscale(1);
}
.ccb label:has(input[type=checkbox]:disabled) {
  cursor: not-allowed;
}

.ccb2 {
  display: inline-block;
}
.ccb2 .toggle-button {
  display: inline-block;
  position: relative;
  width: 95px;
  height: 53px;
  border-radius: 40px;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(246, 254, 194)), color-stop(9%, rgb(246, 254, 194)), color-stop(100%, rgb(31, 217, 192)));
  background: linear-gradient(45deg, rgb(246, 254, 194) 0%, rgb(246, 254, 194) 9%, rgb(31, 217, 192) 100%) no-repeat fixed center;
  box-shadow: 0px 5px 15px rgba(112, 112, 112, 0.48) inset;
}
.ccb2 .toggle-button label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  outline: none;
}
.ccb2 .toggle-button .handle {
  position: absolute;
  width: 45px;
  height: 45px;
  left: 4px;
  top: 4px;
  background-color: #04AA6D;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  color: #fff;
  transition: 0.5s ease;
}
.ccb2 .toggle-button input[type=checkbox] {
  left: -10px;
  top: -10px;
  visibility: hidden;
}
.ccb2 .toggle-button input[type=checkbox]:checked + .handle {
  left: calc(100% - 49px);
}
.ccb2 .toggle-button input[type=checkbox]:checked + .handle :nth-child(1) {
  display: none;
}
.ccb2 .toggle-button input[type=checkbox] + .handle :nth-child(2) {
  display: none;
}
.ccb2 .toggle-button input[type=checkbox]:checked + .handle :nth-child(2) {
  display: block;
}
.ccb2 .toggle-button input[type=checkbox]:disabled + .handle {
  cursor: not-allowed;
  filter: grayscale(1);
}
.ccb2 .toggle-button:has(input[type=checkbox]:disabled) {
  filter: grayscale(1);
}
.ccb2 label:has(input[type=checkbox]:disabled) {
  cursor: not-allowed;
}

.modal_rojo_verde .toggle-button {
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(246, 254, 194)), color-stop(9%, rgb(246, 254, 194)), color-stop(100%, rgb(31, 217, 192)));
  background: linear-gradient(45deg, rgb(246, 254, 194) 0%, rgb(246, 254, 194) 9%, rgb(224, 83, 17) 100%) no-repeat fixed center;
  /*:hover{
      box-shadow: 0 0 0 3px rgba(220,55,65,.5);
      //filter: drop-shadow(0 0 0 3px rgba(220,55,65,.5));
     }*/
}
.modal_rojo_verde .toggle-button .handle {
  background-color: #CE0000;
}
.modal_rojo_verde .toggle-button input[type=checkbox]:checked + .handle {
  background-color: #04AA6D;
}
.modal_rojo_verde .toggle-button:has(input[type=checkbox]:checked) {
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(246, 254, 194)), color-stop(9%, rgb(246, 254, 194)), color-stop(100%, rgb(31, 217, 192)));
  background: linear-gradient(45deg, rgb(246, 254, 194) 0%, rgb(246, 254, 194) 9%, rgb(31, 217, 192) 100%) no-repeat fixed center;
}

/*@use 'base/variables' as v;*/
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
/*
main {
  display: block;
}
*/
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.28; /* 1 */
  margin: 0; /* 2 */
}

textarea {
  border: 2px solid gray;
  border-style: none none solid none;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

input[type=time]::-webkit-calendar-picker-indicator {
  background: none;
}

/*
  input[type="date"]::-webkit-calendar-picker-indicator{
       background: none;
      }
*/
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=date] {
  line-height: 1.2;
}

.contenedor_login, .contenedor_login_dev {
  width: min(100%, 400px);
  /* margin: 1rem auto; */
}
.contenedor_login .cnt_btn, .contenedor_login_dev .cnt_btn {
  margin: 2rem 0rem;
}

.center_main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.desacad_aspirante_licenciatura_dashboard .col_num {
  width: 50px;
  text-align: center;
}
.desacad_aspirante_licenciatura_dashboard .cont_tab {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1rem 2.5%;
  display: flex;
  justify-content: center;
}
.desacad_aspirante_licenciatura_dashboard .btn_val, .desacad_aspirante_licenciatura_dashboard .btn_preexp {
  margin: 1rem 0;
}
.desacad_aspirante_licenciatura_dashboard .sub_encabezado_en_tabla {
  font-size: 3rem;
}
.desacad_aspirante_licenciatura_dashboard .btn_val:focus {
  filter: brightness(50%);
}
.desacad_aspirante_licenciatura_dashboard .cnt_notas {
  padding: 0 1rem 0 0;
  display: inline-block;
  width: 60px;
}
.desacad_aspirante_licenciatura_dashboard .columna_boton {
  display: inline-block;
  width: 80%;
}
.desacad_aspirante_licenciatura_dashboard .sub_encabezado_en_tabla {
  font-size: 2.5rem;
}
.desacad_aspirante_licenciatura_dashboard .cnt_btn_notas {
  text-align: center;
}
.desacad_aspirante_licenciatura_dashboard .btn_notas {
  display: inline-block;
  width: 150px;
}
@media (min-width: 1024px) {
  .desacad_aspirante_licenciatura_dashboard .sub_encabezado_en_tabla {
    font-size: 3rem;
  }
  .desacad_aspirante_licenciatura_dashboard .contenedor_renglon_flex {
    display: flex;
    align-items: center;
  }
  .desacad_aspirante_licenciatura_dashboard .curp {
    width: 300px;
  }
  .desacad_aspirante_licenciatura_dashboard .nom_aspirante {
    width: 500px;
  }
  .desacad_aspirante_licenciatura_dashboard .columna_boton {
    width: 20%;
  }
}

.desacad_aspirantes__carreras_ofertadas .cont_tab .col_si {
  text-align: center;
  padding: 1.5rem 0.3rem 1.5rem 0;
}
.desacad_aspirantes__carreras_ofertadas .cont_tab .col_no {
  text-align: center;
  padding: 1.5rem 0.3rem 1.5rem 0.3rem;
}
.desacad_aspirantes__carreras_ofertadas .cont_tab button {
  padding: initial;
  width: 50px;
  height: 50px;
}
@media (min-width: 768px) {
  .desacad_aspirantes__carreras_ofertadas .cont_tab .col_si {
    padding: 0.5rem 0.3rem 0.5rem 0;
  }
  .desacad_aspirantes__carreras_ofertadas .cont_tab .col_no {
    padding: 0.5rem 0.3rem 0.5rem 0.3rem;
  }
}

/*
 @include m.desktop {
     .contenedor_renglon_flex {
         display: flex;
         align-items: center;
        }   
     .curp{
         width: 300px;
        }
     .nom_aspirante{
         width: 500px;
        }
     .columna_boton{
         width: 20%;
        }
    }

*/
.datos_aspirante {
  margin: 0 auto;
  padding: 1rem 2.5%;
  display: flex;
  justify-content: center;
}

.corta_texto {
  overflow-wrap: break-word;
  width: 100%;
}

.al_der th {
  text-align: right;
}

.td_cnt_img_asp {
  display: none;
}

.div_img_asp {
  display: block;
  width: 100%;
}

@media (min-width: 480px) {
  .td_cnt_img_asp {
    display: block;
    width: 140px;
  }
  .div_img_asp {
    display: none;
  }
}
.est_enc_sat__subtitulo {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: large;
  padding-bottom: 2rem;
}

p, input, select {
  width: 100%;
}

.est_enc_sat__sel_personal_docente .input__text,
.est_enc_sat__sel_recomendarias_instituto_2 .input__text {
  padding-top: 2rem;
}

.est_enc_sat__sel_primera_opcion .input__text {
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .est_enc_sat__sel_primera_opcion .input__text,
  .est_enc_sat__sel_recomendarias_instituto_2 .input__text {
    padding-top: 3rem;
  }
  .est_enc_sat__sel_semestre,
  .est_enc_sat__sel_genero,
  .est_enc_sat__sel_limpieza_cafeterias,
  .est_enc_sat__sel_limpieza_estacionamientos,
  .est_enc_sat__sel_prestamo_libros,
  .est_enc_sat__sel_espacios_deportivos,
  .est_enc_sat__sel_pago_inscripcion,
  .est_enc_sat__sel_constancias_estudios,
  .est_enc_sat__sel_residencia_profesional,
  .est_enc_sat__sel_modalidad,
  .est_enc_sat__sel_limpieza_baños,
  .est_enc_sat__sel_cafeterias,
  .est_enc_sat__sel_primera_opcion {
    width: 50%;
    padding-right: 2rem;
    display: inline-block;
  }
  .est_enc_sat__sel_nivel,
  .est_enc_sat__sel_programa,
  .est_enc_sat__sel_edad,
  .est_enc_sat__sel_laboratorios,
  .est_enc_sat__sel_centro_asesorias,
  .est_enc_sat__sel_consultorio_medico,
  .est_enc_sat__sel_seleccion_materias,
  .est_enc_sat__sel_servicio_social,
  .est_enc_sat__sel_titulacion,
  .est_enc_sat__sel_limpieza_aulas,
  .est_enc_sat__sel_limpieza_areas_verdes,
  .est_enc_sat__sel_limpieza_laboratorios,
  .est_enc_sat__sel_recomendarias_instituto_2 {
    width: 50%;
    padding-right: 0rem;
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .est_enc_sat__sel_semestre .input__text,
  .est_enc_sat__sel_nivel .input__text,
  .est_enc_sat__sel_programa .input__text,
  .est_enc_sat__sel_genero .input__text,
  .est_enc_sat__sel_modalidad .input__text,
  .est_enc_sat__sel_edad .input__text,
  .est_enc_sat__sel_primera_opcion .input__text,
  .est_enc_sat__sel_recomendarias_instituto_2 .input__text {
    padding-top: 2rem;
  }
  .est_enc_sat__sel_primera_opcion {
    width: 50%;
    padding-right: 2rem;
    display: inline-block;
  }
  .est_enc_sat__sel_recomendarias_instituto_2 {
    width: 50%;
    padding-right: 0rem;
    display: inline-block;
  }
  .est_enc_sat__sel_semestre,
  .est_enc_sat__sel_nivel,
  .est_enc_sat__sel_programa,
  .est_enc_sat__sel_genero,
  .est_enc_sat__sel_limpieza_cafeterias,
  .est_enc_sat__sel_limpieza_aulas,
  .est_enc_sat__sel_limpieza_areas_verdes,
  .est_enc_sat__sel_limpieza_estacionamientos,
  .est_enc_sat__sel_prestamo_libros,
  .est_enc_sat__sel_laboratorios,
  .est_enc_sat__sel_centro_asesorias,
  .est_enc_sat__sel_espacios_deportivos,
  .est_enc_sat__sel_pago_inscripcion,
  .est_enc_sat__sel_seleccion_materias,
  .est_enc_sat__sel_constancias_estudios,
  .est_enc_sat__sel_servicio_social,
  .est_enc_sat__sel_residencia_profesional {
    width: 33.3333333333%;
    padding-right: 2rem;
    display: inline-block;
  }
  .est_enc_sat__sel_modalidad,
  .est_enc_sat__sel_edad,
  .est_enc_sat__sel_limpieza_baños,
  .est_enc_sat__sel_limpieza_laboratorios,
  .est_enc_sat__sel_cafeterias,
  .est_enc_sat__sel_consultorio_medico,
  .est_enc_sat__sel_titulacion {
    width: 33.3333333333%;
    padding-right: 0rem;
    display: inline-block;
  }
}
.est_dat_est__guardar {
  display: block;
  text-align: right;
}
.est_dat_est__guardar .input__boton {
  width: 20rem;
}

.cont_actividades {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
  border-radius: 10px;
  padding: 0.5em;
}
.cont_actividades .titulo {
  font-weight: bold;
}
.cont_actividades .nombre {
  font-style: italic;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 3px;
}
.row .item_cols_2 {
  width: 100%;
}
@media (min-width: 480px) {
  .row .item_cols_2 {
    width: 50%;
  }
  .row .item_cols_2 .sm {
    width: 150px;
    margin-right: auto;
    margin-left: auto;
  }
  .row .item_cols_2 .md {
    width: 220px;
    margin-right: auto;
    margin-left: auto;
  }
  .row .item_cols_2 .lg {
    width: 300px;
    margin-right: auto;
    margin-left: auto;
  }
}
.row .item_cols_1 {
  width: 100%;
}
@media (min-width: 480px) {
  .row .item_cols_1 .sm {
    width: 150px;
    margin-right: auto;
    margin-left: auto;
  }
  .row .item_cols_1 .md {
    width: 220px;
    margin-right: auto;
    margin-left: auto;
  }
  .row .item_cols_1 .lg {
    width: 300px;
    margin-right: auto;
    margin-left: auto;
  }
}

p {
  text-align: justify;
}

.inline-w50p {
  display: inline-block;
  width: 50%;
}

.btn_nuevo {
  width: 100%;
  margin-left: auto;
}
@media (min-width: 480px) {
  .btn_nuevo {
    width: 250px;
  }
}

.btn_actividad {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 3px;
}
@media (min-width: 480px) {
  .btn_actividad {
    width: 50%;
    display: inline-block;
    padding: 7px;
  }
}

.titulo_gpo {
  background-color: #a569bd;
  color: white;
  text-align: center;
  border-radius: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 4px;
  padding-right: 4px;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  font-weight: bold;
}

.contenido_gpo {
  font-size: 0.8em;
  max-width: 100%;
  text-align: left;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (min-width: 480px) {
  .contenido_gpo {
    font-size: 1.125em;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
    margin-top: 6px;
    margin-bottom: 6px;
  }
}

.nombre_actividad {
  width: 100%;
  text-align: left;
}
.nombre_actividad p {
  margin-top: 0px;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  .nombre_actividad {
    width: 100%;
    text-align: left;
  }
  .nombre_actividad p {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.div_en_espera {
  background-color: #fcf3cf;
}

.div_rechazada {
  background-color: #f5b7b1;
}

.div_baja_voluntaria {
  background-color: #f5b7b1;
}

.div_cursando {
  background-color: #aed6f1;
}

.div_evaluada {
  background-color: #a3e4d7;
}

.div_acreditada {
  background-color: #abebc6;
}

.div_no_acreditada {
  background-color: #edbb99;
}

#img_extraescolares {
  background-image: url(https://www.cdmadero.tecnm.mx/images/sii/act_comp/extraescolares.jpg);
}

#img_moocs {
  background-image: url(https://www.cdmadero.tecnm.mx/images/sii/act_comp/moocs.jpg);
}

#img_tutorias {
  background-image: url(https://www.cdmadero.tecnm.mx/images/sii/act_comp/tutorias.jpg);
}

h1 {
  font-size: 1.5em;
}
@media (min-width: 480px) {
  h1 {
    font-size: 2em;
  }
}

.pill-cc {
  border-radius: 50rem;
  font-size: 12px;
  padding-bottom: 6px;
  padding-top: 6px;
  padding-left: 7px;
  padding-right: 7px;
  display: flex;
  align-items: center;
  line-height: normal;
}
.pill-cc img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 0.25rem;
}

.pill-gold {
  border: 1.5px solid #f7dc6f;
  background-color: #fcf3cf;
  color: #d4ac0d;
}

.pill-default {
  border: 1.5px solid #d6dbdf;
  background-color: #f8f9f9;
  color: #566573;
}

.gap-3 {
  gap: 3px;
}

.instrucciones-container {
  margin-bottom: 1em;
  text-align: justify;
}

/*-----*/
.contenedor-cards {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
@media (min-width: 480px) {
  .contenedor-cards {
    display: flex;
    flex-direction: row;
    gap: 1em;
    justify-content: center;
  }
}

.fila-info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.8em;
}
.fila-info .icono {
  width: 1.2em;
}

.secdepto_archtram {
  width: 950px;
  /*en modo celular coloca un boton arriba del otro, en modo escritorio uno al lado del otro*/
  /*en modo celular coloca un boton del lado izquierdo y otro del lado derecho, en modo escritorio uno al lado del otro*/
}
.secdepto_archtram .cnt_btns_exp_nuevo {
  /*
  & div:nth-child(2){
      div:only-child  {
          width: 33.34%;
          display: inline-block;
         }
     }
  & div:nth-child(3){
      div:only-child  {
          width: 33.33%;
          display: inline-block;
         }
     }
     */
}
.secdepto_archtram .cnt_btns_exp_nuevo .Ai, .secdepto_archtram .cnt_btns_exp_nuevo .Ac {
  width: 50%;
  display: inline-block;
}
.secdepto_archtram .cnt_btns_exp_nuevo .Bi {
  padding: 0 0.5rem 1rem 0;
}
.secdepto_archtram .cnt_btns_exp_nuevo .Bc {
  padding: 0 0 1rem 0.5rem;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_exp_nuevo .Ai, .secdepto_archtram .cnt_btns_exp_nuevo .Ad {
    width: 33.33%;
    display: inline-block;
  }
  .secdepto_archtram .cnt_btns_exp_nuevo .Ac {
    width: 33.34%;
    display: inline-block;
  }
  .secdepto_archtram .cnt_btns_exp_nuevo .Bi {
    padding: 0 0.5rem 0 0;
  }
  .secdepto_archtram .cnt_btns_exp_nuevo .Bc {
    padding: 0 0.5rem;
  }
  .secdepto_archtram .cnt_btns_exp_nuevo .Bd {
    padding: 0 0 0 0.5rem;
  }
}
.secdepto_archtram .anio_entrada {
  width: 300px;
  margin: auto;
}
.secdepto_archtram .btn_trim_izq {
  display: inline-block;
  width: 50%;
  margin: 0 0 0 0;
}
.secdepto_archtram .btn_trim_der {
  display: inline-block;
  width: 50%;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_anio_trim {
    text-align: center;
  }
}
.secdepto_archtram .cnt_btns_inventario, .secdepto_archtram .cnt_btns_expediente {
  text-align: right;
}
.secdepto_archtram .cnt_btns_inventario .btn_trim_izq {
  width: 100%;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_inventario .btn_trim_izq {
    width: 260px;
  }
}
.secdepto_archtram .cnt_btns_inventario .btn_trim_der {
  width: 100%;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_inventario .btn_trim_der {
    width: 270px;
  }
}
.secdepto_archtram .cnt_btns_inventario .cnt_btn_der {
  padding: 0.5rem 0 0 0;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_inventario .cnt_btn_der {
    padding: 0.5rem 0 0 0.5rem;
  }
}
.secdepto_archtram .cnt_btns_inventario .cnt_btn_izq {
  padding: 0 0 0.5rem 0;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_inventario .cnt_btn_izq {
    padding: 0 0.5rem 0.5rem 0;
  }
}
.secdepto_archtram .cnt_btns_anio_trim .btn_trim_izq, .secdepto_archtram .cnt_btns_expedientesss .btn_trim_izq {
  width: 50%;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_anio_trim .btn_trim_izq, .secdepto_archtram .cnt_btns_expedientesss .btn_trim_izq {
    width: 260px;
  }
}
.secdepto_archtram .cnt_btns_anio_trim .btn_trim_der, .secdepto_archtram .cnt_btns_expedientesss .btn_trim_der {
  width: 50%;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_anio_trim .btn_trim_der, .secdepto_archtram .cnt_btns_expedientesss .btn_trim_der {
    width: 270px;
  }
}
.secdepto_archtram .cnt_btns_anio_trim .cnt_btn_der, .secdepto_archtram .cnt_btns_expedientesss .cnt_btn_der {
  padding: 0 0 0 0.5rem;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_anio_trim .cnt_btn_der, .secdepto_archtram .cnt_btns_expedientesss .cnt_btn_der {
    padding: 0.5rem 0 0 0.5rem;
  }
}
.secdepto_archtram .cnt_btns_anio_trim .cnt_btn_izq, .secdepto_archtram .cnt_btns_expedientesss .cnt_btn_izq {
  padding: 0 0.5rem 0 0;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_anio_trim .cnt_btn_izq, .secdepto_archtram .cnt_btns_expedientesss .cnt_btn_izq {
    padding: 0 0.5rem 0.5rem 0;
  }
}
.secdepto_archtram .cnt_btns_expediente {
  /*
  & .cnt_btn_izq_b{
      padding: 0 0.5rem 0 0;
      @include m.telefono {
          padding: 0.5rem 0.5rem 0 0;
         }
     }
  & .btn_trim_izq_b{
      width:58px;
      display: inline-block;
      margin: 0;

     } 
      */
}
.secdepto_archtram .cnt_btns_expediente .cnt_btn_der {
  padding: 0 0 0 0.5rem;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_expediente .cnt_btn_der {
    padding: 0.5rem 0 0 0.5rem;
  }
}
.secdepto_archtram .cnt_btns_expediente .btn_trim_der {
  width: 50%;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_expediente .btn_trim_der {
    width: 270px;
  }
}
.secdepto_archtram .cnt_btns_expediente .cnt_btn_izq {
  padding: 0 0.5rem 0 0;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_expediente .cnt_btn_izq {
    padding: 0.5rem 0.5rem 0 0.5rem;
  }
}
.secdepto_archtram .cnt_btns_expediente .btn_trim_izq {
  width: 50%;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_expediente .btn_trim_izq {
    width: 180px;
  }
}
.secdepto_archtram .cnt_btns_expediente .btn_subir_archivo_x {
  height: 76.06px;
}
@media (min-width: 480px) {
  .secdepto_archtram .cnt_btns_expediente .btn_subir_archivo_x {
    height: initial;
  }
}
@media (min-width: 480px) {
  .secdepto_archtram {
    /*
    & .cnt_btns_siguiente_lista{
        width:100%;
        margin: auto;
        text-align: right;
        &.btn_trim_izq{
            display: inline-block;
            width:50%;
            margin: 0 0 0 0;
          }    
       }*/
  }
  .secdepto_archtram .contenedor_botones_trimestre {
    width: 80%;
    margin: auto;
  }
}
.secdepto_archtram .cnt_btn_izq {
  padding: 0 0.5rem 0.5rem 0;
}
.secdepto_archtram .cnt_btn_der {
  padding: 0.5rem 0 0 0.5rem;
}
.secdepto_archtram .div_centro_boton {
  width: 80%;
  display: inline-block;
}
.secdepto_archtram .div_der_A {
  width: 10%;
  display: inline-block;
}
.secdepto_archtram .div_izq_A {
  width: 10%;
  display: inline-block;
}
.secdepto_archtram .div_izq_C {
  padding: auto 0;
}
.secdepto_archtram .clasificacion_archivistica {
  text-align: center;
  margin: 0;
  padding: 2rem 1rem;
  font-size: 2.2rem;
}
@media (min-width: 480px) {
  .secdepto_archtram .clasificacion_archivistica {
    text-align: center;
    margin: 0;
    padding: 1rem;
    font-size: 3rem;
  }
}
.secdepto_archtram .bsa {
  width: 50%;
}
@media (min-width: 480px) {
  .secdepto_archtram .bsa {
    width: 200px;
  }
}
.secdepto_archtram .bge {
  width: 50%;
  padding: 1rem 0 0 0;
}
@media (min-width: 480px) {
  .secdepto_archtram .bge {
    width: 300px;
    padding: 0 0 0 0;
  }
}
.secdepto_archtram .bsig {
  float: right;
  width: 200px;
}
.secdepto_archtram .cbab {
  width: 50px;
  display: inline-block;
}
.secdepto_archtram .cnt_btns_enc_inventario {
  padding: 0 0 0 0;
}
.secdepto_archtram .btn_uno {
  width: 300px;
  display: inline-block;
}
.secdepto_archtram .tbl_inventarios .cbab {
  padding: 0.2rem 0;
}
.secdepto_archtram .tbl_expedientes .tda {
  width: 60px;
  text-align: center;
  font-weight: 600;
}
@media (min-width: 480px) {
  .secdepto_archtram .tbl_expedientes .tda {
    width: 80px;
    text-align: center;
  }
}
.secdepto_archtram .tbl_expedientes .tdc {
  width: 60px;
  text-align: right;
  display: none;
  font-weight: 600;
}
@media (min-width: 480px) {
  .secdepto_archtram .tbl_expedientes .tdc {
    width: 60px;
    display: table-cell;
  }
}
.secdepto_archtram .tbl_expedientes .tdd {
  width: 60px;
}
.secdepto_archtram .tbl_expedientes .tdba {
  text-align: center;
  padding: 0.5rem 0 0 0;
  font-weight: 600;
  display: table-cell;
}
@media (min-width: 480px) {
  .secdepto_archtram .tbl_expedientes .tdba {
    display: none;
  }
}
.secdepto_archtram .sub_encabezado {
  font-size: 2.5rem;
  margin: 0 0 0 0;
}
.secdepto_archtram .anio_trimestre {
  font-size: 2.5rem;
  margin: 0 0 0 0;
  background-color: #a5dc86;
}
.secdepto_archtram .seccion_serie {
  font-size: 2.5rem;
  margin: 0 0 0 0;
  background-color: #f8bb86;
  padding: 0 0 0.5rem 0;
}
@media (min-width: 480px) {
  .secdepto_archtram .sub_encabezado {
    margin: 2rem 0 0 0;
  }
  .secdepto_archtram .sub_encabezado, .secdepto_archtram .anio_trimestre, .secdepto_archtram .seccion_serie {
    font-size: 3rem;
  }
}
@media (min-width: 480px) {
  .secdepto_archtram .ca_tradicion_documental, .secdepto_archtram .ca_anio_de_apertura {
    width: 25%;
    display: inline-block;
    padding: 0 0.5rem 0 0;
  }
  .secdepto_archtram .ca_clasificacion, .secdepto_archtram .ca_numero_de_fojas, .secdepto_archtram .ca_anio_de_cierre {
    width: 25%;
    display: inline-block;
    padding: 0 0.5rem;
  }
  .secdepto_archtram .ca_numero_de_caja {
    width: 25%;
    display: inline-block;
    padding: 0 0 0 0.5rem;
  }
  .secdepto_archtram .ca_fecha_de_expedicion {
    width: 50%;
    display: inline-block;
    padding: 0 0 0 0.5rem;
  }
}
.secdepto_archtram .ca_no_de_control {
  display: inline-block;
  padding: 0 0 0 0;
  width: 100%;
}
@media (min-width: 480px) {
  .secdepto_archtram .ca_no_de_control {
    padding: 0 0.5rem 0 0;
    width: 25%;
  }
}
.secdepto_archtram .ca_nombre_estudiante {
  width: 100%;
  display: inline-block;
  padding: 0 0 0 0;
}
@media (min-width: 480px) {
  .secdepto_archtram .ca_nombre_estudiante {
    padding: 0 0 0 0.5rem;
    width: 75%;
  }
}
.secdepto_archtram .ca_btn_buscar_estudiante {
  width: 100%;
  display: inline-block;
}
.secdepto_archtram .ca_btn_buscar_estudiante .cb {
  padding: 0 0 1rem 0;
}
@media (min-width: 480px) {
  .secdepto_archtram .ca_btn_buscar_estudiante {
    width: 270px;
  }
  .secdepto_archtram .ca_btn_buscar_estudiante .cb {
    padding: 0 0.5rem;
  }
}

.ald {
  text-align: right;
}

.ali {
  text-align: left;
}

.alc {
  text-align: center;
}

.boton_contenedor {
  /*
  @include m.telefono {  
      & div:first-child{
          width:var(--tamanio_boton_desktop);
          //width:20%;
          float: var(--alineacion_boton);

          padding: var(--padding);
         }
     }
     */
}
.boton_contenedor table {
  padding: 0;
  border-collapse: collapse;
  width: 100%;
}
.boton_contenedor td {
  padding: 0;
}
.boton_contenedor td:first-child, .boton_contenedor td:last-child {
  width: 0%;
}
.boton_contenedor td:first-child {
  text-align: left;
}
.boton_contenedor td:last-child {
  text-align: right;
}

.boton_contenedor_icono table {
  padding: 0;
  border-collapse: collapse;
  width: 100%;
}
.boton_contenedor_icono td {
  padding: 0;
}

.btn_otro_inventario {
  width: 50%;
}

.modal__contenedor .otro_inventario, .modal__contenedor .crear_expediente {
  width: 50%;
  display: inline-block;
}
.modal__contenedor .otro_inventario .c {
  padding: 0 0.5rem 0 0;
}
.modal__contenedor .crear_expediente .c {
  padding: 0 0 0 0.5rem;
}
.modal__contenedor #btn__crear_otro_inventario {
  height: 89.09px;
}
@media (min-width: 480px) {
  .modal__contenedor #btn__crear_otro_inventario {
    height: 66.06px;
  }
}
.modal__contenedor .contenedor_boton_buscar {
  padding: 0 0.5rem;
  width: 150px;
  display: inline-block;
}

.cambio_contrasenia {
  width: 500px;
  text-align: right;
}
.cambio_contrasenia .btn_trim_der {
  display: inline-block;
  width: 270px;
}
.cambio_contrasenia .esp_separador {
  padding: 0;
}

.main_admon_personal_depto table {
  width: 100%;
}
.main_admon_personal_depto table th {
  background-color: #a5dc86;
  padding: 1rem 1rem;
}
@media (min-width: 480px) {
  .main_admon_personal_depto table .display_cel {
    display: none;
  }
}
.main_admon_personal_depto table .separador_tbl {
  height: 2px;
  margin: 0rem 0 2rem 0;
}
@media (min-width: 480px) {
  .main_admon_personal_depto table .separador_tbl {
    height: 1px;
    margin: 1rem 0;
  }
}
.main_admon_personal_depto .admon_personal_depto {
  width: 950px;
}
.main_admon_personal_depto .admon_personal_depto .thaa {
  height: 61.38px;
}
.main_admon_personal_depto .admon_personal_depto .a {
  text-align: center;
  height: 61.38px;
}
@media (min-width: 480px) {
  .main_admon_personal_depto .admon_personal_depto .a {
    text-align: left;
    height: unset;
  }
}
.main_admon_personal_depto .admon_personal_depto .d, .main_admon_personal_depto .admon_personal_depto .e {
  text-align: center;
  height: 61.38px;
}
@media (min-width: 480px) {
  .main_admon_personal_depto .admon_personal_depto .d, .main_admon_personal_depto .admon_personal_depto .e {
    height: unset;
  }
}
.main_admon_personal_depto .admon_personal_depto .b, .main_admon_personal_depto .admon_personal_depto .c {
  text-align: center;
  padding: 1rem;
  display: none;
}
@media (min-width: 480px) {
  .main_admon_personal_depto .admon_personal_depto .b, .main_admon_personal_depto .admon_personal_depto .c {
    display: table-cell;
  }
}
.main_admon_personal_depto .tr_encabezado {
  display: none;
}
@media (min-width: 480px) {
  .main_admon_personal_depto .tr_encabezado {
    display: table-row;
  }
}
.main_admon_personal_depto .tr_encabezado .a {
  text-align: left;
}
.main_admon_personal_depto .tr_encabezado .b {
  width: 200px;
}
.main_admon_personal_depto .tr_encabezado .c {
  width: 220px;
}

.admon_usuarios_contenedor_boton_asignar {
  width: 180px;
  display: inline-block;
  padding: 0 0.5rem;
}

.main_admon_usuario .admon_usuarios {
  width: 950px;
}
.main_admon_usuario .admon_usuarios .toggle-button {
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(246, 254, 194)), color-stop(9%, rgb(246, 254, 194)), color-stop(100%, rgb(31, 217, 192)));
  background: linear-gradient(45deg, rgb(246, 254, 194) 0%, rgb(246, 254, 194) 9%, rgb(224, 83, 17) 100%) no-repeat fixed center;
}
.main_admon_usuario .admon_usuarios .toggle-button .handle {
  background-color: #CE0000;
}
.main_admon_usuario .admon_usuarios .toggle-button input[type=checkbox]:checked + .handle {
  background-color: #04AA6D;
}
.main_admon_usuario .admon_usuarios .toggle-button:has(input[type=checkbox]:checked) {
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(246, 254, 194)), color-stop(9%, rgb(246, 254, 194)), color-stop(100%, rgb(31, 217, 192)));
  background: linear-gradient(45deg, rgb(246, 254, 194) 0%, rgb(246, 254, 194) 9%, rgb(31, 217, 192) 100%) no-repeat fixed center;
}
.main_admon_usuario .admon_usuarios .cbab {
  width: 53px;
}
.main_admon_usuario .cnt_btn {
  text-align: right;
}
.main_admon_usuario .btn_trim_der {
  display: inline-block;
  width: 250px;
}
.main_admon_usuario table {
  width: 100%;
}
.main_admon_usuario table .o {
  display: none;
}
@media (min-width: 480px) {
  .main_admon_usuario table .o {
    display: table-cell;
  }
}
.main_admon_usuario table .n, .main_admon_usuario table .i {
  padding: 2rem 0;
}
.main_admon_usuario table th {
  background-color: #a5dc86;
  padding: 1rem 1rem;
}
.main_admon_usuario table .h {
  width: 97px;
}
.main_admon_usuario table .s {
  text-align: center;
  padding: 1rem 0;
}
.main_admon_usuario table .g, .main_admon_usuario table .h, .main_admon_usuario table .i, .main_admon_usuario table .s {
  display: table-cell;
}
@media (min-width: 480px) {
  .main_admon_usuario table .g, .main_admon_usuario table .h, .main_admon_usuario table .i, .main_admon_usuario table .s {
    display: none;
  }
}
.main_admon_usuario table .separador_tbl {
  height: 2px;
  margin: 0rem 0 2rem 0;
}
@media (min-width: 480px) {
  .main_admon_usuario table .separador_tbl {
    height: 1px;
    margin: 1rem 0;
  }
}
.main_admon_usuario table .m {
  width: 55px;
}
.main_admon_usuario table .n {
  width: 183px;
}
.main_admon_usuario .tr_encabezado {
  display: none;
}
@media (min-width: 480px) {
  .main_admon_usuario .tr_encabezado {
    display: table-row;
  }
}
.main_admon_usuario .tr_encabezado .a {
  width: 240px;
}
.main_admon_usuario .tr_encabezado .b {
  text-align: left;
}
.main_admon_usuario .tr_encabezado .c {
  width: 97px;
}
.main_admon_usuario .div_encabezado_fijo {
  position: fixed;
  z-index: 1;
  padding: 0 1.2rem;
  top: 46px;
  width: var(--ancho_div_principal);
  display: var(--display_desktop);
}

.toast_ayuda {
  width: 100% !important;
}
@media (min-width: 480px) {
  .toast_ayuda {
    width: 80% !important;
  }
}

.toast_ayuda_text {
  font-size: 75% !important;
  margin: 0 !important;
}
@media (min-width: 480px) {
  .toast_ayuda_text {
    font-size: 100% !important;
  }
}

.toast_ayuda_title {
  font-size: 75% !important;
  margin: 0 0 1rem 0 !important;
}
@media (min-width: 480px) {
  .toast_ayuda_title {
    font-size: 100% !important;
  }
}

/*.swal2-container:has(.main_admon_usuario){
     width:100%!important;
    }
*/
/*
ENCABEZADO DESKTOP
1	a
2	b
3	c
4	d
5	e
6	f

ENCABEZADO CELPHONE
7	g
8	h
9	i
10	j
11	k
12	l

COLUMNAS DESKTOP
13	m
14	n
15	o
16	p
17	q
18	r

COLUMNAS CELPHONE
19	s
20	t
21	u
22	v
23	w
24	x
25	y
26	z

*/
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(1.5rem) * -0.5rem);
  margin-left: calc(var(1.5rem) * -0.5rem);
}

.col-3 {
  width: 25%;
  flex: 0 0 auto;
}

.col-4 {
  width: 33.3333333333%;
  flex: 0 0 auto;
}

.col-6 {
  width: 50%;
  flex: 0 0 auto;
}

.col-9 {
  width: 75%;
  flex: 0 0 auto;
}

.col-12 {
  width: 100%;
  flex: 0 0 auto;
}

.justify-content-center {
  justify-content: center !important;
}

.contenedor-materias {
  width: 100%;
  margin: auto;
}
.contenedor-materias .cont_materia {
  padding: 0.3em;
  display: inline-block;
  width: 50%;
}

.enfatizar {
  font-weight: bold;
  font-style: italic;
  color: red;
}

.icono-circular {
  display: inline-block;
  background-color: white;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  padding: 4px;
  align-content: center;
  margin-right: 10px;
}

.icono-vigneta {
  margin-right: 8px;
}

.list-el-clickable {
  margin: 0.2em;
  background-color: #0d6efd;
  border-radius: 10px;
  color: white;
  padding: 7px;
  cursor: pointer;
}

.pill {
  border-radius: 20px;
  display: inline-flex;
  width: 45px;
  justify-content: center;
}

.pill-sm {
  border-radius: 20px;
  display: inline-flex;
  width: auto;
  font-size: x-small;
  justify-content: center;
  margin: 0px;
  padding: 5px;
  margin-bottom: 2px;
}

.input-text-simple {
  border-radius: 10px;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-flex;
  border: 2px #39433B solid;
  text-align: center;
}

.btn-x-sm {
  font-size: small;
  width: 25px;
  height: 25px;
  padding: 2px 5px 2px 5px;
  margin: 0px;
}

.el-nvo {
  background-color: #28a745;
}

.el-err {
  background-color: #dc3545;
}

.el-elim {
  background-color: #999999;
}

.hidden {
  display: none !important;
}

.sangria-fr {
  padding-left: 1.25em;
  /* Sangra todo el párrafo */
  text-indent: -1.25em;
  /* Mueve la primera línea hacia la izquierda */
  margin-left: 0;
  /* Asegúrate de que no haya un margen izquierdo que interfiera */
}

.inline-w50p {
  display: inline-block;
  width: 50%;
}

.inline-w40p {
  display: inline-block;
  width: 40%;
}

.inline-w60p {
  display: inline-block;
  width: 60%;
}

.inline-w70p {
  display: inline-block;
  width: 70%;
}

.inline-w30p {
  display: inline-block;
  width: 30%;
}

.inline-w33p {
  display: inline-block;
  width: 33%;
}

.tabla-fuentes {
  width: 100%;
}

.btn {
  margin: 4px 2px;
  width: calc(100% - 8px);
}

.tbl-encabezado {
  padding: 5px;
  background: #39433B;
  color: white;
  font-weight: bold;
  text-align: center;
}

.tbl {
  border-collapse: collapse;
  border: 1px #39433B solid;
  border-radius: 10px;
  margin-bottom: 7px;
  margin-top: 7px;
}

.tbl-esq-sup-izq {
  border-radius: 10px 0px 0px 0px;
}

.tbl-esq-sup-der {
  border-radius: 0px 10px 0px 0px;
}

.tbl-esq-inf-izq {
  border-radius: 0px 0px 10px 0px;
}

.tbl-esq-inf-der {
  border-radius: 0px 0px 0px 10px;
}

.tbl-celda {
  padding: 5px;
}

.cont-instrucciones {
  padding: 8px;
  text-align: justify;
}

.celda-fecha {
  padding: 3px;
  font-size: small;
}

.error {
  color: red;
  font-weight: bold;
  font-size: small;
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/*
.btn-info {
    background-color: rgb(86, 184, 255);
    & :hover{
        background-color: rgb(0, 149, 255) !important;
    }
}

.btn-err {
    background-color: rgb(255, 93, 93);
    & :hover{
        background-color: rgb(163, 1, 1)!important;
    }
}*/
.btn-sm {
  font-size: small;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.cont-btn-sm {
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 0.5em;
}

.contenedor-elemento {
  cursor: pointer;
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 0.3em;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ddd;
  border-radius: 15px;
  vertical-align: top;
}
@media (min-width: 480px) {
  .contenedor-elemento {
    font-size: 1.3em;
    width: 40%;
  }
}

.contenedor-resaltado-1 {
  background-color: rgba(130, 224, 170, 0.5);
  border-radius: 10px;
  border: 1px #2ecc71 solid;
  padding: 15px;
  text-align: justify;
  margin-bottom: 7px;
  margin-top: 7px;
  font-size: small;
}

.row-resaltado-1 {
  background-color: rgba(130, 224, 170, 0.5);
  border: 1px #2ecc71 solid;
}

.contenedor-sin-fondo {
  border-radius: 10px;
  border: 2px #2ecc71 solid;
  padding: 15px;
  text-align: justify;
  margin-bottom: 7px;
  margin-top: 7px;
}

.contenedor-resaltado-2 {
  background-color: rgba(133, 193, 233, 0.5);
  border-radius: 10px;
  border: 1px #3498db solid;
  padding: 15px;
  text-align: justify;
  margin-bottom: 7px;
  margin-top: 7px;
  font-size: small;
}

.con-scroll-bar {
  height: 10em;
  overflow-x: hidden;
  overflow-y: scroll;
}

.contenedor-elemento:hover .elemento-img {
  filter: none;
}

.elemento-img {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  width: 100%;
  background-color: blueviolet;
  height: 150px;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

#inst_didact_img_1 {
  background-image: url(https://www.cdmadero.tecnm.mx/sii/instrumentacion_didactica/inst_didact_1.jpg);
}

#inst_didact_img_2 {
  background-image: url(https://www.cdmadero.tecnm.mx/sii/instrumentacion_didactica/inst_didact_2.jpg);
}

#inst_didact_img_3 {
  background-image: url(https://www.cdmadero.tecnm.mx/sii/instrumentacion_didactica/inst_didact_3.jpg);
}

#inst_didact_img_4 {
  background-image: url(https://www.cdmadero.tecnm.mx/sii/instrumentacion_didactica/inst_didact_4.jpg);
}

#inst_didact_img_5 {
  background-image: url(https://www.cdmadero.tecnm.mx/sii/instrumentacion_didactica/inst_didact_5.jpg);
}

#inst_didact_img_6 {
  background-image: url(https://www.cdmadero.tecnm.mx/sii/instrumentacion_didactica/inst_didact_6.jpg);
}

.materia_img {
  background-image: url(https://www.cdmadero.tecnm.mx/sii/instrumentacion_didactica/mural_itcm.jpg);
}

.enfasis-rojo {
  font-weight: bold;
  font-style: italic;
  color: red;
}

/*.elemento-img:hover{
    filter:none;
}*/
.elemento-contenido {
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 1em;
}
@media (min-width: 480px) {
  .elemento-contenido {
    font-size: 1.3em;
  }
}

.btn_azul {
  background-color: #51A2FF;
}
.btn_azul:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn_azul:hover {
  background-color: #1e87ff;
}

/*.contenedor-fuente-inf{
    border: 2px solid darkgray;
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    border-radius: 10px;
    padding: 0.5em;
    & .titulo{
        font-weight: bold;
    }
    & .nombre{
        font-style: italic;
    }  
}*/
.fuente-inf-usr {
  background-color: #A3F1FF;
}

.fuente-inf-admin {
  background-color: #D6EAF8;
}

.radio-group {
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}
.radio-group .div-lbl-col2 {
  display: inline-block;
  width: 35%;
}
.radio-group .div-lbl-col3 {
  display: inline-block;
  width: 20%;
}
.radio-group .div-radio-col2 {
  display: inline-block;
  width: 15%;
}
.radio-group .div-radio-col3 {
  display: inline-block;
  width: 13%;
}

.cnt_input_text textarea {
  resize: none;
  outline: none;
  padding: 1rem 1rem 1rem 1rem;
  border-width: 3px;
  width: 100%;
  font-size: 14px;
  border-style: none none solid none;
  border-color: rgba(128, 128, 128, 0.527);
  background: transparent;
  transition: 0.5s;
  box-shadow: none;
}
.cnt_input_text textarea:not(:-moz-placeholder-shown) + label {
  top: -1rem;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}
.cnt_input_text textarea:not(:placeholder-shown) + label {
  top: -1rem;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}
.cnt_input_text textarea:disabled {
  cursor: not-allowed;
}
.cnt_input_text textarea.habilitado:focus {
  border: 0px solid #04AA6D;
  border-width: 0 0 3px 0;
}
.cnt_input_text textarea.habilitado:focus + label {
  top: -10px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  color: #04AA6D;
}
.cnt_input_text label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0 4px;
  color: rgba(128, 128, 128, 0.527);
  transition: 0.5s;
  z-index: -1;
}

.tbl-cal {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

.tbl-cal th td {
  text-align: left;
  padding: 8px;
}

.titulo-1 {
  font-size: 1.3em;
  font-weight: bold;
}

.hr-1 {
  border: 1px solid #00c8c2;
  border-radius: 5px;
}

.div-seccion-1 {
  border: 2px solid #00c8c2;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
  border-radius: 10px;
  padding: 0.5em;
}

/**
* Estilos para módulo de Jefe de Area
*/
.table-container {
  overflow-x: auto;
}

.rounded-table {
  border-collapse: separate;
  /* Important for border-radius to work on the table */
  border-spacing: 0;
  border: 1px solid #39433B;
  /* Example border */
  border-radius: 10px;
  /* Adjust the value for desired roundness */
  overflow: hidden;
  /* Ensures content doesn't spill over rounded corners */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.rounded-table th,
.rounded-table td {
  padding: 8px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tbl-titulo-ordenable {
  display: inline-block;
  width: calc(100% - 25px);
}

.th-sort-icon {
  display: inline-block;
  text-align: right;
  cursor: pointer;
}

.txt-sm {
  width: 28px;
  border-radius: 6px;
  border: 1px solid gray;
}

.btn-guardar-unico {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.titulo_grupo {
  font-weight: bold;
}

.tbl_gde_info {
  width: 100%;
  border-spacing: 0px;
}
.tbl_gde_info td, .tbl_gde_info th {
  padding-left: 0.3em;
  padding-right: 0.3em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  padding-left: 0.3em;
  padding-right: 0.3em;
}
.tbl_gde_info th {
  background-color: black;
  color: white;
  font-size: medium;
}
.tbl_gde_info td {
  border-collapse: collapse;
  border: 0px;
  font-size: small;
}
.tbl_gde_info tr:nth-child(even) {
  background-color: #d1f2eb;
}
.tbl_gde_info tr:nth-child(odd) {
  background-color: #a3e4d7;
}

.tag-container {
  background-color: aliceblue;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  gap: 0.5em;
  background: linear-gradient(-45deg, #ebfeff, #c6ffe7, #b5ebff, #ffffff);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}
.tag-container .foto {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background-color: rgb(138, 247, 189);
}

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*
* Estilos para Select B
*/
/*
.select-b {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0.5em;
    font-size: 1em;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;

    &, 
    &::picker(select) {
    appearance: base-select;
    }
    &,
    &::picker-icon {
        color: #999999;
        transition: 0.4s rotate;
    }


    &:hover {
        border-color: #999;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }


}*/
.select-b {
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 0.5em;
  font-size: 1em;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.select-b:hover, .select-b:focus {
  border-color: #999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.select-b::picker-icon {
  color: #D5A041;
  transition: 0.4s rotate;
}
.select-b:open::picker-icon {
  rotate: 180deg;
}
.select-b::picker(select) {
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
  border: none;
  border-radius: 8px;
  opacity: 0;
  transition: all 0.4s allow-discrete;
  top: calc(anchor(bottom) + 1px);
  left: anchor(10%);
}
.select-b:open::picker(select) {
  opacity: 1;
}
@starting-style {
  .select-b:open::picker(select) {
    opacity: 0;
  }
}
.select-b option {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  border: 2px solid #dddddd;
  background: #eeeeee;
  padding: 10px;
  transition: 0.4s;
}
.select-b option:nth-of-type(odd) {
  background: white;
}
.select-b option:hover, .select-b option:focus {
  background: #D5A041 !important;
}
.select-b option:first-of-type {
  border-radius: 8px 8px 0 0;
}
.select-b option:last-of-type {
  border-radius: 0 0 8px 8px;
}
.select-b option:not(:last-of-type) {
  border-bottom: none;
}
.select-b option:checked {
  font-weight: bold;
}
.select-b option::checkmark {
  order: 1;
  margin-left: auto;
  content: "";
}
.select-b option .icon {
  font-size: 1.6rem;
  text-box: trim-both cap alphabetic;
}
.select-b selectedcontent .icon {
  display: none;
}

@supports not ((-webkit-appearance: base-select) or (-moz-appearance: base-select) or (appearance: base-select)) {
  body::before {
    content: "Your browser does not support `appearance: base-select`.";
    color: black;
    background-color: wheat;
    position: fixed;
    left: 0;
    right: 0;
    top: 40%;
    text-align: center;
    padding: 1rem 0;
    z-index: 1;
  }
}
.modal__contenedor_de_contenedores {
  position: relative;
  width: min(95%, var(--anchura, 500px));
  margin: 1rem auto;
  /*ANCHURA*/
  height: var(--altura, auto); /*ALTURA DE LA PRIMER VENTANA*/
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: white;
  border-radius: 10px;
  transition: transform 0.5s ease, height 0.2s ease;
}

.modal__contenedor_de_contenedores.activo {
  height: var(--alturaActivo, auto);
}

.modal__contenedor_de_contenedores .a {
  transition: none;
  transform: translateX(0);
}

.modal__contenedor_de_contenedores .b {
  position: absolute;
  transition: none;
  transform: translateX(500px);
}

.modal__contenedor_de_contenedores.activo .a {
  transition: transform 0.5s ease;
  transform: translateX(-500px);
}

.modal__contenedor_de_contenedores.activo .b {
  transition: transform 0.5s ease;
  transform: translateX(0);
}

.modal__contenedor {
  padding: 1.2rem 1.2rem;
  width: 100%;
}
.modal__contenedor .btn_icono_a {
  padding: 1rem 1.3rem;
}
.modal__contenedor .btn_icono_c {
  padding: 1rem 1.2rem;
}

.modal__contenedor_de_fondo {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  -webkit-backdrop-filter: blur(1.8px);
          backdrop-filter: blur(1.8px);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-icono {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 1.5em auto 0.6em;
  border: 0.25em solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  border-color: #000;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
}

.modal__titulo {
  text-align: center;
  margin: 1.2em 0 0.5em 0;
}

.modal__parrafo {
  text-align: center;
  margin: 0.5em 0;
}

.modal__boton_ok {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #7066e0;
  color: #fff;
  font-size: 1em;
  /*&:focus ,*/
}
.modal__boton_ok:hover {
  box-shadow: 0 0 0 3px rgba(112, 102, 224, 0.5);
  background-color: #7066e0;
}

.modal__boton_estilo {
  transition: box-shadow 0.1s;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0);
  font-weight: 500;
  cursor: pointer;
  padding: 1rem 1rem;
}

/*
.modal__boton_ok:focus {
     box-shadow: 0 0 0 3px rgba(112,102,224,.5)
    }
*/
.modal__boton_subir {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: rgb(48, 133, 214);
  color: #fff;
  font-size: 1em;
  /*&:focus,*/
}
.modal__boton_subir:hover {
  box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
  background-color: rgb(48, 133, 214);
}

.modal__boton_guardar, .modal__boton_aceptar {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #28a745;
  color: #fff;
  font-size: 1em;
}
.modal__boton_guardar:hover, .modal__boton_aceptar:hover {
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
  background-color: #28a745;
}

.modal__boton_cancelar {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #dc3741;
  color: #fff;
  font-size: 1em;
}
.modal__boton_cancelar:hover {
  box-shadow: 0 0 0 3px rgba(220, 55, 65, 0.5);
  background-color: #dc3741;
}

/*
.modal__boton_cancelar:focus {
     box-shadow: 0 0 0 3px rgba(220,55,65,.5)
    }    
*/
/*
.modal__boton_subir:focus {
     box-shadow: 0 0 0 3px rgba(100,150,200,.5)
    }   
*/
/*
.modal__boton_guardar:focus {
     box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
    }     
    */
@keyframes modal-animacion-mostrar-icono {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
.modal__mostrar {
  animation: modal__mostrar-animacion 0.3s;
}

@keyframes modal__mostrar-animacion {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.modal__ocultar {
  animation: modal__ocultar 0.15s forwards;
}

@keyframes modal__ocultar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
.modal__botonera {
  text-align: center;
}

.input__contenedor_modal {
  position: relative;
  height: 45px;
  margin: 1rem 0;
}
.input__contenedor_modal .input__text:focus {
  border: 0px solid #04AA6D;
  border-width: 0 0 3px 0;
}
.input__contenedor_modal .input__text:focus + .label {
  top: -10px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  color: #04AA6D;
}

.modal__contenedor_boton_salir, .modal__contenedor_boton_guardar {
  padding: 0 0.5rem;
  width: 120px;
  display: inline-block;
}

.modal__contenedor_boton_subir {
  padding: 0 0.5rem;
  width: 120px;
  display: inline-block;
}

.modal__contenedor_boton_aceptar {
  padding: 0 0.5rem;
  width: 150px;
  display: inline-block;
}

.cntA_btn_aprobado {
  padding: 0 0.5rem;
  width: 160px;
  display: inline-block;
}

.modal-icono.error {
  border-color: #f27474;
  color: #f27474;
}

.modal-icono.error.mostrar-icono {
  animation: modal-animacion-mostrar-icono 0.5s;
}

.modal-icono.error .marcador-x {
  position: relative;
  flex-grow: 1;
}

.modal-icono.error [class^=marcador-x-linea] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #f27474;
}

.modal-icono.error [class^=marcador-x-linea][class$=izquierda] {
  left: 1.0625em;
  transform: rotate(45deg);
}

.modal-icono.error [class^=marcador-x-linea][class$=derecha] {
  right: 1em;
  transform: rotate(-45deg);
}

.modal-icono.error.mostrar-icono .marcador-x {
  animation: modal-animacion-error-marcador-x 0.5s;
}

@keyframes modal-animacion-error-marcador-x {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}
.modal-icono.exitoso {
  border-color: #a5dc86;
  color: #a5dc86;
}
.modal-icono.exitoso .linea_tip {
  animation: modal_icono_exitoso_linea_tip 0.75s;
}
.modal-icono.exitoso [class^=circulo_linea][class$=izquierda] {
  top: -0.4375em;
  left: -2.0635em;
  transform: rotate(-45deg);
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
  background-color: rgb(255, 255, 255);
}
.modal-icono.exitoso [class^=circulo_linea] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  transform: rotate(45deg);
  border-radius: 50%;
}
.modal-icono.exitoso [class^=linea] {
  display: block;
  position: absolute;
  z-index: 2;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #a5dc86;
}
.modal-icono.exitoso [class^=linea][class$=tip] {
  top: 2.875em;
  left: 0.8125em;
  width: 1.5625em;
  transform: rotate(45deg);
}
.modal-icono.exitoso .linea_larga {
  animation: modal_icono-exitoso-linea-larga 0.75s;
}
.modal-icono.exitoso [class^=linea][class$=larga] {
  top: 2.375em;
  right: 0.5em;
  width: 2.9375em;
  transform: rotate(-45deg);
}
.modal-icono.exitoso .anillo {
  position: absolute;
  z-index: 2;
  top: -0.25em;
  left: -0.25em;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
}
.modal-icono.exitoso .fijo {
  position: absolute;
  z-index: 1;
  top: 0.5em;
  left: 1.625em;
  width: 0.4375em;
  height: 5.625em;
  transform: rotate(-45deg);
  background-color: rgb(255, 255, 255);
}
.modal-icono.exitoso .circulo_linea_derecha {
  animation: rotacion-exitosa-linea-circular 4.25s ease-in;
}
.modal-icono.exitoso [class^=circulo_linea][class$=derecha] {
  top: -0.6875em;
  left: 1.875em;
  transform: rotate(-45deg);
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
  background-color: rgb(255, 255, 255);
}
.modal-icono.exitoso [class^=circulo_linea] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  transform: rotate(45deg);
  border-radius: 50%;
}

@keyframes rotacion-exitosa-linea-circular {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes modal_icono-exitoso-linea-larga {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@keyframes modal_icono_exitoso_linea_tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
.modal-icono.advertencia {
  border-color: #facea8;
  color: #f8bb86;
}
.modal-icono.advertencia .icono_contenido {
  display: flex;
  align-items: center;
  font-size: 3.75em;
}
.modal-icono.advertencia .icono_contenido {
  animation: marca-i-animacion 0.5s;
}
.modal-icono.advertencia.mostrar-icono {
  animation: icono-contenedor-advertencia-animacion 0.5s;
}

@keyframes icono-contenedor-advertencia-animacion {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes marca-i-animacion {
  0% {
    transform: rotateZ(45deg);
    opacity: 0;
  }
  25% {
    transform: rotateZ(-25deg);
    opacity: 0.4;
  }
  50% {
    transform: rotateZ(15deg);
    opacity: 0.8;
  }
  75% {
    transform: rotateZ(-5deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}
.modal-icono.informacion {
  border-color: #9de0f6;
  color: #3fc3ee;
}
.modal-icono.informacion .icono_contenido {
  display: flex;
  align-items: center;
  font-size: 3.75em;
}
.modal-icono.informacion .icono_contenido {
  animation: marca-i-animacion 0.8s;
}
.modal-icono.informacion.mostrar-icono {
  animation: icono-contenedor-informacion-animacion 0.5s;
}

@keyframes icono-contenedor-informacion-animacion {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
.modal-icono.pregunta {
  border-color: #c9dae1;
  color: #87adbd;
}
.modal-icono.pregunta .icono_contenido {
  display: flex;
  align-items: center;
  font-size: 3.75em;
}
.modal-icono.pregunta .icono_contenido {
  animation: marca-pregunta-animacion 0.8s;
}
.modal-icono.pregunta.mostrar-icono {
  animation: icono-contenedor-informacion-animacion 0.5s;
}

@keyframes icono-contenedor-informacion-animacion {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes marca-pregunta-animacion {
  0% {
    transform: rotateY(-360deg);
  }
  100% {
    transform: rotateY(0);
  }
}
.notas_contenedor__modal {
  position: fixed;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 0px;
  -webkit-backdrop-filter: blur(1.8px);
          backdrop-filter: blur(1.8px);
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.5s;
  text-align: center;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
.notas_contenedor__modal .cnt_menu {
  display: inline-block;
  margin: 20px 0 0 0;
}
.notas_contenedor__modal .cnt_notas {
  width: 100%;
}
.notas_contenedor__modal .tabla_menu {
  border-radius: 50px;
  background-color: #04AA6D;
  color: #FFFFFF;
  width: 300px;
}
.notas_contenedor__modal .tabla_menu th {
  padding: 5px 16px 5px 16px;
}
.notas_contenedor__modal #cerrar_notas {
  cursor: pointer;
}
.notas_contenedor__modal #guardar_nota {
  cursor: pointer;
}
.notas_contenedor__modal #copiar_notas {
  cursor: pointer;
}
.notas_contenedor__modal h2 {
  font-weight: bold;
  font-size: 1.4rem;
  padding: 0;
  margin: 0;
}
.notas_contenedor__modal p {
  font-size: 1.5rem;
  padding: 0;
  margin: 1rem 0 0 0;
}
.notas_contenedor__modal ul, .notas_contenedor__modal li {
  list-style: none;
}
.notas_contenedor__modal ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0px;
}
.notas_contenedor__modal ul li a {
  text-decoration: none;
  color: #000;
  background: #ffc;
  display: block;
  height: 12em;
  width: 12em;
  padding: 1em;
  box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.7);
  transform: rotate(-6deg);
  transition: transform 0.15s linear;
  overflow-y: auto;
}
.notas_contenedor__modal ul li:nth-child(even) a {
  transform: rotate(4deg);
  position: relative;
  top: 5px;
  background: #cfc;
}
.notas_contenedor__modal ul li:nth-child(3n) a {
  transform: rotate(-3deg);
  position: relative;
  top: -5px;
  background: #ccf;
}
.notas_contenedor__modal ul li:nth-child(5n) a {
  transform: rotate(5deg);
  position: relative;
  top: -10px;
}
.notas_contenedor__modal ul li a:hover, .notas_contenedor__modal ul li a:focus {
  box-shadow: 10px 10px 7px rgba(0, 0, 0, 0.7);
  transform: scale(1.25);
  position: relative;
  z-index: 5;
}
.notas_contenedor__modal ul li {
  margin: 1em;
}
.notas_contenedor__modal .placeholder {
  color: gray;
}
.notas_contenedor__modal .np {
  font-size: 1rem;
  padding: 0;
  margin: 0;
}

.oculta_sb::-webkit-scrollbar {
  display: none;
}

.oculta_sb {
  scrollbar-width: none;
}

/*
@use 'modulos';
@use 'modal';



@use 'utils';


@use 'paginas';


@use 'ui';

@use 'admin';
@use 'registro';
*/
/*# sourceMappingURL=app.css.map */
