#app-refresh {
  display: none;
  min-width: 130px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 0.875rem;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .75);
  color: black;
  background-color: #ffffff;
  font-family: 'SkattaSansMedium';
  position: fixed;
  z-index: 999;
  bottom: calc(25%);
  left: calc(50% - 55px);
}

.startupSpinner__wrapper {
  position: fixed;
  z-index: 999;
  top: calc(50% - 21.25px);
  left: calc(50% - 21.25px);
}

.startupSpinner__container {
  position: absolute;
  z-index: 999;
  top: calc(50% - 21.25px);
  left: calc(50% - 21.25px);
}

.startupSpinner__background {
  opacity: 1;
  width: 50px;
  height: 50px;
}

.startupSpinner {
  color: white;
  display: inline-block;
  position: relative;
  width: 42.5px;
  height: 42.5px;
}

.startupSpinner div {
  transform-origin: 21.5px 21.5px;
  animation: startupSpinner 1.2s linear infinite;
}

.startupSpinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 2px;
  left: 19.5px;
  width: 4px;
  height: 10px;
  border-radius: 25%;
  background-color: white;
}

.startupSpinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.startupSpinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.startupSpinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.startupSpinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.startupSpinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.startupSpinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.startupSpinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.startupSpinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.startupSpinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.startupSpinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.startupSpinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.startupSpinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes startupSpinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
