﻿.app-loader {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10101;
    background: rgba(0,0,0,.3);
    position: fixed;
    top: 0;
    left: 0;
}
.app-loader-content {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    margin: 18% auto 0 auto;
    background: rgba(117,207,184,1);
    border: 10px solid rgba(98,183,191,.5);
}
.app-loader-logo {
    width: 100%;
    height: auto;
    margin: 20px auto 0 auto;
    text-align: center;
}
.app-loader-logo img {
    max-width: 160px;
    height: auto;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #efc01b;
  font-size: 10px;
  margin: -10px auto 0 auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
  color: #efc01b;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  color: #f4da57;
}
.loader:after {
  left: 3.5em;
  color: #e99e3c;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}