:root {
  --splash-screen-bg-light: #ffffff;
  --splash-screen-bg-dark: #1c1e22;
}

#sk-app-orientation-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--splash-screen-bg-light);
  z-index: 999;
}

.sk-app-orientation-img-wrap {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.sk-app-orientation-img-wrap img {
    width: 260px;
}

@media (prefers-color-scheme: dark) {
  #sk-app-orientation-overlay {
      background-color: var(--splash-screen-bg-dark);
  }
}