.loaderBackground{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  width: 100vw;
  height: 100vh;
}

.loaderWrapper{
  width: 50vw;
}

.loadingCircle {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.loadingAnim {
  border: 8px solid #f1f1f1;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 2s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loaderWrapper .progressLoader .progress{
  position: relative;
  border: 2px solid #ccc;
  height: 10px;
  display: inline-block;
  width: 50%;
}

.loaderWrapper .progressLoader{
  display: none;
  text-align: center;
}

.loaderWrapper .loaderText{
  margin: 15px 0;
  text-align: center;
  color: #444;
  mix-blend-mode: difference;
  font-size: 22px;
}

.ball-pulse-sync{
  margin-top: 25px;
}

.ball-pulse-sync > div {
  width: 10px;
  height: 10px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.ball-pulse-sync > div, .ball-pulse > div, .ball-scale-random > div, .ball-scale > div {
  background-color: rgba(150,150,150,1);
  border-radius: 100%;
  margin: 2px;
  display: inline-block;
  margin-right: 8px;
}
.ball-pulse-sync > div:nth-child(1) {
  -webkit-animation: ball-pulse-sync 1.2s -.14s infinite ease-in-out;
  animation: ball-pulse-sync 1.2s -.14s infinite ease-in-out;
}
.ball-pulse-sync > div:nth-child(2) {
  -webkit-animation: ball-pulse-sync 1.2s -70ms infinite ease-in-out;
  animation: ball-pulse-sync 1.2s -70ms infinite ease-in-out;
}
.ball-pulse-sync > div:nth-child(3) {
  -webkit-animation: ball-pulse-sync 1.2s 0s infinite ease-in-out;
  animation: ball-pulse-sync 1.2s 0s infinite ease-in-out;
}
@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
