.loading {
  background: #284684;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100; }

.loading_anime {
  color: #fff;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%); }
  .loading_anime span {
    animation: load 2s infinite;
    background: #fff;
    border-radius: 5px;
    display: block;
    height: 5px;
    margin-top: 7px;
    width: 100px; }
    .loading_anime span:nth-of-type(2) {
      animation-delay: 100ms; }
    .loading_anime span:nth-of-type(3) {
      animation-delay: 200ms; }

.loading_txt {
  color: #fff;
  margin-top: 5px; }

@keyframes load {
  50% {
    margin-right: 95px;
    opacity: .1;
    width: 5px; } }
