/* Página */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.content {
  flex: 1;
  padding: 1.7rem;
}

footer {
  background: #353434;
  color: white;
  padding-top: 25px;
  margin-top: 7px;
}

footer.page-footer {
  margin: 0;
}

.foo {
	color: white;
	cursor: pointer;
	text-decoration: none;
}

.foo:hover {
	color: white;
	cursor: pointer;
	text-decoration: none;
}

/* Header */
html, body {
  margin: 0;
  padding: 0;
  font-family: verdana !important;
	overflow: visible;
	overflow-x: hidden;
}

/* .main {
  background-color: rgba(230, 49, 24, 1);
  height: 100%;
  padding-top: 20%;
  padding-bottom: 30%;
  padding-left: 20%;
  /* display: flex;
  justify-content: center;
} */

/* Botones */
.botones {
  display: flex;
  justify-content: center;
  align-items: center;
}

.boton {
  padding: 10px;
  margin: 10px;
  background-color: #f8f9fa;
  width: 300px;
  height: 25%;
  border-color: #F69DA1;
  border-width: 3px;
  border-style: solid;
}

/* Nav */
.navPrincipal {
  background: rgb(255, 96, 0);
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 100;
}

.navSecundario {
  background: rgb(255, 96, 0);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.navbar-brand {
  padding-top: 0.2rem;
}

.main {
  flex: 1;
  padding-top: 59px;
}

.banner {
  width: 100%;
}

.registrar {
  border: 2px solid white;
  color: white;
  margin-left: 25px;
}

.registrar:hover {
  background-color: white;
  color: rgb(255, 96, 0);
}

.btn {
  border-radius: 0;
}

.ingresar {
  cursor: pointer;
  color: white !important;
}

.btnBuscar {
  border: 2px solid white;
  color: white;
}

.btnBuscar:hover {
  background-color: white;
  color: rgb(255, 96, 0);
}

.buscar {
  border-radius: 0;
}

.navbar-light .navbar-toggler {
  border-color: white;
}

.links {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 3px;
  margin: 10px 10px 0px 8px;
}

.links2 {
  height: 65px;
  width: 200px;
  background-color: white;
  padding: 10px;
  display: inline-block;
  color: rgb(255, 96, 0);
  display: table;
}

.textLink {
  display: table-cell;
	vertical-align: middle;
}

.imgPublicidad {
  width: 100%;
}

.b {
  border-style: none solid none none;
  border-color: #595959;
}

.sectionCard {
  position: static;
}

.card {
  border: none;
}

.card-img-top {
  cursor: pointer;
  transition: transform .2s;
  width: 100% !important;
}

.card-img-top:hover {
  transform: scale(1.1);
}

.card-body {
  padding: 0.5rem 0 0 0;
}

.card-deck {
  padding-bottom: 30px;
}

.card-play {
  position: relative;
  left: 0;
  top: 0;
  text-align: center;
}

.card_play {
  float: left;
  position: absolute;
  text-align: center;
  top: 25%;
}

.eye{
  position: relative;
  height: 90%;
  width: 20%;
  z-index: 1;
	cursor: pointer;
}

.card-footer {
  border: none;
  background: white;
}

/* Modal (Login-Registro) */
.modal-contenido {
  background-color: white;
  width: 745px;
  height: 600px;
  padding: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.modal {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  display: block;
  pointer-events: none;
}
/* Fin Modal (Login-Registro) */

/* Input modales */
.field__input{
  background-color: transparent;
  border-radius: 0;
  border: none;

  -webkit-appearance: none;
  -moz-appearance: none;

  font-family: inherit;
  font-size: 1em;
}

.field__input:focus::-webkit-input-placeholder{
  color: #767676;
}

.field__input:focus::-moz-placeholder{
  color: #767676;
  opacity: 1;
}

.a-field{
  display: inline-block;
}

.a-field__input{
  display: block;
  box-sizing: border-box;
  width: 100%;
}

.a-field__input:focus{
  outline: none;
}

.a-field{
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  padding-top: 1em;
}

.a-field__input{
  height: 40px;
  padding: 0 15px 0 15px;
  border-bottom: 2px solid rgba(255, 96, 0, 0.57);
}

.a-field__input::-webkit-input-placeholder{
  opacity: 0;
  transition: opacity .2s ease-out;
}

.a-field__input::-moz-placeholder{
  opacity: 0;
  transition: opacity .2s ease-out;
}

.a-field__input:not(:placeholder-shown) ~ .a-field__label-wrap .a-field__label{
  opacity: 0;
  bottom: 15px;
}

/* Para Intener Explorer */
.a-field__input:not(:-ms-input-placeholder) ~ .a-field__label-wrap .a-field__label{
  opacity: 0;
  bottom: 15px;
}

.a-field__input:focus::-webkit-input-placeholder{
  opacity: 1;
  transition-delay: .2s;
}

.a-field__input:focus::-moz-placeholder{
  opacity: 1;
  transition-delay: .2s;
}

.a-field__label-wrap{
  box-sizing: border-box;
  width: 100%;
  height: 40px;

  pointer-events: none;
  cursor: text;

  position: absolute;
  bottom: 0;
  left: 0;
}

.a-field__label{
  position: absolute;
  left: 15px;
  bottom: calc(50% - .5em);

  line-height: 1;
  font-size: 1em;

  pointer-events: none;
  transition: bottom .2s cubic-bezier(0.9,-0.15, 0.1, 1.15), opacity .2s ease-out;
  will-change: bottom, opacity;
}

.a-field__input:focus ~ .a-field__label-wrap .a-field__label{
  opacity: 1;
  bottom: 40px;
}

/* a-field_a1 */

.a-field_a1 .a-field__input{
  transition: border-color .2s ease-out;
  will-change: border-color;
}

.a-field_a1 .a-field__input:focus{
  border-color: rgb(255, 96, 0);
}

/* a-field_a2 */

.a-field_a2 .a-field__label-wrap::after{
  content: "";
  box-sizing: border-box;
  width: 0;
  height: 2px;
  background-color: rgb(255, 96, 0);

  position: absolute;
  bottom: 0;
  left: 0;

  will-change: width;
  transition: width .285s ease-out;
}

.a-field_a2 .a-field__input:focus ~ .a-field__label-wrap::after{
  width: 100%;
}

/* a-field_a3 */

.a-field_a3{
  padding-top: 1.5em;
}

.a-field_a3 .a-field__label-wrap::after{
  content: "";
  box-sizing: border-box;
  width: 100%;
  height: 0;

  opacity: 0;
  border: 2px solid rgb(255, 96, 0);

  position: absolute;
  bottom: 0;
  left: 0;

  will-change: opacity, height;
  transition: height .2s ease-out, opacity .2s ease-out;
}

.a-field_a3 .a-field__input:focus ~ .a-field__label-wrap::after{
  height: 100%;
  opacity: 1;
}

.a-field_a3 .a-field__input:focus ~ .a-field__label-wrap .a-field__label{
  bottom: calc(40px + .5em);
}
/* Fin input modales */

body{
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Open Sans, Ubuntu, Fira Sans, Helvetica Neue, sans-serif;
  margin: 0;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page{
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  margin: auto;

  display: grid;
  grid-gap: 30px;
  align-items: flex-end;
  order: 1;
}

@media (min-width: 481px){

  .page{
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
/* Fin Input */

/* Boton modal */
.boton_2 {
  text-decoration: none;
  padding: 18px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 800;
  font-size: 18px;
  color: black;
  background-color: rgb(255, 96, 0);
  bottom: 15%;
  cursor: pointer;
}

.boton_2:hover {
  color: #9b0e0e;
  background-color: rgba(255, 96, 0, 0.57);
  text-decoration: none;
}

.boton2 {
  padding: 30px;
}

/* text */
.text1 {
  font-weight: normal;
}

.text2 {
  font-weight: bold;
  cursor: pointer;
  color: rgb(255, 96, 0);
}

.text2:hover {
  color: rgb(255, 96, 0);
  text-decoration: none;
}

.mensaje {
  padding: 30px;
  display: none;
}

/* Video */
.informacion {
  text-align: justify;
  padding: 0px 10px 0px 10px;
}

.iframe_video {
  width: 619px;
  height: 358px;
}

.autor {
  font-weight: bold;
  font-size: 35px;
  text-align: left;
}

.titulo {
  font-weight: bold;
  font-size: 25px;
  text-align: left;
}

.texto {
  font-weight: normal;
  font-size: 18px;
}

/* Mi Perfil */
.mainPerfil {
  width: 100%;
  height: 200px;
  background-color: rgb(255, 96, 0);
  position: relative;
  top: -7px;
}

.infoPerfil {
  position: relative;
  top: -125px;
  width: 400px;
  text-align: center;
}

.imgPerfil {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.info {
  width: 290px;
  position: relative;
  left: 25%;
}

.input-container {
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}

.icon {
  padding: 10px;
  background: rgb(255, 96, 0);
  color: white;
  min-width: 50px;
  text-align: center;
}

.input-field {
  width: 100%;
  padding: 10px;
  outline: none;
  border: 2px solid rgb(255, 96, 0);
  pointer-events:none;
}

.btnPerfil, .btnPerfil:hover, .btnPerfil:link {
  color: rgb(255, 96, 0) !important;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

.tamañosLogos {
  cursor: pointer;
}

.listaCursos {
  padding: 15px 9px 0px 9px;
}

.iconColor {
  color: rgb(255, 96, 0) !important;
}

.iconText {
  font-size: 30px !important;
  position: relative;
  top: 6px;
  padding-right: 6px;
}

.jumDis {
  background-color: white;
  margin-bottom: 0rem;
  padding: 1rem 0rem;
}

.viDis {
  text-align: center;
  padding-top: 1rem;
}

/* Tamaños */
@media (min-width: 1281px) {

}

@media (min-width: 1025px) and (max-width: 1280px) {

}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .modal-contenido {
    width: 735px;
    overflow: scroll;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .modal-contenido {
    width: 485px;
    overflow: scroll;
  }

  .infoPerfil {
    width: 350px;
  }

  .iframe_video {
    width: 428px;
    height: 236px;
  }
}

@media (max-width: 600px) {
  .links2 {
    width: 40%;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .modal-contenido {
    width: 340px;
    overflow: scroll;
  }

  .page {
    grid-gap: 10px;
  }

  .iframe_video {
    width: 245px;
    height: 172px;
  }

  .tamañosLogos {
    width: 85px;
    height: 62%;
  }

  .infoPerfil {
    width: 297px;
  }
}

@media (max-width: 319px) {
  .iframe_video {
    width: 204px;
    height: 120px;
  }
}

/* Loading pagina */
.loader-page {
  position: fixed;
  z-index: 25000;
  background: white;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:all .3s ease;
}

.loader-page::before {
  content: "";
  position: absolute;
  border: 2px solid rgb(255, 96, 0);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-sizing: border-box;
  border-left: 2px solid rgba(255, 96, 0,0);
  border-top: 2px solid rgba(255, 96, 0,0);
  animation: rotarload 1s linear infinite;
  transform: rotate(0deg);
}

@keyframes rotarload {
    0%   {transform: rotate(0deg)}
    100% {transform: rotate(360deg)}
}

.loader-page::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 96, 0,.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-sizing: border-box;
  border-left: 2px solid rgba(255, 96, 0, 0);
  border-top: 2px solid rgba(255, 96, 0, 0);
  animation: rotarload 1s ease-out infinite;
  transform: rotate(0deg);
}

/* Loading modales */
.loading {
  padding: 0;
  font-family: ‘Arial Narrow’, sans-serif;
  font-weight: 100;
  font-size: 1.1em;
  color: rgb(255, 96, 0);
  display: none;
}

.sp {
  position: relative;
  top: 0.63em;
  display: inline-block;
  text-transform: uppercase;
  opacity: 0;
  transform: rotateX(-90deg);
}

.let1 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.2s;
}

.let2 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.3s;
}

.let3 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.4s;
}

.let4 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.5s;

}

.let5 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.6s;
}

.let6 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.7s;
}

.let7 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.8s;
}

.let8 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.9s;
}

@keyframes drop {
    10% {
        opacity: 0.5;
    }
    20% {
        opacity: 1;
        top: 3.78em;
        transform: rotateX(-360deg);
    }
    80% {
        opacity: 1;
        top: 3.78em;
        transform: rotateX(-360deg);
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        top: 6.94em
    }
}
