/*PRELOADING------------ */


html {
  background-color: #0b1c2d;
}

body {
  font-family: 'Oswald', sans-serif;
  font-weight: 100;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

a:hover {
    text-decoration: none;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px; 
  color: #cccccc;
}

h3 {
    font-weight: 900;
    color: #999;
    font-size: 4rem;
    padding-bottom: 20px;
}

/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

#formContent {
  background: rgba(255,255,255,0.8);
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
  
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset]  {
  background-color: #56baed;
  border: none;
  color: white;
  padding: 15px 50px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=text], input[type=password] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder {
  color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

.fadeIn.fourth.elbot {
    width: 80%;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:60%;
}


.card-box {
    background: #FFF;
    position: relative;
    padding: 0;
    margin-bottom: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    transition: all 1s;
}



.card-box:hover i {
    background: #0073A5;
    color:#fff !important;
}

.card-box:after {
    display: block;
    background: #2196F3;
    border-top: 2px solid #0073a5;
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.card-title h2 {
    margin: 0;
    color: #034A69;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    padding: 10px;
    justify-content: to;
    min-height: 120px;
    transition: all 1s;
    background: rgba(255,255,255,0.7);
    font-weight: 100;
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    align-items: left;
    justify-content: center;
}

.card-title h2:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
} 

.card-title p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 16px;
    padding-left: 10px;
}

.card-link a {
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    color: #FF5722;
    font-size: 15px;
}

.footer-classic a, .footer-classic a:focus, .footer-classic a:active {
    color: #ffffff;
}
.nav-list li {
    padding-top: 5px;
    padding-bottom: 5px;
}

.nav-list li a:hover:before {
    margin-left: 0;
    opacity: 1;
    visibility: visible;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 23px;
    font: 900 13px/1 "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.social-container .col {
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-list li a:before {
    content: "\f14f";
    font: 400 21px/1 "Material Design Icons";
    color: #4d6de6;
    display: inline-block;
    vertical-align: baseline;
    margin-left: -28px;
    margin-right: 7px;
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
}

.fs-it-btn {
  margin-top: 10px;
  border: 1px solid #a2a2a2;
  border-radius: 0;
  color: #fff;
  font-weight: bold;
  width: 100%;
  margin-bottom: 10px;
}
.fs-it-btn-vertical-line {
  text-align:center;
  padding: 4px 0 5px 10px;
  margin-left: 10px;
  border-left: 1px solid #a2a2a2;
}
.bg-blue {
    background-color: #2c9deb;
}
.text-uppercase {
    text-transform: uppercase;
}

.funkyradio div {
  clear: both;
  overflow: hidden;
}

.funkyradio label {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #D1D3D4;
  font-weight: normal;
}

.funkyradio input[type="radio"]:empty,
.funkyradio input[type="checkbox"]:empty {
  display: none;
}

.funkyradio input[type="radio"]:empty ~ label,
.funkyradio input[type="checkbox"]:empty ~ label {
  position: relative;
  line-height: 2.5em;
  text-indent: 3.25em;
  margin-top: 0.3em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.funkyradio input[type="radio"]:empty ~ label:before,
.funkyradio input[type="checkbox"]:empty ~ label:before {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: 2.5em;
  background: #D1D3D4;
  border-radius: 3px 0 0 3px;
}

.funkyradio input[type="radio"]:hover:not(:checked) ~ label,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label {
  color: #888;
}

.funkyradio input[type="radio"]:hover:not(:checked) ~ label:before,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: #C2C2C2;
}

.funkyradio input[type="radio"]:checked ~ label,
.funkyradio input[type="checkbox"]:checked ~ label {
  color: #777;
}

.funkyradio input[type="radio"]:checked ~ label:before,
.funkyradio input[type="checkbox"]:checked ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: #333;
  background-color: #ccc;
}

.funkyradio input[type="radio"]:focus ~ label:before,
.funkyradio input[type="checkbox"]:focus ~ label:before {
  box-shadow: 0 0 0 3px #999;
}

.funkyradio-default input[type="radio"]:checked ~ label:before,
.funkyradio-default input[type="checkbox"]:checked ~ label:before {
  color: #333;
  background-color: #ccc;
}

.funkyradio-primary input[type="radio"]:checked ~ label:before,
.funkyradio-primary input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #337ab7;
}

.funkyradio-success input[type="radio"]:checked ~ label:before,
.funkyradio-success input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #5cb85c;
}

.funkyradio-danger input[type="radio"]:checked ~ label:before,
.funkyradio-danger input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #d9534f;
}

.funkyradio-warning input[type="radio"]:checked ~ label:before,
.funkyradio-warning input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #f0ad4e;
}

.funkyradio-info input[type="radio"]:checked ~ label:before,
.funkyradio-info input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #5bc0de;
}

.bottom {
    background-color: #0b1c2d;
    box-shadow: 0 0 10px #000;
}
.bottom .copyright {
    color: #e5e5e5;
    font-weight: 600;
}
.copyright a {
    color: #f2f2f2;
    margin-left: 3px;
    padding-right: 3px;
}
.bottom p {
    margin-bottom: 0;
    line-height: 50px;
    font-size: 16px;
    font-weight: 400;
}
.copyright p span {
    color: #f2f2f2;
}
.bottom .copyright p, .bottom .copyright a:hover{
    color: #6c6d83;
}

.loader {
    display: none;
}

button.comprar {
    position:absolute;
    left:0px;
    top:-10px;
    z-index:10;
    width:95%;
    margin:10px;
    height:80px;
    background: rgba(0,0,0,0.8);
    border: 0;
    color: #ffffff !important;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}

a.comprar {
    position:absolute;
    left:0px;
    top:-10px;
    z-index:10;
    width:95%;
    margin:10px;
    height:80px;
    background: rgba(0,0,0,0.8);
    border: 0;
    color: #ffffff !important;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    text-align: center;
    padding-top: 15px;
}

#formContent.registro {
    display: none;
}

ul.paquetes li {
    
}

ul.paquetes li a {
    background: #2B9CEB;
    color: #ffffff !important;
    padding: 10px;
    margin: 5px 0;
    display: block;
    transition: all 1s;
    font-weight: bold;
    cursor: pointer;
}

ul.paquetes li a:hover {
    background: #222;
    text-decoration: none;
}

.navbar {
    justify-content: space-between;
    box-shadow: 0 0 10px #000;
}

.clock, .clockVideo, .clockExamen, .clockTest {
    font-weight: 100;
    padding: 5px 10px;
    width: 100%;
    text-align: center;
    border: 1px solid #dedede;
    margin-bottom: 5px;
    background: #024a69;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
}

.btn {
    font-weight: 100;
    background: #000;
    color: #fff !important;
    border: 0;
    border-radius: 0;
    background: #0a587f;
}

ol li p {
    margin: 0;
    font-size: 0.7em;
}

.resultix h1 {
    font-weight: 100;
    font-size: 0.9em;
}

.prendido {
    border-top:5px solid #0073A5;
    border-bottom:5px solid #0073A5;
    width: 100%;
    padding: 10px;
    background: #f2f2f2;
}


.prendido .resultix {
    display: flex;
    flex-direction: row;
    background: #dedede;
    padding: 10px;
    margin: 0;
    margin-bottom: 10px;
}

.lacategorix{
    /* flex: 1 1 0px; */
    border:1px solid #ffffff;
    padding: 1px;
    border-top: 5px solid #dedede;
    border-bottom: 5px solid #dedede;
    margin: 5px;
    width: 23vw;
    background: #111;
}

.lacategorix .col-sm-12 {
    padding: 0;
}

.lacategorix.prendido {
    border-top: 5px solid #09455f;
    border-bottom: 5px solid #09455f;
    background: #09455f;
    background-color: #09455f;
    padding: 5px;
    box-shadow: 0 0 10px #000;
    border: 0;
}

.resultixFade {
    display: none;
}

.resultix {
    margin: 0;
    margin-bottom: 10px;
}

.resultix div {
    flex: 1 1 0px;
}

.resultix h1 {
    margin: 0;
    padding: 0;
    font-weight: 800;
    font-size: 1.3em;
}

span.numero {
    color: #FF0000;
}

.row.detalles p {
    font-size: 0.8em;
}

.row.detalles ul.paquetes li {
    font-size: 0.8em;
}

.resultix .uno ul {
    margin-left: 20px;
    padding-left: 20px;
    font-weight: 100;
    font-size: 0.8em;
    font-weight: bold;
    list-style: circle;
}

.resultix .dos h3 {
    text-align: right;
    font-weight: 100;
}

.resultix .dos button {
    position: relative;
    float: right;
    background: darkgreen;
    color: #ffffff;
    padding: 10px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 0;
}

ul.paquetes li {
    font-size: 0.7em;
}

.resultix .uno p {
    font-size: 0.7em;
    display: none;
}

.card-title img {
    left: 0;
    width: 100%;
}

.StripeElement {
    box-sizing: border-box;
   
    height: 40px;
   
    padding: 10px 12px;
   
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;
   
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
    width: 100%;
}
 
.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}
 
.StripeElement--invalid {
    border-color: #fa755a;
}
 
.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

.clockvideo, .clockexamen {
    padding: 10px;
    font-weight: 100;
    border: 1px solid #dedede;
}

.card-box-evaluacion .card-title h2 {
    min-height: auto;
    text-align: left;
    width: 100%;
}


.latarjeta button {
    position: relative;
    float: right;
    padding: 10px 30px;
    margin: 10px 0;
    background: #a00e0e;
    color: #fff;
    font-weight: bold;
    border: 0;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    border-radius: 50px;
}

#card-errors {
    width: 100%;
    margin: 0;
    padding: 0;
    background: red;
    color: #fff;
    display: block;
}

.form-row {
    flex-direction: column;
}

h2.textinto {
    margin: 0;
    padding: 10px;
    color: #0073a5;
    width: 100%;
    color: #0073a5;
    font-weight: 100;
    font-size: 1.3em;
    font-family: 'Oswald', sans-serif;
}

.condiciones p {
    padding: 5px 10px;
    background: #f2f2f2;
    margin-bottom: 1px;
}

.condiciones p span {
    width: 35px;
    height: 25px;
    color: #333;
    text-align: center;
    padding-top: 3px;
    font-weight: bold;
    border: 1px solid #333;
    margin-right: 10px;
    position: absolute;
    width: 30px;
}

.condiciones p.uno span {
    background: green;
    color: #fff;
}

.container.pago {
    display: none;
}

.container.pago h3 {
    font-weight: 100;
    font-size: 1em;
    padding: 10px;
    background: #024a68;
    color: #fff;
    padding: 20px;
    font-weight: 100;
    font-size: 1.5em;
    padding: 15px;
}

.container.pago h1 {
    font-weight: 100;
    font-size: 1.4em;
    padding: 10px;
    color: #333;
}

.row.resultados p.check {
    background: #28a745;
    border-radius: 50px;
    color:#fff;
    padding: 10px;
}

.visto {
    display: block;
    width: 23vw;
    border: 3px solid #034A69;
    margin: 10px;
    box-shadow: 0 0 10px #333;
    
}

.novisto {
    display: none;
}

.mensajeGracias {
    margin: 0;
}

.mensajeGracias h2 {
    margin: 0;
    padding: 5px;
    color: #333;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 0;
}

.mensajeGracias p {
    padding: 0;
    margin: 0;
    color: #dedede;
    padding-left: 10px;
    padding-bottom: 10px;
}

.laEvaluacion {
    display: none;
}

.card-title.categos {
    display: flex;
    flex-direction: column;
}

.card-title.categos i {
    margin-top: 20px;
}

.card-title h2.catego {
    min-height: 20px;
}

ul.puntos {
    list-style: decimal;
    margin-left: 30px;
    padding: 10px;
}

.wizard {
    margin: 20px auto;
    background: #fff;
}

    .wizard .nav-tabs {
        position: relative;
        margin: 40px auto;
        margin-bottom: 0;
        border-bottom-color: #e0e0e0;
    }

    .wizard > div.wizard-inner {
        position: relative;
    }

.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 70px;
    height: 70px;
    line-height: 70px;
    display: inline-block;
    border-radius: 100px;
    background: #fff;
    border: 2px solid #e0e0e0;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 25px;
}
span.round-tab i{
    color:#555555;
}
.wizard li.active span.round-tab {
    background: #fff;
    border: 2px solid #5bc0de;
    
}
.wizard li.active span.round-tab i{
    color: #5bc0de;
}

span.round-tab:hover {
    color: #333;
    border: 2px solid #333;
}

.wizard .nav-tabs > li {
    width: 25%;
}

.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: #5bc0de;
    transition: 0.1s ease-in-out;
}

.wizard li.active:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 1;
    margin: 0 auto;
    bottom: 0px;
    border: 10px solid transparent;
    border-bottom-color: #5bc0de;
}

.wizard .nav-tabs > li a {
    width: 70px;
    height: 70px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
}

    .wizard .nav-tabs > li a:hover {
        background: transparent;
    }

.wizard .tab-pane {
    position: relative;
    padding-top: 50px;
}

.wizard h3 {
    margin-top: 0;
}

.nav-link {
    font-size: 1.5em;
    font-weight: 100;
}

.tab-pane h3 {
    padding: 5px;
    border-bottom: 1px solid #09455f;
    margin: 0;
    color: #09455f;
    text-transform: uppercase;
    font-weight: 100;
    padding-top: 0;
}

.tab-pane p {
    font-size: 1em !important;
    padding: 10px;
    font-weight: 100;
}

button.tipo {
    background: none;
    border: 0;
    width: 100%;
    padding: 0;
}

.nav-link {
    text-align: center;
    border: 0 !important;
    background-color: white !important;
    color: #333 !important;
    margin-right: 2px;
    margin: 10px;
}

.nav-link.active {
    background-color: #09455f !important;
    color: #fff !important;
}

.elwrapperLaCategorix {
    display: flex; 
    flex-direction: row;
}

.nav-tabs .nav-item:nth-child(2) a {
    background: #333;
}

p.fechaRegistro {
    padding: 0;
    margin: 0;
    text-align: center;
    background: #333;
    margin: 5px;
    color: #fff;
    font-weight: 100;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 100;
}

.btn.bg-blue.examen {
    margin:0;
    text-align:left;
    min-height:50px;
    font-size:2em;
    background: #f2f2f2;
    color: #333 !important;
    border: 1px solid #333;
    transition: all 1s;
}

.btn.bg-blue.examen:hover {
    background: #333;
    color: #fff !important;
}

.btn.bg-blue.examen i {
    border-radius: 50px;
    background: #333;
    color: #fff;
    padding: 10px;
}

.row.titulo h3 {
    margin: 0;
    text-align: left;
    min-height: 50px;
    font-size: 2em;
    background: #f2f2f2;
    color: #333 !important;
    border: 1px solid #333;
    transition: all 1s;
    padding: 10px;
    margin: 10px 0;
    border-radius: 50px;
    font-weight: 100;
    background: #333;
    color: #fff !important;
}

.card-title.elVideo p {
    font-size: 2em;
    font-weight: 100;
}

.countdown-row {
    font-size: 1.5em !important;
    font-weight: 100;
}

i.lni.lni-video {
    font-size:3rem;
    color:#0f5381;
    font-weight:100;
    padding: 10px;
    border: 1px solid #ccc;
    padding: 20px;
}

ul.laLista {
    text-align: left;
    list-style: circle;
    padding-left: 20px;
    font-size: 0.8em;
    font-weight: 400;
    width: 100%;
    padding: 0 20px;
    margin: 20px;
    color: #fff;
    list-style: square;
}

.col-md-12.latarjeta {
    padding: 10px;
}

@media( max-width : 585px ) {

    .wizard {
        width: 90%;
        height: auto !important;
    }

    span.round-tab {
        font-size: 16px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard .nav-tabs > li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard li.active:after {
        content: " ";
        position: absolute;
        left: 35%;
    }
    .elwrapperLaCategorix {
        flex-direction: column;
    }
    .lacategorix {
        width: 90vw;
    }
}

.row.topbar {
    background: #111;
    box-shadow: 0 0 10px #000;
}

.row.topbar .col-md-12 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-basis: 100%;
    flex-grow: 0;
}

.row.topbar .col-md-12 p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 0.9em;
    width: 100%;
    text-align: center;
    padding: 5px;
    font-weight: 100;
}

.card-body {
    padding: 0;
    background: #111;
}

.card-title {
    margin-bottom: 0 !important;
}

.card-box.elweb h2 {
    padding: 5px;
    margin: 0;
    background: #333;
    min-height: 130px;
    display: flex;
    align-items: center;
    font-weight: 100;
    font-size: 1.3em;
    padding: 10px;
    margin-bottom: 10px;
}

.card-body h3 {
    color: #fff;
    font-weight: 100;
}

input.buttone {
    width: 100%;
    padding: 5px;
    background: #fff;
    left: 0;
    margin-left: -5px;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
}

h3#lacantidad {
    text-align: center;
    background: no-repeat;
    color: #333;
    font-weight: bold;
    background: #f2f2f2;
}

#quiz-counter {
  color: #88449a;
}
.quiz-container {
    padding: 0.25em;
    margin: 1em auto;
}

.quiz-container a {
    text-decoration: none;
    color: #333;
}

#quiz-header,
#quiz-start-screen,
#quiz-results-screen,
#quiz-counter {
    text-align: center;
}

.question {
    font-size: 1.25em;
}

.answers {
    list-style: none;
    padding: 0;
}

.answers a {
    display: block;
    padding: 0.5em 1em;
    margin-bottom: 0.5em;
    color: #3643bf;
    font-weight: 100;
    font-size: 1.3em;
    border-radius: 30px;
}

.answers a.correct {
}
.answers a.incorrect {
    background: #c00;
}

.answers a.correct,
.answers a.incorrect {
    font-weight: bold;
}

#quiz-controls {
    color: #111;
    padding: 0.25em 0.5em 0.5em;
    text-align: center;
    margin-top: 20px;
}

#quiz-response {}
#quiz-results {
    font-size: 1.25em;
}

#quiz-buttons a,
.quiz-container .quiz-button {
    display: inline-block;
    padding: 0.2em 2em;
    background: #88449a;
    color: #fff;
    font-size: 1.3em;
}
#quiz-buttons a {
    background: #ffd82b;
    border: 0;
    font-weight: bold;
    padding: 10px 50px;
    color: #3644bf;
    border-radius: 30px;
    transition: all 1s;
    cursor: pointer;
    font-size: 1.5em;
}

/* Quiz State Overrides */

.quiz-results-state #quiz-controls {
    background: none;
    padding: 0;
}
.quiz-results-state #quiz-buttons a {
    background: #88449a;
    color: #fff;
}

.qanda.boxTrybu button, .row.btnquiz a, a.quiz-button {
    position: relative;
    margin: 0 auto;
    background: #ffd82b;
    border: 0;
    font-weight: bold;
    padding: 10px 50px;
    color: #3644bf;
    border-radius: 30px;
    transition: all 1s;
    cursor: pointer;
    font-size: 1.5em;
}

.row.btnquiz h2 {
    font-weight: 100;
    padding-top: 20px;
}

.qanda.boxTrybu button:hover, .row.btnquiz a:hover, a.quiz-button:hover {
    background: #f2f2f2;
}

.row.btnquiz {
    display: none;
}

p.question, p#quiz-results {
    padding-bottom: 30px;
}

p#quiz-results {
    font-size: 2em;
}

#questions {
    background: #ffffff;
}

input.quizInput {
    width: 100%;
    padding: 10px;
    border-radius: 30px !important;
    border: 0;
    box-shadow: 0 0 10px #ddd;
    font-size: 1.5em;
    font-weight: 100;
    padding-left: 30px;
}

#Capa_1 {
    max-width: 620px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.question-container.active-question {
    display: flex !important;
    justify-content: center;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
}
p.question {
    font-weight: bold;
}

ul.answers {
    padding: 0 90px;
}

.checkbox label:after, 
.radio label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    box-shadow: 0 0 10px #dedede;
    width: 1.7em;
    height: 1.7em;
    float: left;
    margin-right: .5em;
    border: 1px solid #fff;
    position: absolute;
    margin-left: -30px;
    border-radius: 50px;
    background: #fff;
}

.radio .cr {
    border-radius: 50%;
    border: 1px solid #ccc;
}

.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 48%;
    left: 20%;
    color: #333;
}

.radio .cr .cr-icon {
    margin-left: 0.04em;
}

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
    color: #353FC3;
    font-size: 1.5em;
    left: 5%;
}

.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}

p.elchecker {
    padding: 0;
    text-align: left;
    font-size: 1.2em;
}

form#user_form p {
    margin: 0;
    padding: 0;
    margin-top: -2px;
    text-align: left;
    font-size: 1em;
    padding-left: 7px;
    padding-top: 2px;
}

form#user_form .botones {
    position: relative;
    text-align: center;
    margin: 20px;
    margin-bottom: 50px;
}
/*
form#user_form .botones .next, form#user_form .botones .previous, .btn.laCuenta {
    position: relative;
    margin: 0 auto;
    background: #ffd82b;
    border: 0;
    font-weight: bold;
    padding: 10px 50px;
    color: #3644bf;
    border-radius: 30px;
    transition: all 1s;
    cursor: pointer;
    font-size: 1.5em;
}


form#user_form .opciones {
    margin: 20px;
    padding: 10px 20px;
}

form#user_form .botones .previous {
    background: #353fc3;
    color: #fff;
    margin-right: 10px;
}
*/
form#user_form .opciones input{
    width: 100%;
    padding: 10px;
    border-radius: 30px !important;
    border: 0;
    box-shadow: 0 0 10px #ddd;
    font-size: 1.5em;
    font-weight: 100;
    padding-left: 30px;
}

form#user_form select {
    width: 100%;
    padding: 10px;
    border-radius: 30px !important;
    border: 0;
    box-shadow: 0 0 10px #ddd;
    font-size: 1.5em;
    font-weight: 100;
    padding-left: 30px;
}

.progress {
    height: 2rem !important;
    width: 50%;
    position: relative;
    margin: 0 auto;
    border-radius: 50px !important;
    font-weight: bold;
    font-size: 1.5em;
}

.progress-bar-striped {
    background: #333 !important;
    color: #fff !important;
    font-family: "Work Sans", sans-serif !important;
    font-size: 1em;
}

fieldset::after {
    content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 20px;
  width: 100%;
  background: url(images/cuadrado.svg) bottom center;
  background-size: 150%;
} 

.losContenidos {
    display: none;
}

ul.laLista {
    display: none;
}

.traka {
    display:flex;
    flex-direction:row;
    color:#fff;
    text-align:center;
    width:100%;
    flex-wrap: wrap;
    padding: 10px;
}

.traka p {
    margin-bottom: 0;
    padding: 3px;
    background: #333;
}

.entrada {
    background: #333;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 85vh;
    background: url(../images/2022/bkg3.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

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

.intro {
    min-height: 150px;
    background: #0a1c2e;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s;
    transition: all 1s;
}

.intro:hover {
    opacity: 0.5;
}

.intro:hover {
    background: #111;
}

.intro.dos {
    background: #fff;
}

.intro h3 {
    padding-bottom: 5px;
    margin: 0;
}

.intro h2 {
    margin: 0;
    padding: 20px;
    color: #f2f2f2;
    font-size: 3rem;
}

.intro.menu h2 {
    font-size: 1.5rem;
}

.intro p {
    font-weight: 100;
    color: #ddd;
    font-size: 1.5rem;
    text-align: center;
    padding: 5px;
    min-height: 120px;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
    justify-content: center;
}

.intro.dos p {
    min-height: auto;
    padding: 10px;
    color: #333;
}

.intro.dos p.lanorma {
    font-weight: bold;
    font-size: 2rem;
    background: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    margin: 0;
    padding: 0;
}

.intro h4 {
    margin: 0;
    padding: 0;
    text-align: center;
    margin-bottom: 15px;
}

.intro.menu {
    flex-direction: column;
}

.intro.menu h4 {
    width: 100%;
    background: #fff;
    border: 0;
    padding: 5px;
    margin-bottom: 0;
}

ul.menuServicios li a {
    width: 100%;
    display: block;
    padding: 10px;
    background: #122d48;
    color: #fff;
    border: 1px solid #ccc;
    font-weight: bold;
    font-size: 1.1rem;
    padding-left: 15px;
    transition: all 1s;
}

ul.menuServicios li a:hover {
    background: #353535;
    color: #fff;
}

ul.menuServicios li a i {
    padding: 5px;
    background: #0a1c2e;
    color: #fff;
    text-align: center;
    margin-right: 10px;
}

a.regresar {
    width: 100%;
    display: block;
    padding: 10px;
    background: #303030;
    color: #fff;
    font-weight: bold;
    font-size: 1.3rem;
    padding-left: 20px;
}

h3.acceso {
    font-size: 2rem;
    color: #111;
}

.container-fluid.modulos {
    background: #44536a;
}

.container.modulos {
    padding: 30px 0;
}

.col-md-12.documento h2 {
    margin: 0;
    padding: 16px;
    background: #000;
}

.selector {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.selector label {
    margin: 0;
}

.selector input {
    width: 30px;
    height: 30px;
    background: #333;
    margin-right: 10px;
}

.demoexamen {
    display: none;
}

.row.diplomaQR {
    display: none;
}

.demoexamen .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.demoexamen .form-group input {
    text-align: left;
}
