@import '../../styles/variables';
$spinner-color: $secondary !default;

.spinner-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;

  .spinner-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.75;
  }

  .spinner {
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    opacity: 0.75;
  }
}
