.views-progress-element {
  font-family: "Raleway", sans-serif;
  font-size: 2.59rem; /* XL Font size. */
  color: #415970; /* Brand heading color. */
  font-weight: 600;
  background: none;
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%); /*Top position is applied through JS. */
  padding: 0;
  margin: 0;
  opacity: 1;
}

.progress-indicator-fullscreen {
  position: fixed;
  border-radius: 0.25rem;
  top: 50%;
  left: 42%;
  padding: 1rem;
  background-color: white;
  border: 1px solid #C2C2C2;
  border-color: #137B92;
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgb(9 14 22 / 15%);
  z-index: 1070;
}

@media (min-width: 576px) {
  .progress-indicator-fullscreen  {
    left: 50%;
  }
}

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

.progress-spinner-border {
  display: inline-block;
  height: 2.5rem;
  width: 2.5rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite progress-spinner-animation;
  z-index: 1000
}

