* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#splash {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#splash.light {
  background-color: #ffffff;
}

#splash.dark {
  background-color: #262627;
}

#splash .loader {
  width: 36px;
  height: 36px;
  border: 3.5px solid rgba(243, 115, 33, 0.2);
  border-top-color: #F37321;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#splash img {
  width: 140px;
  margin-top: 24px;
}

#splash .app-name {
  margin-top: 12px;
  padding: 12px 24px;
  background-color: #F37321;
  /* #01b5de;*/
  color: #ffffff;
  font-size: 40px;
  font-weight: 500;
  font-family: 'Visuelt', Arial, sans-serif;
}

#splash.hidden {
  display: none;
}

.flutter-loader,
#flutter-loading-progress {
  display: none !important;
}