/* line 4, ../sass/screen.scss */
.loader {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 99999;
}

/* line 13, ../sass/screen.scss */
.over-loader {
  background: #ed5565;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

/* line 23, ../sass/screen.scss */
.hide-loader {
  display: none;
}

/* line 26, ../sass/screen.scss */
.switch-loader {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 999999;
}
/* line 32, ../sass/screen.scss */
.switch-loader ul {
  margin: 0px;
  padding: 0px;
  text-align: center;
  list-style: none;
}
/* line 37, ../sass/screen.scss */
.switch-loader ul li {
  display: inline-block;
  margin: 0 4px;
  color: #fff;
  font-size: 16px;
  padding: 10px;
}
/* line 43, ../sass/screen.scss */
.switch-loader ul li a {
  text-decoration: none;
  color: #fff;
}
/* line 49, ../sass/screen.scss */
.switch-loader ul li.active > a {
  color: #000;
}

/* line 56, ../sass/screen.scss */
.loader-live {
  z-index: 9999991;
  background: #fff;
}

/* line 62, ../sass/screen.scss */

/* line 144, ../sass/screen.scss */
.loader-item.style5 {
  width: 70px;
  text-align: center;
}
/* line 150, ../sass/screen.scss */
.loader-item.style5 > div {
  width: 18px;
  height: 18px;
  background-color: #2757A9;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loader-item.style5 .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader-item.style5 .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes line-scale {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.4);
  }
}


@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
