@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif !important;
  background-color: rgb(230, 230, 230 , 1.0);

}

.cont-general{
  background-color: rgb(230, 230, 230 , 1.0);
}


/* ====================== */
/* EFECTO DE CARGA        */
/* ====================== */
.content_loader {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 100;
  display: none; }

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #4C4DC3;
  border-bottom: 16px solid #4C4DC3;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  align-self: center; }

.loader_centro {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  white-space: nowrap;
  vertical-align: middle;
  align-self: center; }

.loader_centro p {
  color: white;
  font-size: 20px;
  align-self: center; }

  @keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }



.content_loader_tmp {
  width: 100%;
  height: 100%;
  background-color: #F5F8FC;
  position: fixed;
  z-index: 100;
  display: none; }

.loader_tmp {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #4C4DC3;
  border-bottom: 16px solid #4C4DC3;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  align-self: center; }

.loader_centro_tmp {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  white-space: nowrap;
  vertical-align: middle;

  align-self: center; }

.loader_centro_tmp p {
  color: #333;
  font-size: 20px;
  align-self: center; }

  @keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }








/* ====================== */
/* MENU DESARROLLADOR     */
/* ====================== */

/* Botón */
#btnMenu {
  margin: 15px;
  padding: 10px 15px;
}

/* Sidebar izquierdo */
.sidebar {
  position: fixed;
  top: 0;
  left: -350px;           /* OCULTO */
  width: 350px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1001;
}

/* Cuando está visible */
.sidebar.activo {
  left: 0;
}

/* Fondo oscuro */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 1000;
}

.overlay.activo {
  display: block;
}



/* ====================== */
/* MENU SUPERIOR     */
/* ====================== */

.dv_title_mobile{
  display: none !important;
  background-image: url(../../img/proceso/aspirantes2.png) !important;
  position: absolute;
  left: 50%;
  margin-left: -60px;
}

header{
  background-color: #4C4DC3 !important;
  height: 50px;
}


/**/
/**/
/**/

.cont-pre{
  margin: 20px 0;
}

/**/
/**/
/**/
.firma a{
  text-decoration: none;
}

.btn-gral {
  background-color: #aaa;
  border-radius: 4px;
  margin: 20px 0;
  padding: 10px;
  text-align: center;
  width: 190px;
}

.btn-gral:hover {
  cursor: pointer;
  background-color: #666;
}

.select-loading {
  display: none;
}

.frm_campo2 {
  margin: 15px 0;
}

.frm_campo2 label{
  margin-bottom: 5px;
}

    .info-question::before{
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: rgba(0,0,0,0.5);
    content: '?';
    text-align: center;
    line-height: 17px;
    font-size: 16px;
    border-radius: 9px;
    vertical-align: middle;
    color:#fff;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    padding: 2px 0;
  }
  .info-question{
      position: relative;
  }
  .info-question p::before{
    display: inline-block;
    content: '';
    position: absolute;
    left: 25%;
    bottom: -5px;
    background:rgba(0,0,0,0.9);
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    margin-left: -6px;
  }
  .info-question p{
    display: none;
    font-size: 16px;
    background:rgba(0,0,0,0.9);
    padding: 3px 7px;
    border-radius: 2px;
    position: absolute;
    width: 300px;
    text-align: left;
    bottom: 3px;
    margin-bottom: 20px;
    left: 50%;
    margin-left: -75px;
    color: white;
  }
  .info-question:hover p,
  .info-question:visited p,
  .info-question:active p,
  .info-question:focus p{
    display: inline-block;
  }

  .msg-error-asp{
    color: coral;
  }