/* =========================================== Loader Css =========================================== */
@-webkit-keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes wls_dot_box {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@-webkit-keyframes wls_dot {

  80%,
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes wls_dot {

  80%,
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@-webkit-keyframes wls_dot_after {
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4)
  }

  100%,
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes wls_dot_after {
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4)
  }

  100%,
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

#win_loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, right bottom, left top, from(#AF4EA6), to(#A73F9D));
  background: linear-gradient(to top left, #AF4EA6 0%, #A73F9D 100%);
  z-index: 9999999;
}

#win_loader #wl_start {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wls_dot_box {
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-animation: wls_dot_box 2.5s infinite linear both;
  animation: wls_dot_box 2.5s infinite linear both;
}

.wls_dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: wls_dot 2.0s infinite ease-in-out both;
  animation: wls_dot 2.0s infinite ease-in-out both;
}

.wls_dot:after {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: wls_dot_after 2.0s infinite ease-in-out both;
  animation: wls_dot_after 2.0s infinite ease-in-out both;
}

.wls_dot:nth-child(1) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.wls_dot:nth-child(2) {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.wls_dot:nth-child(3) {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.wls_dot:nth-child(4) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.wls_dot:nth-child(5) {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.wls_dot:nth-child(6) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.wls_dot:nth-child(1):after {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.wls_dot:nth-child(2):after {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.wls_dot:nth-child(3):after {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.wls_dot:nth-child(4):after {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.wls_dot:nth-child(5):after {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.wls_dot:nth-child(6):after {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}