#app-loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#timeout-content {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  #timeout-content {
    justify-content: space-between;
    height: 80vh;
  }

  .retry-box,
  .retry-box .timeout-button {
    width: 100%;
  }
}

#app-loading-screen img {
  height: 50px;
  margin-bottom: 45px;
}

.timeout-button {
  border-radius: 31px !important;
  font-size: 18px;
  height: 56px;
  width: 200px;

  background-color: #3f4955;
  color: #fff;
}

.timeout-text {
  font-size: 18px;
  color: #3f4955;
  margin-bottom: 20px;
  text-align: center;
}

.dot-loading {
  display: flex;
  gap: 12px;
}

.dot-loading div {
  width: 24px;
  height: 24px;
  background-color: #32ad10;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.dot-loading div:nth-child(1) {
  animation-delay: -0.24s;
}
.dot-loading div:nth-child(2) {
  animation-delay: -0.12s;
}
.dot-loading div:nth-child(3) {
  animation-delay: 0s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
