/* THIS FILE IS OVERWRITTEN FROM THE SOURCE */

/* LOADING INDICATOR */

.loading-container {
  background-color: var(--primary-background-color);
  position: absolute;
  left: calc(50% - 78px);
  top: 25%;
  z-index: 400;
  box-shadow: 8px 8px 5px #11181b, 1px -1px 5px #11181b, -1px 1px 5px #11181b;
}
.loading-container.fixed {
  position: fixed;
  top: calc(50% - 35px);
}
.loading-container.hidden {
	display: none;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.small {
  padding: 0;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 30px;
}

.small .lds-ring {
  width: 20px;
  height: 10px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 34px;
  height: 34px;
  margin: 0 !important;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #b3daff transparent transparent transparent;
}

.small .lds-ring div {
  width: 20px;
  height: 8px;
  border: 2px solid #fff;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
