/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #49b5e7;
}

a:hover {
  color: #76c7ed;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Dosis", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #49b5e7;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6dc4ec;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}

#header .logo a {
  color: #0f394c;
}

#header .logo img {
  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Dosis", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #324810;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #49b5e7;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #49b5e7;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar .user-log span > i {
  padding-right: 5px;
  font-size: 18px;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0f394c;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(7, 25, 33, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #0f394c;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #49b5e7;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #49b5e7;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: #f9f9f9;
}

#hero .container {
  padding-top: 84px;
}

#hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 56px;
  color: #324810;
  text-transform: uppercase;
}

#hero h2 {
  color: #333333;
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 25px;
  color: #fff;
  background: #2C4C12;
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  background: #76c7ed;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .hero-img img {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #E6EFE0;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #324810;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 80px 0 60px 0;
  position: relative;
}

.counts::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.counts .title {
  position: relative;
  color: #324810;
  margin-bottom: 40px;
}

.counts .title h3 {
  font-size: 36px;
  font-weight: 700;
}

.counts .title p {
  color: #333333;
}

.counts .counters span {
  font-size: 44px;
  font-weight: 700;
  display: block;
  color: #46494B;
  font-family: "Dosis", sans-serif;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: #444444;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

.services .icon-box:hover {
  transform: translateY(-5px);
}

.services .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #324810;
}

.services .icon-box:hover .title a {
  color: #333333;
}

.services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
  color: #333333;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #49b5e7;
  float: left;
  width: 44px;
  height: 44px;
  background: #E6EFE0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0f394c;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #2079a1;
}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f0f9fd;
  margin-top: 84px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #175977;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f9f9f9;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #E6EFE0;
}


#footer .footer-top {
  padding: 20px 0 20px 0;
  background: #f9f9f9;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #0f394c;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #49b5e7;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #49b5e7;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #49b5e7;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #1da2e0;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  float: left;
  color: #0f394c;
}

@media (max-width: 575px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Seguimiento de egresados
--------------------------------------------------------------*/

#titular .title h1 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #324810;
}

#titular .subtitle h3 {
  font-size: 1.125rem;
  font-weight: normal;
  color: #324810;
}

#formulario input {
  border: none;
  border-bottom: solid 1px #2C4C12;
  border-radius: 0;
}

#formulario label {
  left: unset;
}

#formulario .file_egresados .file-preview .btn-close {
  font-size: 12px;
}

#formulario .file_egresados .file-preview .file-drop-zone {
  min-height: 120px;
  border-color: #2C4C12;
}

#formulario .file_egresados .file-preview .file-drop-zone-title {
  padding: 0;
  font-family: "Dosis", sans-serif;
  font-size: 25px;
}

#formulario .file_egresados .file-caption .btn-primary {
  color: #fafafa;
  background-color: #2C4C12;
  border-color: #2C4C12;
}

.boton-link {
  text-transform: uppercase;
  color: #2C4C12;
  font-family: "Dosis", sans-serif;
  margin-bottom: -4px;
}

.boton-link:after {
  display:block;
  content: '';
  border-bottom: solid 3px #2C4C12;  
  transform: scaleX(0);  
  transition: transform 400ms ease-in-out;
  transform-origin:100% 50%;
}

.boton-link:hover:after {
  transform: scaleX(1);
  
}

.boton {
  text-transform: uppercase;
  /*font-weight: 600;*/
  font-family: "Dosis", sans-serif;
  /*font-size: 16px;*/
  color: #fafafa;
  background-color: #2C4C12;
  /*margin-top: 25px;*/
  /*float: right;*/
  /*padding: 11px 16px;*/
  width: auto;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
  border: solid 1px #2C4C12;
}

.boton > i {
  margin-left: 10px;
}

.btn-add {
  width: auto;
  float: right;
}

#add-referencia {
  box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24);
  transition: 0.2s all;
}

#add-referencia:active {
  transform: scale(0.98);
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}

.btn-delete {
  color: #e83f42;
  cursor: pointer;
}

.btn-add > i {
  padding-right: 10px;
  border-right: 1px solid;
  margin-right: 10px;
  margin-left: 0;
}

.boton:hover  {
  background-color: #fafafa;
  color: #2C4C12;
}

.btn-izq {
  margin-right: 20px;
}

.btn-izq i {
  margin-right: 10px;
}

/*.btn-centro {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
}

.btn-centro .btn-salir {
  display: flex;
  flex-wrap: wrap;
  width: 150px;
  height: auto;
  padding: 10px;
}

.btn-centro .btn-salir .icono {
  flex-basis: 100%;
  font-size: 30px;
}

.btn-centro .btn-salir .texto {
  flex-basis: 100%;
}*/

.nav-steps {
  display: flex;
  align-items: end;
  justify-content: end;
  margin-top: 70px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.nav-steps > div {
  /*float: left;*/
}

#formulario .botones {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

#formulario .row {
  padding-bottom: 5px;
}

.spinner {
  display: none;
}

.formulario table {
  font-size: 0.875rem;
}

.rs > i {
  margin-right: 8px;
}

.cont-centrado {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.botones {
  margin-top: 15px;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Encabezado
--------------------------------------------------------------*/

#titular {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}


/*--------------------------------------------------------------
# steps - miltiple
--------------------------------------------------------------*/
.step-circle {
  /*display: inline-block;*/
  border-radius: 60px;
  /*box-shadow: 0 0 2px #324810;*/
  padding: 10px 15px;
  z-index: 5;
  background-color: #e5e5e5;
  color: #324810;
  border: solid 1px;
}

.step.active .step-circle {
  /* background-color: #324810;
  color: #ffffff;
  border: solid 1px #324810; */
  background-color: #fff;
  color: #324810;
  border: none;
}

.step.active .seccion {
  font-weight: 700;
}

.steps .step .step-circle .bi-pencil {
  display: none;
}

.steps .step .step-circle .bi-input-cursor {
  display: block;
}

.steps .step.active .step-circle .bi-pencil {
  display: block;
}

.steps .step.active .step-circle .bi-input-cursor {
  display: none;
}

.steps .step {
  display: flex;
  align-items: end;
  justify-content: end;

  width: 100%;
  float: left;
  /*padding-bottom: 20px;*/
  margin-bottom: 35px;
  cursor: pointer;
  padding: 10px;
}

.steps .step:first-child {
  /*padding-top: 0;*/
}

.steps .step:last-child {
  /*padding-bottom: 0;*/
  margin-bottom: 0;
}

.steps .step.active {
  /*padding: 10px;*/
  border: solid 1px #324810;
  background-color: #324810;
  color: #fff;
  border-radius: 5px;

  /*box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.5);*/
}

.steps .step.active::before {
  right: -20px;
  /*top: 50%;*/
  transform: translateY(-35%);
  border-left: 15px solid #324810;
}

.steps .step::before {
  content: "";
  width: 0px;
  height: 0px;
  border: 0.9em solid transparent;
    border-left-color: transparent;
    border-left-style: solid;
    border-left-width: 0.8em;
  position: absolute;
}

.steps .step > div {
  float: left;
}

.steps .step .seccion p {
  margin: 0;
  text-align: right;
}

.steps .step .seccion {
  align-self: center;
  padding-right: 15px;
}

.step-line {
  position: absolute;
  left: auto;
  top: 2%;
  right: 33px;
  bottom: 0%;
  width: 2px;
  height: 96%;
  background-color: #324810;
}

.steps {
  float: left;
  position: relative;
  font-family: "Lato", sans-serif;
}



.multi-step {
  border-top: 2px solid rgba(50, 72, 16, 0.3);
  margin-top: 20px;
  margin-bottom: 20px;
}

.multi-step .ld-izq {
  padding-top: 20px;
  padding-bottom: 20px;
}

.multi-step .ld-dr {
  border-left: 2px solid rgba(50, 72, 16, 0.3);
  padding-top: 20px;
}

/*--------------------------------------------------------------
# steps - multiple - mobile
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# BOTON - Cerrar 
--------------------------------------------------------------*/

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

/*--------------------------------------------------------------
# Form - fields 
--------------------------------------------------------------*/

.formulario {
  font-family: "Dosis", sans-serif;
}

.formulario .form-floating > label {
  left: 12px;
}

.formulario input[type=checkbox]:checked + label {
  color: #324810;
  font-weight: 700;
} 

.formulario .instr {
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Dosis", sans-serif;
  color: #324810;
  /*border-bottom: 1px solid;*/
  padding-bottom: 5px;
}

.formulario .instr2 {
  font-weight: 400;
  /*font-style: italic;*/
  text-transform: capitalize;
}

.formulario .question {
  /*font-weight: 700;*/
  /*text-transform: uppercase;*/
  font-family: "Dosis", sans-serif;
  color: #324810;
  /*border-bottom: 1px solid;*/
  padding-bottom: 5px;
}

.formulario .respuesta {
  margin-left: 15px;
  padding-bottom: 5px;
}

/* .formulario .txtOtra {
  display: none;
}
 */

.formulario .chkOtra {
  display: none;
}

.formulario .form-check {
  margin-top: .125rem;
}

.formulario .form-check label.btn {
  width: 50px;
}

.formulario .form-check label.btn-txt {
  width: auto;
}

.matrix table th,
.matrix table td {
  padding: .2rem .2rem;
}

.combo select {
  border: 2px solid #809471;
  border-radius: 0;
  box-shadow: none;
}

.combo select:focus {
  border-color: rgba(13, 110, 253, 0.25);
  border-width: 2px;
  box-shadow: none;
}

/* Floating  */

.inputbox {
  position: relative;
  /*margin-bottom: 20px;
  width: 100%*/
}

.inputbox span {
  position: absolute;
  top: 0;
  left: 25px;
  transition: 0.5s;
  pointer-events: none;
  opacity: 0.50;
}

.inputbox.icono span {
  top: 7px;
}

.inputbox i {
  position: absolute;
  top: 7px;
  /*right: 8px;*/
  transition: 0.5s;
  /*color: #3F51B5;*/
}

.inputbox input:focus~span {
  transform: translateX(-0px) translateY(-15px);
  font-size: 14px;
  opacity: 1;
  font-weight: 700;
}

.inputbox input:not(:placeholder-shown)~span {
  transform: translateX(-0px) translateY(-15px);
  font-size: 12px;
  /*opacity: .65;*/
}
/* .inputbox input:valid~span {
  transform: translateX(-0px) translateY(-15px);
  font-size: 12px
}
 */
 .login-egresados {
  height: 100%;
  background: #E6EFE0;
  /*background: linear-gradient(0deg, rgb(50, 72, 16) 0%, rgb(255, 255, 255) 44%);*/
}

.login-egresados #header {
  background: none;
}

.login-card {
  /*height: 370px;*/
  /* margin-top: 14%;
  margin-bottom: auto;
  width: 400px;
  background-color: rgba(0,0,0,0.5); */
}

.login-card .c-body .boton {
  width: 100%;
}

#loginEgresado .cards {
  max-width: 400px;
  width: 100%;
  margin: 100px auto 100px;
  position: relative;
}

#loginEgresado .input-group .icon i {
  position: absolute;
  left: 5px;
  bottom: 10px;
  z-index: 3;
  font-size: 14px;
}

#loginEgresado .invalid-feedback {
  position: absolute;
  bottom: -22px;
  z-index: 10;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title > select {
  margin-right: 5px;
}


#loginEgresado .cards .card:first-child {
  background: #fafafa;
  height: 10px;
  border-radius: 5px 5px 0 0;
  margin: 0 10px;
  padding: 0;
}

#loginEgresado .cards .card {
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 5px;
  padding: 60px 0 40px 0;
  background: #fff;
}

.msg-inicio #loginEgresado .cards .login-card::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-image: url(http://localhost/egresadosgit/img/back.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: bottom;
}

#loginEgresado .cards .card.alt {
  position: absolute;
  top: 40px;
  right: -70px;
  z-index: 10;
  width: 140px;
  height: 140px;
  background: none;
  border-radius: 100%;
  box-shadow: none;
  padding: 0;
  transition: 0.3s ease;
}

#loginEgresado .cards .card.alt .toggle {
  position: relative;
  background: #324810;
  width: 140px;
  height: 140px;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  color: #ffffff;
  font-size: 58px;
  line-height: 140px;
  text-align: center;
  /*cursor: pointer;*/
}

.login-card .login-title {
  font-size: 2.25rem;
  border-left: 5px solid #324810;
  margin: 0 0 70px;
  padding: 10px 0 10px 50px;
  color: #324810;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.login-card > .card-header {
  background-color: transparent;
}

.login-card > .card-footer {
  background-color: transparent;
}

.login-card #frmegresado,
.login-card #frmfederado {
  margin: 0 30px;
}

.login-card #frmegresado label {
  color: #324810;
  width: 100%;
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.login-card #frmegresado input {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid;
  padding-left: 35px;
}

.login-card #frmegresado input[readonly] {
  background-color: transparent;
}

.login-card #frmegresado input:focus {
  border-bottom: 2px #324810 solid;
  outline: none;
  box-shadow: none;
}

.login-card .err-ingresar {
  float: right;
}

.login-card .err-ingresar > a {
  color: rgba(0,0,0,0.6);
  font-weight: 200;
}

.login-card .aviso {
  width: 80%;
  float: left;
  margin: 0 10%;
  padding-top: 15px;
  text-align: center;
}

.login-card .aviso > a {
  text-transform: uppercase;
  color: rgba(0,0,0,0.8);
  font-weight: 700;
}

#avisoPrivacidad .info {
  text-align: justify;
}

#avisoPrivacidad .lnkIcon {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#avisoPrivacidad .lnkIcon > a {
  color: rgba(44, 76, 18, 0.6);
  font-size: 70px;
  box-shadow: 0 0 0 4px rgba(44, 76, 18, 0.6);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  line-height: 115px;
  text-align: center;
  transition: all 0.6s;
}

#avisoPrivacidad .lnkIcon > a:hover {
  color: rgba(44, 76, 18, 1);
  box-shadow: 0 0 0 4px rgba(44, 76, 18, 1);
}

 .pag-msg-pre {
  height: 100%;
  background: linear-gradient(0deg, rgba(50,72,16,1) 0%, rgba(255,255,255,1) 44%);
 }

 .pag-msg-pre #titular > .container {
  display: none;
 }

 .pag-msg-pre #titular {
  /*margin-bottom: 200px;*/
 }

 .pag-msg-pre #header,
 .login-egresados #header {
  box-shadow: none;
 }

 .pag-msg-pre .desc {
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  margin: auto;
  height: 35%;
 }

 .msg-pre {
  font-family: "Dosis", sans-serif;
  color: #324810;
  /*margin-bottom: 200px;*/
 }

 .msg-pre .titulo {
  font-size: 2.5rem;
  font-weight: bold;
  padding-bottom: 40px;
 }

 .msg-pre .contenido {
  font-size: 1.125rem;
  font-weight: normal;
 }

 .msg-pre .botones {
  margin-top: 40px;
 }

 .cont-left {
  display: flex;
  align-items: normal;
  flex-direction: row;
  justify-content: normal;
}

 #frm-1 .form-check {
  float: left;
 }

 #frm-3 .respuesta .inputbox {
   margin-top: 15px;
 }

 #frm-4 .respuesta .inputbox {
  margin-top: 15px;
 }

 #frm-5 .respuesta .inputbox {
  margin-top: 15px;
 }

 label.form-check-label[for="frm4-rd1-no"] {
  margin-top: 3px;
 }

 div.false ,
 div.true {
   display: none;
 }

 #inicioAsesor .cronograma {
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 60px;
 }

 #inicioAsesor h3, #inicioAsesor h1 {
  text-transform: uppercase;
 }

 #inicioAsesor h3 .icon {
  float: left;
  margin-left: 5px;
  margin-right: 10px;
 }

 #inicioAsesor .card-button .botonGrande-2 {
  width: 298px;
  height: 90px;
 }

 .botonGrande .card-buttonIcon > i {
  font-size: 30px;
}

.botonGrande-2 {
  position: relative;
  text-transform: uppercase;
  padding: 0px;
  font-family: "Dosis", sans-serif;
  
  color: #2C4C12;
  /*background-color: #84916F;
  
  width: 350px;
  height: 120px;
  cursor: pointer;*/
  transition: background-color 0.5s, color 0.5s;
  border: solid 2px #2C4C12;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-mask-image: radial-gradient(white, black);/* ADDED */
}

.botonGrande-2 .card-buttonText {
  font-weight: 700;
  padding-left: 15px;
  padding-right: 15px;
  /*text-align: center;*/
}

.botonGrande-2 .card-buttonIcon {
  transition: all 0.5s;
  height: 92px;
}

.botonGrande-2 .card-buttonIcon i {
  position: absolute;
  right: 27px;
  bottom: 23px;
  color: #fff;
  transition: color 0.5s;
  font-size: 28px;
}

.botonGrande-2:hover {
  color: #2C4C12;
  background-color: #fff;
}

.botonGrande-2:hover .card-buttonIcon {
  width: 0%;
}

.botonGrande-2:hover .card-buttonIcon i {
  color: #2C4C12;
}

.botonGrande-2.isDisable {
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
  pointer-events: none;
}

 .cronograma .crono-item {
  padding-left: 40px;
  position: relative;
  font-family: 'Dosis', sans-serif;
  margin-bottom: 5px;
 }

 .cronograma .crono-item .icon {
  position: absolute;
  font-size: 3rem;
  left: -25px;
  top: -5px;
 }

 .cronograma .crono-item .titulo-ev {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
 }

 .cronograma .crono-item .fecha-ev {
  font-size: 0.875rem;
  margin-bottom: 4px;
  font-weight: 600;
 }

 .cronograma .crono-item .desc-ev {
  
 }

 .cronograma .vmas {
  text-align: right;
  color: #324810;
  font-size: 1.5rem;
 }

 .lista-egresados table.t-reporte {
  border-color: rgba(50, 72, 16, 0.3);
  /*2px solid rgba(50, 72, 16, 0.3)*/
  font-family: "Dosis", sans-serif;
 }

 .lista-egresados table.t-reporte th {
  border-bottom: 2px solid #809471;
  border-bottom-color: #809471;
  color: #324810;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
}

.lista-egresados table.t-reporte td {
  font-size: 0.875rem;
}

.lista-egresados table.t-reporte .icon {
  color: #324810;
  text-align: center;
  font-size: 1.25rem;
}

#formulario .forma > div {
  /* float: left;
  margin-right: 5px;
  width: 32%; */
}

#formulario {
  margin: 8px;
}

#infoEgresado .title {
  color: #324810;
  font-weight: 600;
  text-transform: uppercase;
}

#infoEgresado .content {
  font-size: .875rem;
  padding-left: 70px;
  height: 40px;
  vertical-align: middle;
  display: table-cell;
}

#infoEgresado .modal-body > div {
  border-bottom: 3px solid rgba(50, 72, 16, .4);
  position: relative;
  padding: 15px;
}

#infoEgresado .icon {
  position: absolute;
  font-size: 1.625rem;
  left: 40px;
  top: 40px;
}

/* input  */

.inputbox input {
  border: none;
  border-bottom: 2px solid #809471;
  border-radius: 0;
}

.inputbox input:focus {
  box-shadow: none;
}

.inputbox.icono input {
  padding-left: 20px;
}

.inputbox.icono span {
  left: 32px;
}

.rsicn {
  /*border: 1px solid #324810;
  border-radius: 60px;*/
  padding: 4px 9px;
  width: 40px;
  height: 40px;
  font-size: 25px;
  /*color: #fff;*/
  margin-top: 7px;
  /*background-color: #324810;*/
}

.circle {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0.5rem;
  border-radius: 50%;
  background: #E6EFE0;
  overflow: hidden;
}

.circle .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  font-size: 1em;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
}

.bi-facebook {
  color: #475993;
}
.bi-twitter {
  color: #76a9ea;
}
.bi-instagram {
  color: #bd1a7a;
}
.bi-linkedin {
  color: #0077b7;
}

/*--------------------------------------------------------------
# Pantalla cerrar preegreso
--------------------------------------------------------------*/
#cerrarPreegreso {
  font-family: "Lato", sans-serif;
}

#cerrarPreegreso .modal-title {
  color: #324810;
}

#cerrarPreegreso .modal-body {
  font-weight: 200;
}

#cerrarPreegreso .sec {
  margin-top: 5px;
}

#cerrarPreegreso .sec .icono {
  float: left;
  padding-right: 5px;
  font-size: 1.2rem;
}

#cerrarPreegreso .sec .nombre {
  font-size: 1.2rem;
  border-bottom: 2px solid #E6EFE0;
  text-transform: uppercase;
}

#cerrarPreegreso .sec .camposf ul > li {
  list-style-type: none;
  color: #BB1E10;
}

#cerrarPreegreso .constancia {
  display: none;
}

#cerrarPreegreso .formulario {
  display: none;
}

#cerrarPreegreso .down-pdf {
  display: none;
  font-size: 1.5rem;
  color: #b30b00;
}

#cerrarPreegreso .constancia .titulo02 {
  font-weight: 400;
  font-size: 1.2rem;
  border: 2px solid;
  border-radius: 5px;
  color: #84916F;
}

#cerrarPreegreso .constancia .nombre,
#cerrarPreegreso .constancia .programa,
#cerrarPreegreso .constancia .plantel,
#cerrarPreegreso .constancia .nocuenta {
  font-weight: 400;
}

#cerrarPreegreso .constancia .s-ind {
  text-indent: 25px;
  text-align: justify;
}

.progress {
  padding: 6px;
  background: rgba(0, 0, 0, 0.15); 
  border-radius: 4px;
  /*margin-top: 10px;*/
  height: auto;
  box-shadow: inset 1px 1px 1px 1px;
}

.progress-bar {
  height: 24px;
  border-radius: 4px;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  transition: 0.4s linear;
  transition-property: width, background-color;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
}

.avance {
  padding-left: 10%;
  padding-right: 10%;
}

.avance .titulo {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 1rem;
  text-align: right;
  padding-right: 15%;
  color: #324810;
}

/*--------------------------------------------------------------
# Media queries
--------------------------------------------------------------*/

/* de lg a xl para el menu steps */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.steps {
    font-size: .75rem;
  }
  .steps .step {
    padding: 5px;
  }
  .steps .step .seccion {
    padding-right: 5px;
  }
  .step-circle {
    padding: 5px 7px;
  }
  .step-line {
    top: 3%;
    right: 18px;
    height: 95%;
  }
}

@media only screen and (max-width: 768px) {
  body {
    font-size: .875rem;
  }
  .inputbox {
    margin-bottom: 15px;
  }
  .formulario input[type=checkbox] {
    transform: scale(2);
    margin-bottom: .2rem;
  }
  .formulario .form-check {
    margin-bottom: .4rem;
  }
  .formulario .form-check label {
    margin-left: .2rem;
  }

}

/* Steps mobile */
@media only screen and (max-width: 991px) {
  .steps .step-line {
    display: none;
  }
  
  .steps .step {
    display: block;
    width: auto;
    margin-bottom: 0;
  }
  
  .steps .step.active::before {
    display: none;
  }
  
  .steps {
    font-size: .75rem;
  }
  
  .steps .step.active {
    border: none;
    background-color: unset;
    color: #324810;
  }
  
  .steps .step.active .step-circle {
    background-color: #324810;
    color: #fff;
  }
  
  .steps .step .step-circle {
    padding: 5px 7px;
  }
  
  .steps .step .seccion {
    /*padding-top: 5px;*/
    display: none;
    /*opacity: 0;*/
    /*width: 0px;*/
    padding: 0;
  }
  
  .steps .step.active .seccion {
    animation: fade 1s ease-in-out;
    /*opacity: 1;*/
    display: block;
    /*overflow: auto;*/
    /*width: auto;*/
    padding-right: 5px;
    padding-top: 5px;
  }
}


@keyframes fade {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/*--------------------------------------------------------------
# Spinner
--------------------------------------------------------------*/
.spinner {
  margin: 200px auto;
  /*width: 50px;*/
  height: 40px;
  text-align: center;
  font-size: 10px;
  /*margin-top: 25px;
  margin-left: 10px;*/
}

.spinner > div {
  background-color: #809471;
  height: 100%;
  width: 6px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}


/*--------------------------------------------------------------
# datepicker fecha
--------------------------------------------------------------*/

.ui-datepicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  margin-top: 2px;
  padding: 0 !important;
  border-color: #E6EFE0 !important;
}

.openemr-calendar .ui-datepicker {
  width: 191px;
}

.ui-datepicker table {
  width: 252px;
  table-layout: fixed;
}

.openemr-calendar .ui-datepicker table {
  width: 191px;
  table-layout: fixed;
}

#ui-datepicker-div .ui-datepicker-header {
  background-color: #2C4C12;
}

.openemr-calendar .ui-datepicker-header {
  background-color: #e6f7f9 !important;
  border-width: 1px;
  border-color: #c9f0f5;
  border-style: solid;
}

.openemr-calendar .ui-datepicker-title {
  line-height: 20px !important;
}

.ui-datepicker-prev span {
  display: none !important;
}

.ui-datepicker-next {
  text-align: center;
}

.ui-datepicker-next span {
  display: none !important;
}

.ui-datepicker-prev {
  background-color: transparent !important;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAMCAYAAACulacQAAAAUklEQVQYlXWPwQnAMAwDj9IBOlpH8CjdJLNksuujFIJjC/w6WUioFBcqJ7sGEAD5Y/hpqLRghRv4YQlUjqXI3Kql2MixraGbEhVcDXcFUR/1egEHNuTBpFW0NgAAAABJRU5ErkJggg==') !important;
  height: 12px !important;
  width: 7px !important;
  margin: 14px 12px;
  display: inline-block;
  left: 0 !important;
  top: 0 !important;
}

.openemr-calendar .ui-datepicker-prev {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAOCAYAAAD9lDaoAAAAuUlEQVQokXXRsUtCYRAA8J8pDQ1CVIgIgtBU2NDiZIuDS4uLf6WDS1O0tLREEE8icBNKS3lTs8/B78XHw3dwcHA/juOuqjzucYJVrQQMcYctvo4OgEFIeMK6iPphCjzjEWLUC3vACx7yRo5uMUIFr5gii1EL41AvMIkBVPGH04DrSLEsIvjEOZq4wi9+iijDR0ANXOMbmxjlcIY2LtANO6YxymGCDs5wg/ciYv+KBJeY4+2A+Y9j4Y47RtUkrNXeDxUAAAAASUVORK5CYII=') !important;
  height: 14px !important;
  width: 9px !important;
  margin: 5px !important;
}

.ui-datepicker-next {
  cursor: pointer;
}

.ui-datepicker-prev {
  cursor: pointer;
}

.ui-datepicker-next {
  background-color: transparent !important;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAMCAYAAABfnvydAAAAVUlEQVQYlXWQ0Q3AIAhEL07gKI7kKN2kI3Wk1w9to3KQEELucQEECOizhhTQGHFnwOdgobWx0GkZILfYBhXl0STVbPoBarbkL7ozN/F8VBBXh8uJgF5r2hrI4GHUkAAAAABJRU5ErkJggg==') !important;
  height: 12px !important;
  width: 8px !important;
  margin: 14px 12px;
  display: inline-block;
  right: 0 !important;
  top: 0 !important;
}

.openemr-calendar .ui-datepicker-next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAOCAYAAAASVl2WAAAAtElEQVQYlXXQsUpCcRQH4I97EQyHa1pgIEE0hBGYL+BjNLRFjxXh4rM4F21BS4S4FAgqQioOngt/RM/6+zi/w4EanlA4MDkecYsO3vG/D8a4Rx03eMMqBQt8oodTXAdalwBm+IpNDVxG3aYEMMU3ujjDBT5SAH9R2cE58mwPFOgneJSCGp7RjLoXTEtQjbCFOV7xCxkqdp9sYxnhpFyb4QFXdh8c4Cc9Ko++OwzjFwfn5FiwBVeuI/K2UCkSAAAAAElFTkSuQmCC') !important;
  height: 14px !important;
  width: 8px !important;
  margin: 5px;
}

.ui-datepicker-month {
  vertical-align: text-top;
  color: #2c4c12;
}

.openemr-calendar .ui-datepicker-month {
  font-family: Open Sans, Arial, sans-serif;
  color: rgba(34, 34, 34, 0.87);
  font-size: 12px !important;
  font-weight: 700;
  text-align: center;
  transform: scaleX(1.0029)
}

.ui-datepicker-year {
  vertical-align: text-top;
  color: #2c4c12;
}

.openemr-calendar .ui-datepicker-year {
  font-family: Open Sans, Arial, sans-serif;
  color: rgba(34, 34, 34, 0.87);
  font-size: 12px !important;
  font-weight: 700;
  text-align: center;
  transform: scaleX(1.0029)
}

.ui-datepicker-month option,
.ui-datepicker-year option {
  color: #2c4c12 !important;
  background-color: #fff !important;
  font-family: Open Sans !important;
  font-size: 14px !important;
  font-weight: 600;
}

.ui-datepicker-month option[selected],
.ui-datepicker-year option[selected] {
  background-color: #e5edf0 !important;
}

.ui-datepicker .ui-state-hover {
  border: 0 !important;
}

.ui-datepicker td {
  vertical-align: top;
}

.ui-datepicker .ui-state-default {
  border-radius: 2px;
  border-color: #edebeb !important;
  text-align: center !important;
  color: #2C4C12;
  font-size: 13px;
  font-weight: 400 !important;
  margin: 2px;
}

.ui-datepicker .ui-state-default.ui-state-highlight{
  background-color: #2C4C12 !important;
  color: #fafafa !important;
}

.openemr-calendar .ui-state-default {
  font-size: 10px;
  margin: 0;
}

.ui-datepicker td {
  width: 33px;
}

.openemr-calendar .ui-datepicker td {
  width: 26px;
}

.openemr-calendar .ui-state-default {
  width: 26px;
  height: 20px;
  line-height: 20px;
}
.ui-state-default.ui-state-hover {
  border-color: #dcdcdc;
  background-color: #cff3f8 !important;
}

.ui-datepicker .ui-state-active {
  border-color: #2c4c12 !important;
  background-color: #95a588 !important;
  color: #fafafa !important;
} 

.ui-datepicker-calendar thead tr th {
  color: #2C4C12;
  font-size: 12px;
  font-weight: 400;
  padding: 0.45em 0.3em !important;
}

.openemr-calendar .ui-datepicker-calendar thead tr th {
  font-size: 10px;
}

.ui-datepicker-close {
  display: none;
}

.ui-datepicker thead {
  background-color: #f5f5f5;
}

.openemr-calendar .ui-datepicker thead {
  background: none;
}

.ui-state-default.ui-datepicker-current {
  float: none !important;
  font-family: Open Sans, Arial, sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  border-width: 0 !important;
  border: none;
  vertical-align: top;
  margin: 0 !important;
  background-color: transparent !important;
}

.ui-datepicker-buttonpane.ui-widget-content {
  text-align: center;
  background-color: #3e9aba;
  margin: 0 !important;
  height: 28px;
  padding: 0 !important;
}


.openemr-calendar .ui-datepicker-year {
  background-color: transparent;
}

.openemr-calendar .ui-datepicker-month {
  background-color: transparent;
}

.openemr-calendar .ui-state-default {
  border: 0 !important;
}

.openemr-calendar .ui-datepicker-month {
  margin-right: 10px !important;
}

/*--------------------------------------------------------------
# inicio
--------------------------------------------------------------*/
.tituloAnuncio{
  color: white;
  font-size: 18pt;
  text-align: left; 
  padding-left: 40px;
  font-weight: 300; 
  
}

.image{
  opacity: 0.3;
  
}

/* .container-buttons{
  display: flex;
  justify-content: space-around; 
  align-items: center;
  height: 300px;
} */

.container-buttons-column{
  display: flex;
  justify-content: center; 
  align-items: center;
  height: 100%;
  flex-direction: column;
  /* margin-bottom: 85px;  */
}

.container-timeline{
  display: flex;
  justify-content: left; 
  align-items: flex-start;
  flex-direction: column;
  margin-inline: 15px;
}

.container-texttimeline{
  display: flex;
  justify-content: left; 
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
}

.icon-timeline{
  width: 10%;
  display: flex;
  justify-content: left; 
  align-items: flex-start;
}

.text-timeline{
  width: 90%;
  display: flex;
  justify-content: left; 
  align-items: flex-start;
  flex-direction: column;
  margin-top: 10px;
}

.title-timeline{
  font-weight: 600;
  margin-bottom: 4px;
}

.date-timeline{
  font-weight: 550;
  margin-bottom: 0;
  font-size: 12px;
}

.time-timeline{
  font-weight: 550;
  margin-bottom: 4px;
  font-size: 12px;
}

.description-timeline{
  text-align: justify;
  font-size: 12px;
}

.link-seemore{
  text-align: right;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: black;
  font-weight: 550;
}

.icon-timeline .bi.bi-calendar-check {
  font-size: 25pt;
}

.bi.bi-card-checklist {
  font-size: 25pt;
}

.bi.bi-clipboard-check {
  font-size: 25pt;
}

.card-buttonIcon .bi.bi-card-checklist {
  font-size: 40pt;
}

.card-buttonIcon .bi.bi-journal-bookmark-fill {
  font-size: 40pt;
}

/*--------------------------------------------------------------
# Resultados y reporte
--------------------------------------------------------------*/

.resultados-pre .accordion-button {
  font-size: 3rem;
  font-family: 'Raleway', sans-serif;
}

.resultados-pre .accordion-button::after {
  width: 2.25rem;
  height: 2.25rem;
  background-size: 2.25rem;
}

.resultados-pre .accordion-button:not(.collapsed) {
  color: #212529;
  background-color: #fff;
}

.resultados-pre .accordion-button:focus {
  box-shadow: none;
}

.resultados-pre .accordion-button .acc-number {
  font-weight: 400;
  margin-right: 5%;
}

.resultados-pre .accordion-button .acc-title {
  font-weight: 800;
}

.resultados-pre .accordion-body > div:first-of-type {
  margin-right: 5%;
}

.resultados-pre .accordion-body .pregunta {
  font-family: 'Raleway', sans-serif;
  font-size: 1.7rem;
  padding-bottom: 10px;
}

.resultados-pre .accordion-item {
  /*display: none;*/
}

.reporte .filtros {
  width: 100%;
  float: left;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,0,0,0.3);
}

.reporte .filtros > div {
  float: left;
  width: auto;
  min-width: 150px;
  margin-right: 5px;
  margin-bottom: 5px;
}

#frm-step-1 .frm1-field:disabled,
#frm-step-1 #txtApMaterno:disabled {
  background-color: transparent;
  color: #324810;
  font-style: italic;
}

#inicioEgresados .card-button .progress {
  background: none;
  box-shadow: none;
}

#inicioEgresados .card-button .progress-bar {
  height: 20px;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  box-shadow: none;
}

#inicioEgresados .card-button > p {
  font-size: 0.8rem;
  text-align: right;
}

.tab-pane {
  position: relative;
}

.btn-salir {
  position: absolute;
  right: 0px;
  top: -70px;
}

.btn-salir .icono {
  color: #324810;
  font-size: 2rem;
}

.lista-egresados .dt-buttons .dt-button {
  position: relative;
  text-transform: uppercase;
  padding: 0px;
  font-family: "Dosis", sans-serif;
  color: #fafafa;
  background-color: #aa4643;
  width: 94px;
  height: 32px;
  transition: background-color 0.5s, color 0.5s;
  border: solid 1px #aa4643;
  /*display: flex;
  align-items: center;
  justify-content: center;*/
  border-radius: 5px;
  -webkit-mask-image: radial-gradient(white, black);
}

.lista-egresados .dt-buttons .dt-button:hover {
  color: #aa4643;
  background-color: #fff;
}


/*--------------------------------------------------------------
# InicioEgresado
--------------------------------------------------------------*/
body #titular {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0px;
}

.carousel-item {
  width: 100%;
  height: 400px !important;  
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
  background: linear-gradient(rgba(6, 8, 15, 0.8), rgba(6, 8, 15,0.8));
} 

.carousel-caption{
  padding-bottom: 0;
}

.card-button{
  /*display: flex;
  flex-direction: column;
  align-items: center;*/
  width: 350px;
  -webkit-mask-image: radial-gradient(white, black);/* ADDED */
}

.card-buttonText{
/*   height: 100%;
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  padding-right: 60px;
  padding-left: 40px; */
  width: 350px;
  font-weight: 300;
  padding-left: 25px;
  padding-right: 25px;
}

.card-buttonIcon{
 /*  height: 100%;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2C4C12;
  border-radius: 0px 5px 5px 0px;
  transition: background-color 0.5s, color 0.5s;
  border-left: 1px solid #84916F; */
  height: 120px;
  width: 150px;
  background-color: #2C4C12;
  float: right;
}

.botonGrande .card-buttonIcon > i {
  font-size: 40px;
}

.progress {
  width: 100%;
  margin-bottom: 5px;
}

.card-button > p{
  text-align: center;
}

.botonGrande {
  position: relative;
  text-transform: uppercase;
  padding: 0px !important;
  font-family: "Dosis", sans-serif;
  
  /*color: #fafafa !important;*/
  color: #fafafa;
  background-color: #84916F;
  
  width: 350px;
  height: 120px;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
  border: solid 1px #84916F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-mask-image: radial-gradient(white, black);/* ADDED */
}

.botonGrande .card-buttonIcon {
  transition: all 0.5s;
}

.botonGrande .card-buttonIcon i {
  position: absolute;
  right: 25px;
  bottom: 30px;
}

.botonGrande:hover {
  color: #84916F;
  background-color: #fff;
}

.botonGrande:hover .card-buttonIcon {
  width: 0%;
}

/* .botonsabermas {
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Dosis", sans-serif;
  font-size: 16px;
  color: #2C4C12;
  background-color: white;
  margin-top: 5px;
  padding: 11px 16px;
  width: auto;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
  border: solid 1px white; 
  border-radius: .2rem;
} */

.botonGrande.isDisable {
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
  pointer-events: none;
}

.swiper-egresados {
  width: 100%;
  height: auto;
}

.slide-img {
  width: 100%;
  height: auto;
}

.flex-center-container {
  display: flex;
  justify-content: center;
}

.loginFederado .login-card .c-body {
  display: flex;
  flex-direction: column;
}

.loginFederado .login-card .btn-loginf {
  align-self: center;
}

#inicioAsesor .btns-inicio {
  margin-top: 50px;
  margin-bottom: 50px;
}

.info-asesor {
  
} 

/*--------------------------------------------------------------
# Directores y RSE
--------------------------------------------------------------*/

.bd-asignar-rse .asignar-rse select {
  border-radius: .25rem;
  border-width: 1px;
}

.bd-asignar-rse .asignar-rse .list-pe {
  position: relative;
}

.bd-asignar-rse .asignar-rse .selPrograma {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.bd-asignar-rse .asignar-rse .btn-rel {
  width: fit-content;
  padding: .25rem .5rem;
  font-size: .875rem;
  border-radius: .2rem;
}

.bd-asignar-rse .asignar-rse .btn-rel > i {
  padding-right: 10px;
  border-right: 1px solid;
  margin-right: 10px;
  margin-left: 0;
}

.bd-asignar-rse {
  font-family: "Dosis", sans-serif;
}

.bd-asignar-rse .instr {
  font-weight: 600;
  color: #2C4C12;
  letter-spacing: 1px;
}

.bd-asignar-rse .information {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  width: auto;
  padding: 15px;
  /*border: solid 2px #4ebdb7;*/
  border-radius: 10px;
  /*background-color: rgba(231, 111, 81, 0.1);
  min-width: 400px;*/
  box-shadow: 3px 3px 3px 1px rgb(44, 76, 18);
}

.bd-asignar-rse .information .icon {
  color: #E76F51;
  font-size: 3rem;
}

.bd-asignar-rse .information .plantel {
  white-space: nowrap;
}

.bd-asignar-rse .asignar-rse .list-rse {
  min-height: 60px;
}

.bd-asignar-rse .selPrograma .icon-caret {
  display: none;
}

.bd-asignar-rse .selPrograma .ms-choice {
  border: none;
}

.bd-asignar-rse .selPrograma .ms-choice > span {
  padding-top: 2px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0f394c;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #d0ecf9;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #49b5e7;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #49b5e7;
  border-color: #49b5e7;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #49b5e7;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about2.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

@media (min-width: 1200px) {
  .about .video-box {
    margin-left: 15px;
    margin-right: -15px;
  }
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#49b5e7 50%, rgba(73, 181, 231, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(73, 181, 231, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #49b5e7;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(15, 57, 76, 0.08);
}

.portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-info ul li+li {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Documentos
--------------------------------------------------------------*/
#documentos .card {
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.4);
  width: 80%;
}

#documentos .card .card-header {
  background-color: #49b5e7;
  color: #fff;
  font-family: "Dosis", sans-serif;
}

#documentos .card .card-body {
  /*background-color: #b6e1f5;*/
}





.down-doc:hover .icon {
  background: #49b5e7;
  border-color: #49b5e7;
}

.down-doc:hover .icon i {
  color: #fff;
}

#documentos .card,
#documentos .card-body {
  height: auto;
}

#documentos .card-header {
  min-height: 70px;
}

#documentos .down-doc {
  display: flex;
  justify-content: right;
}

#documentos .down-doc .icon {
  /*margin: 0 auto;*/
}

.container-cards-lg {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
}

#documentos .container-cards {
  grid-auto-rows: auto;
}

.container-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5px;
  /*grid-auto-rows: 260px;*/
  margin-bottom: 20px;
}

@media (max-width: 990px) {
  .container-cards-4{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    grid-auto-rows: 250px;; 
  }
}

@media (max-width: 575px) {
  .container-cards-4{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 5px;
    grid-auto-rows: 250px;; 
  }
}

#documentos .documento {
  font-family: "Dosis", sans-serif;
  padding: 15px;
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  box-shadow: 0px 2px 2px 0px #ccc;
  position: relative;
  margin-bottom: .20rem;
  float: left;
  width: 100%;
}

#documentos .subtitulo {
  float: left;
  width: 100%;
  text-transform: uppercase;
  color: #7c368f;
  font-weight: 700;
  border-bottom: 3px solid;
  padding-bottom: 5px;
}

#documentos .documento .titulo {
  font-weight: 700;
  float: left;
  width: 80%;
}

.documento .titulo > p {
  font-weight: 400;
}

#documentos .documento .desc {
  max-width: 90%;
}

#documentos .documento .descarga {
  /*position: absolute;
  right: 10px;
  top: 32%;*/
  width: 15%;
  float: right;
}

.down-doc .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid #d0ecf9;
  border-radius: 50px;
  transition: 0.5s;
}

.down-doc .icon i {
  color: #49b5e7;
  font-size: 17px;
}

.documento .tipo.pdf {
  background-color: #e09d99;
  color: #b30b00;
}

.documento .tipo.doc {
  background-color: #99bad7;
  color: #00549c;
}

.documento .tipo {
  padding: 2px 10px;
  /*position: absolute;
  right: 8%;
  top: 36%;*/
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.8rem;
  width: auto;
  text-align: center;
  float: left;
}

.head-docs {
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #c8bfca;
  float: left;
  width: 100%;
  padding: 15px;
}

.head-docs .h-titulo {
  float: left;
  width: 80%;
  padding-left: 30px;
}

.head-docs .h-tipo {
  float: left;
  /*width: 5%;*/
}

.head-docs .h-descarga {
  width: 8%;
  float: right;
  text-align: right;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* login mobile */
@media only screen and (max-width: 550px) {
  #loginEgresado .cards .card.alt {
    top: -30px;
    right: -10px;
    width: 100px;
    height: 100px;
  }
  #loginEgresado .cards .card.alt .toggle {
    width: 100px;
    height: 100px;
    font-size: 45px;
    line-height: 100px;
  }

}

@media only screen and (max-width: 991px) {
  .pag-msg-pre .desc {
    height: 50%;
  }
  .cont-centrado > img {
    height: 150px;
  }
  .msg-pre .titulo {
    font-size: 2rem;
    padding-bottom: 20px;
  }
  .msg-pre .contenido {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Seguimiento
--------------------------------------------------------------*/

#frm-seg-1 .form-check {
  float: left;
}

#frm-seg-4 .otra {
  margin-top: 15px;
}

.formulario .instr3 {
  font-weight: 400;
  font-style: italic;
}

#frm-seg-5 .form-check {
  width: 50%;
}

#frm-seg-5 .respuesta.res10 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/*--------------------------------------------------------------
# Seguimiento - tabulator
--------------------------------------------------------------*/

#tablaSeg {
  border: none;
  font-family: "Dosis", sans-serif;
  background-color: transparent;
}

#tablaSeg .tabulator-header {
  color: #324810;
  font-size: 16px;
  background-color: transparent;
}

#tablaSeg .tabulator-header .tabulator-col {
  background-color: transparent;
}

#tablaSeg .tabulator-header .tabulator-col:last-of-type,
#tablaSeg .tabulator-row .tabulator-cell:last-of-type {
  border-right: none;
}

#tablaSeg .tabulator-header .tabulator-col-title {
  text-align: center;
}

#tablaSeg .tabulator-footer {
  background-color: transparent;
  margin-right: 100px;
  border: none;
}

.segxEst .btnsAcciones,
.segxPro .btnsAcciones,
.prexEst .btnsAcciones,
.prexPro .btnsAcciones{
  display: flex;
  justify-content: flex-end;
}

.segxEst .botonRep,
.segxPro .botonRep,
.prexEst .botonRep,
.prexPro .botonRep {
  color: #324810;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px; /* Ajusta según tus necesidades */
  width: 100px; /* Ajusta según tus necesidades */
  transition: transform 0.3s ease-in-out; /* Efecto suave en hover */
  float: left;
}

.botonRep .Icono i {
  font-size: 40px;
  transition: transform 0.3s ease-in-out; /* Suaviza el efecto */
}

.botonRep:hover .Icono i {
  transform: scale(1.2); /* Aumenta el tamaño del icono */
}

.botonRep .texto {
  margin-top: 10px; /* Espaciado entre el icono y el texto */
  text-align: center; /* Centra el texto dentro del div */
  font-weight: 500;
  font-size: 10px;
}

.botonRep:hover .texto {
  color: #000; /* Cambia a un color más oscuro en hover */
}

.segxEst .filtros,
.segxPro .filtros,
.prexEst .filtros {
  border: none;
}

.centered-cell {
  text-align: center; /* Centrado horizontal */
}
.centered-cell .progress-circle {
  display: inline-block; /* Para que el contenedor se comporte como un bloque en línea */
  vertical-align: middle; /* Centrado vertical */
}
.progress-circle {
  width: 80px; /* Tamaño más grande */
  height: 80px; /* Tamaño más grande */
}
.progress-circle svg {
  width: 100%;
  height: 100%;
}
.progress-circle circle {
  fill: none;
  stroke-width: 8; /* Borde más grueso */
  stroke-linecap: round;
}
.progress-circle .background {
  transition: stroke 0.3s; /* Transición suave para el fondo */
}
.progress-circle .progress {
  transition: stroke-dasharray 0.3s, stroke 0.3s; /* Transición suave para la barra */
}
.progress-circle text {
  font-size: 10px; /* Tamaño del texto más grande */
  font-weight: bold;
  transition: fill 0.3s; /* Transición suave para el texto */
}

/* .segxEst #export-button {
  position: relative;
  text-transform: uppercase;
  padding: 0px !important;
  font-family: "Dosis", sans-serif;
  color: #fafafa !important;
  color: #fafafa;
  background-color: #84916F;
  width: 350px;
  height: 120px;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
  border: solid 1px #84916F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-mask-image: radial-gradient(white, black);
}*/

/*.segxEst #export-button:hover {
  color: #fff;
  background-color: #324810;
  border: 2px solid #fff;
}*/
