.spinner-container,
.spinner-container-with-cancel {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  display: none;
}
.spinner-sub-container {
  position: absolute;
  height: 160px;
  z-index: 999;
  top: 35%;
  box-shadow: 0px 0px 5px 1px #c7c7c7;
  border-radius: 2px;
  left: 0;
  right: 0;
  border: 2px solid #a7a7a7;
  margin-left: auto;
  margin-right: auto;
  width: 310px;
  background: #e2e1e1;
  opacity: 0.8;
}

.spinner-container .message,
.spinner-container-with-cancel .message {
  position: absolute;
  color: #000;
  width: 100%;
  text-align: center;
  top: 25%;
  font-size: 22px;
  font-weight: initial;
}

.spinner {
  margin: 0 auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  display: none;
}
.spinner-pos-monitor {
  left: 72%;
  top: 6%;
  margin-left: 6px;
  margin-top: 2px;
  position: absolute;
}
.spinner > div {
  background-color: #44bd48;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

.spinner-btn-close {
  cursor: pointer;
  border: 2px solid #565656;
  border-radius: 2px;
  color: #3c3a3a;
  width: 100px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  margin: 10px auto;
  padding: 8px;
}
