* {
  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 img {
  width: 140px;
}

#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;
}