/*! 1.0.0 */
.dw-mx-request-loader-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999;
  margin: -20px 0 0 -20px;
}
.dw-mx-request-loader-wrapper-hidden {
  display: none;
}
.dw-mx-request-loader-label {
  margin-top: 15px;
  color: rgba(0, 0, 0, 0.65);
}
.dw-mx-request-loader {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  position: relative;
}
.dw-mx-request-loader-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dw-mx-request-loader-circle span {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #67CF22;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: dw-mx-request-animate-circle 1.2s infinite ease-in-out;
  animation: dw-mx-request-animate-circle 1.2s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.dw-mx-request-loader-circle span:nth-child(1) {
  top: 0;
  left: 0;
}
.dw-mx-request-loader-circle span:nth-child(2) {
  top: 0;
  right: 0;
}
.dw-mx-request-loader-circle span:nth-child(3) {
  right: 0;
  bottom: 0;
}
.dw-mx-request-loader-circle span:nth-child(4) {
  left: 0;
  bottom: 0;
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle1 span:nth-child(2) {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle1 span:nth-child(3) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle1 span:nth-child(4) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle2 span:nth-child(1) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle2 span:nth-child(2) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle2 span:nth-child(3) {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle2 span:nth-child(4) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle3 span:nth-child(1) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle3 span:nth-child(2) {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle3 span:nth-child(3) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.dw-mx-request-loader-circle.dw-mx-request-loader-circle-circle3 span:nth-child(4) {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
@-webkit-keyframes dw-mx-request-animate-circle {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
  80% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes dw-mx-request-animate-circle {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
  80% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}

.dw-mx-request-exception-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: none;
  z-index: 9999999999;
  width: 100vw;
  height: 100vh;
}

