.initial-loader-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100dvh;
  width: 100dvw;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f7f8fa;
  z-index: -1;
}
body.AppIsReady .initial-loader-box {
  display: none;
}
* {
  box-sizing: border-box;
}
.initial-loader-box .spinner {
  width: 33px;
  height: 33px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #597ef7;
  animation: spin 1s ease-in-out infinite;
}
.initial-loader-box .splash-logo {
  width: 229px;
  height: 140px;
  margin-bottom: 300px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  body.platform-ios .initial-loader-box .splash-logo {
    margin-top: -13px;
  }
  .initial-loader-box {
    background-color: #fff;
  }
}
