@charset "utf-8";

#loading {
  width: 100%;
  height: calc(100% + 600px);
  background: rgba(0,0,0,.7);
  position: fixed;
  top: -300px;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.loading_txt {
  color: rgba(255,255,255,1);
  margin: 25px 0 50px;
  letter-spacing: 1px;
  font-size: 16px;
}
.spinner {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  transform: scale(1.3);
}
.spinner li {
  margin: 0 5px;
  width: 1.12rem;
  height: 1.12rem;
  background-color: rgba(255,255,255,1);
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1.2s infinite ease-in-out both;
}
.spinner .bounce1 {
  animation-delay: -0.48s;
}
.spinner .bounce2 {
  animation-delay: -0.32s;
}
.spinner .bounce3 {
  animation-delay: -0.16s;
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    transform: scale(0);
  } 40% { 
    transform: scale(1);
  }
}