.spinner-container1 {
    /* width: 250px; */
    height: 175px;
    position: absolute;
    margin: auto;
    top: 0;
    left: -1%;
    right: 0;
    bottom: 0;
    z-index: 995;
}
.spinner-sub-container {
  position: absolute;
  height: 160px;
  z-index: 999;
  top: -30%;
  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-container1 .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;
}
.spinner-pos-monitor{
  left: 72%;top: 10%;margin-left: 6px;margin-top: 2px;position:absolute;
}

.loader {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #8792d6;
  border-bottom: 5px solid #8792d6;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

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

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

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

.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;
}