body {
  margin: 0;
  padding: 0;
}
.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Helvetica, 'sans-serif';
  background-color: #f2f3f8;
  color: #5E6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.splash-screen span {
  color: #5E6278;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.splash-screen .logo {
  background-image: url("media/images/logos/logo_dark.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 30%;
  height: 250px;
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
}

[data-theme="dark"] .splash-screen {
  background-color: #222222;
  color: #f1f1f1;
}

[data-theme="dark"] .splash-screen span {
  color: #92929F;
}

[data-theme="dark"] .splash-screen .logo {
  background-image: url("media/images/logos/logo_white.png");
  background-repeat: no-repeat;
  width: 30%;
  height: 250px;
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
}



.loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  margin:15px auto;
  position: relative;
  background: #FFF;
  box-shadow: -24px 0 #FFF, 24px 0 #FFF;
  box-sizing: border-box;
  animation: shadowPulse 2s linear infinite;
}

@keyframes shadowPulse {
  33% {
    background: #FFF;
    box-shadow: -24px 0 #000000, 24px 0 #FFF;
  }
  66% {
    background: #000000;
    box-shadow: -24px 0 #FFF, 24px 0 #FFF;
  }
  100% {
    background: #FFF;
    box-shadow: -24px 0 #FFF, 24px 0 #000000;
  }
}

@keyframes not-loading {
  to {
    visibility: visible;
  }
}

.not-loading{
  margin-top:100px;
  visibility: hidden;
  animation: 0s linear 5s forwards not-loading ;
}

.link {
  text-decoration: underline;
  color: #0385ff !important;
  cursor: pointer;
}