@keyframes donut-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.d-spinner {
  display: inline-block;
  border: 6px solid #91c5ee;
  border-left-color: #2185d0;
  border-radius: 50%;
  animation: donut-spin 1.2s linear infinite;
}

.d-spinner-div.glass {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  opacity: 0.7;
  background-color: black;
  z-index: 1200;
}

.progress-text-div {
  width: 100%;
  position: absolute;
  top: 55%;
}

.progress-text {
  background-color: #fff;
  border-radius: 10px;
  padding: 0.5em;
  font-weight: bold;
  z-index: 1201;
  margin: auto;
  position: relative;
  width: 120px;
  text-align: center;
}

.spinner-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}