#app-fullscreen-loader {
  position: fixed;
  z-index: 99999;
  background-color: white;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

#app-fullscreen-loader.loaded {
  display: none;
}

.ping-container {
  position: relative;
  margin: -50px 0 0 -50px;
}

.ping-container > div:nth-child(1) {
  position: absolute;
  border-radius: 80px;
  padding: 20px;
  transform-origin: center;
  animation-iteration-count: infinite;
}

.ping-container > div:nth-child(2) {
  position: absolute;
  border-radius: 80px;
  padding: 20px;
  transform-origin: center;
  animation-iteration-count: infinite;
  animation-delay: -0.9s;
  left: 0;
  right: 0;
}

.ping {
  animation-duration: 1.8s;
  animation-name: ping;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes ping {
  from {
    transform: scale(0);
    opacity: 1;
    border: solid #000 7px;
  }

  to {
    transform: scale(1) translate(4px, 3px);
    opacity: 0;
    border: solid #000 2px;
  }
}

#page-loading-error {
  position: fixed;
  z-index: 999999;
  background-color: white;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter var', sans-serif;
}

#page-loading-error > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

#page-loading-error > div > img {
  width: 70px;
  height: 70px;
}

#page-loading-error > div > .err__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

#page-loading-error > div > .err__body > * {
  margin: 0;
  text-align: center;
}

#page-loading-error > div > div.err__button {
  display: flex;
  gap: 18px;
  width: 80%;
}

#page-loading-error > div > div.err__button > button {
  flex-grow: 1;
  padding: 12px;
  background: #f4f3f3;
  border-radius: 5px;
  cursor: default;
  border: 0;
}

#page-loading-error > div > div.err__button > button:nth-child(1) {
  background: #dd2c00;
  color: white;
}

#page-loading-error > div > div.err__button > button:nth-child(1):hover {
  background: #a00;
}

#page-loading-error > div > div.err__button > button:nth-child(2):hover {
  background: #e9e6e6;
}

div#page-loading-error.__hidden {
  display: none;
}
