.siteloader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 16px);
  width: 100%;
}

.siteloader__wrapper {
  height: 48px;
  transform-origin: center;
  animation: rotate 1.4s linear infinite;
}

.siteloader__progress {
  color: #212936;
  height: 48px;
  width: 48px;
}

.siteloader__text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #212936;
}

.siteloader__progress--circle {
  stroke: currentColor;
  stroke-width: 4px;
  stroke-dasharray: 80px, 200px;
  stroke-dashoffset: 0px;
  animation: rotateCircle 1.4s ease-in-out infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateCircle {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0px;
  }

  50% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -125px;
  }
}

.Errors {
  max-width: 50rem;
  margin: auto;
  padding: 6rem 3rem;
}

.Errors__content {
  padding: 1.5rem;
}

.Errors__title,
.Errors__message {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.Errors__title {
  font-size: 3.052rem;
  font-weight: 300;
  line-height: 3.75rem;
}

.Errors__message {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.Errors__message a {
  color: rgb(0, 147, 147);
}

