.loadingSpinner {
  height: 1.1rem;
  width: 1.1rem;
  border: 0.15rem solid #bdbdbd78;
  border-top-color: #278cd4;
  border-radius: 100%;
  animation: rotate360 1.2s linear infinite;
  float: right;
  margin: 0px !important;
  margin-left: 10px !important;
}

.loadingSpinner a {
  display: none !important;
}

.loadingSpinnerAccount {
  height: 1.1rem;
  width: 1.1rem;
  border: 0.15rem solid #bdbdbd78;
  border-top-color: #278cd4;
  border-radius: 100%;
  animation: rotate360 1.2s linear infinite;
}

.loadingSpinnerAccount a {
  display: none !important;
}

.loadingSpinnerBig {
  height: 4rem;
  width: 4rem;
  border: 0.25rem solid #bdbdbd78;
  border-top-color:#278cd4;
  border-radius: 100%;
  animation: rotate360 1s linear infinite, colorSwap 10s infinite;
  margin: 20px auto;
}

.loadingSpinnerBig a {
  display: none !important;
}

.loadingSpinnerModal {
  height: 4rem;
  width: 4rem;
  border: 0.25rem solid #bdbdbd78;
  border-top-color:#278cd4;
  border-radius: 100%;
  animation: rotate360 1s linear infinite, colorSwap 10s infinite;

  position:absolute;
  left:0; right:0;
  top:0; bottom:0;
  margin:auto;

  max-width:100%;
  max-height:100%;
  overflow:auto;
}

.loadingSpinnerModal a {
  display: none !important;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes colorSwap {
  0% {border-top-color: red;}
  20%{border-top-color: orange;}
  40%{border-top-color: green;}
  60%{border-top-color: black;}
  80% {border-top-color: teal;}
  100% {border-top-color: red;}
}