.progress-spinner-container {
    position:absolute;
    display:flex;
    align-items:start;
    justify-content:center;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:10000;
    opacity:1;
}
.progress-spinner {
  margin: 100px auto;
  width: 100px;
  height: 80px;
  text-align: center;
  font-size: 20px;
}

.progress-spinner > div {
  background-color: #008b8b;
  height: 100%;
  width: 10px;
  display: inline-block;
  /*box-shadow: 0px 0px 5px #008b8b;*/

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

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

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

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

.progress-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.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);
     }
}
.progress-spinner > .display {
  position: absolute;
  width: 100%;
  top: 50%;
  font-family: Courier New, monospace;
  font-weight: bold;
  line-height: 0;
  font-size: 16px;
}
.progress-spinner > .display .subscript {
  font-size: 10px;
  position: relative;
  top: 18px;
}

.container-spin {
  position:relative!important;
}