/* Loader Styles */
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: rgba(255, 255, 255, 0.59); */
  z-index: 3;
}

.loader.loader--absolute {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1051;
}

.loader.loader--fixed {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1051;
}

.spinner-border {
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
  height: 2.8em;
  width: 2.8em;
}

.spinner-border__main {
  height: 4rem;
  width: 4rem;
}

.spinner-border__notes {
  height: 5rem;
  width: 5rem;
}

.spinner-border__btn {
  border: 0.25em solid white;
  border-right-color: transparent;
  height: 1rem;
  width: 1rem;
}

.spinner-border-primary {
  border: 0.25em solid #005caf;
  border-right-color: transparent;
}

.spinner-caption {
  text-align: center;
  color: #333;
  font-size: 15px;
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
}
/* End Loader Styles */
