#bw_probo_overlay {
  position: sticky;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.75);
  z-index: 1000;
  width: 100%;
  height: 100%;
}

#bw_probo_overlay .spinner-wrapper {
  height: 100px;
}

#bw_probo_overlay .spinner-text {
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
}

#bw_probo_overlay .spinner {
  position: relative;
  left: calc(50% - 23px);
  background: none;
  height: auto;
  margin: unset;
}

#bw_probo_overlay .spinner-text {
  top: 60px;
}
#bw_probo_overlay .spinner {
  top: 10px;
}

#bw_probo_overlay .spinner-wrapper {
  position: sticky;
  top: 50%;
}

#bw_probo_overlay .spinner::before {
  animation: 1.5s linear infinite spinner;
  animation-play-state: inherit;
  border: solid 5px #cfd0d1;
  border-bottom-color: #1c87c9;
  border-radius: 50%;
  content: "";
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(-50%, -50%, 0);
  width: 40px;
  will-change: transform;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.justify-content-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}
.ml-auto {
  margin-left: auto;
}
