/* Estilo idiomas escondidos*/
.hidden {
  display: none;
  transition: 1000ms ease-in-out;
}
/* Estilos loader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fefefe;
  z-index: 99999;
  height: 100%;
  width: 100%;
  overflow: hidden !important;
}
.status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url("../img/loading.gif");
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

/* Estilos fadeIn*/
.fade-in {
  opacity: 0;
  transform: translateX(-10rem);
  transition-delay: 200ms;
  transition: opacity ease-out;
}
.appear {
  color: inherit;
  transition: all 200ms ease-in;
  opacity: 1;
  transform: none;
  visibility: visible;
}
