.loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
    background: #fff;
    z-index: 9999;
}
.loading_logo {
    position: absolute;
    width: 45%;
    max-width: 150px;
    min-width: 85px;
    top: 40%;
    left: 0;
    right: 0;
    margin: auto;
}

@media (max-width:559px) {
.loading_logo {
    position: absolute;
    width: 45%;
    max-width: 100px;
    min-width: 85px;
}
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}
.animation {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #001E50;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
.loaded_show {
    display: none;
    opacity: 0;
}
.is-show {
    display: block;
    opacity: 1;
}
