html {
  font-size: 0.052vw;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', Arial, sans-serif;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  max-height: 100%;
  background-color: #000;
}

#root {
  width: 100%;
}

#error {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70rem 50rem;
}

#network-error {
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

#network-error-device-info {
  min-width: 500rem;
  max-width: 700rem;
  padding: 20rem;
  border-radius: 8rem;
  background: rgba(71, 71, 71, 0.5);
  box-sizing: border-box;
}

.network-error-device-info-item {
  color: #fff;
  font-size: 30rem;
  line-height: 50rem;
}

#network-error-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 80rem;
  box-sizing: border-box;
}

.network-error-message {
  text-align: center;
  font-size: 34rem;
  color: rgba(255, 255, 255, 0.87);
}

#reload-button {
  color: #fff;
  background-color: #f26522;
  min-width: 200rem;
  min-height: 60rem;
  padding: 20rem;
  border: none;
  border-radius: 3rem;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 20rem;
  font-weight: 900;
  line-height: 19rem;
  max-width: 300rem;
  outline: none;
  margin-top: 44rem;
}

.network-error-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100rem;
  padding: 0 50rem 70rem;
  box-sizing: border-box;
}

.network-error-timestamp {
  color: #fff;
  font-size: 30rem;
}

.network-error-code {
  display: flex;
  visibility: hidden;
  color: #FFF;
  font-size: 34rem;
  line-height: 60rem;
  letter-spacing: 0.8rem;
}

#global-error {
  visibility: hidden;
  font-size: 28rem;
  color: #fff;
}

.global-error-label {
  text-align: center;
  font-size: 40rem;
}

#spinner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

#spinner {
  position: relative;
  width: 40px;
  height: 40px;
}

@keyframes pulsate {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

.bounce-one {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulsate 2s infinite ease-in-out;
  animation-duration: 2.0s;
}

.bounce-two {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulsate 2s infinite ease-in-out;
  animation-duration: 2.0s;
  animation-delay: -1s;
}
