.LoadingScreen-text {
  position: fixed;
  top: calc(50% - 80px);
  font-size: 24px;
  width: 100%;
  text-align: center;
  color: #555;
  font-weight: bold;
}

.LoadingScreen-icon {
  position: fixed;
  top: calc(50% - 190px);
  left: 50%;
  width: 80px;
  height: 80px;
  background: rgba(255, 228, 225, 0.2);
  transform: translate(-50%, 0);
  border-radius: 50%;
}

.LoadingScreen-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: rgba(255, 228, 225, 0.2);
  transform: translate(-50%, 0);
  border-radius: 50%;
}

.LoadingScreen-loader::before,
.LoadingScreen-loader::after {
  content: '';
  position: absolute;
  border: 16px solid transparent;
  left: -16px;
  top: -16px;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  max-height: 80px;
  max-width: 80px;
}

.LoadingScreen-loader::after {
  border-top-color: #4dcdba;
  border-bottom-color: #03a9f4;
  animation: loading-screen-spin 1s linear infinite;
}
.LoadingScreen-loader::before {
  border-top-color: #ffc107;
  border-bottom-color: #ed1b61;
  animation: loading-screen-spin 2s linear infinite;
}

@keyframes loading-screen-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.shift-right {
  position: absolute;
  right: 0;
}
