@import url('//fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,900&display=swap');

#splashScreenContainer  *{ 
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}
.splashScreen_Cargando{ 
  position: relative; 
  color: #FFF;
  margin-top: 2em;
  letter-spacing: 0.08em;
  text-transform: uppercase
}
.splashScreenContainer-loader{  
  height: 6em;
}
#splashScreenContainer, #pdfContainer{ 
    background-color: #000000c9;
    display: none;
    place-content: center;
    height: 100vh;
    color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

.splasshScreen_loadAnimation,
.splasshScreen_loadAnimation:before,
.splasshScreen_loadAnimation:after {
  background: #FFF;
  animation: splashScreen_Cargando 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.splasshScreen_loadAnimation:before,
.splasshScreen_loadAnimation:after {
  position: absolute;
  top: 0;
  content: '';
}
.splasshScreen_loadAnimation:before {
  left: -1.5em;
}
.splasshScreen_loadAnimation {
  text-indent: -9999em;
  margin: 40% auto;
  position: relative;
  font-size: 11px;
  animation-delay: 0.16s;
}
.splasshScreen_loadAnimation:after {
  left: 1.5em;
  animation-delay: 0.32s;
}

@keyframes splashScreen_Cargando {
  0%,
  80%,
  100% {
    box-shadow: 0 0 #FFF;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em #ffffff;
    height: 5em;
  }
}