body {
  margin: 0;
  padding: 0;
  background: url('/public/media/bg.png') no-repeat center center fixed;
  background-color: #f5f6f8;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body.dark-mode {
  background-color: black;
  color: white;
}
#root {
  margin: 0;
  padding: 0;
}
.onpremBody .loadingRootWrapper {
  height: calc(100% - 2px);
  border: 1px solid #d8dde4;
  display: block;
}
.dark-mode .onpremBody .loadingRootWrapper {
  border: 1px solid #27221b;
}
.loadingRoot {
  width: auto;
  margin: calc(30%) auto auto auto;
  font-size: 18px;
  font-family: Geneva, Arial, Helvetica, sans-serif;
}
.loadingLogo {
  width: 42px;
  height: 42px;
  margin: 20px auto 0 auto;
  display: block;
}
.loadingTitle {
  white-space: nowrap;
  margin: 10px auto 0 auto;
  display: block;
}
.loadingProgress {
  margin: 10px auto 0 auto;
  padding-left: 10px;
  display: block;
  width: 90px;
  white-space: nowrap;
}
.loadingProgress:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4, end) 900ms infinite;
  animation: ellipsis steps(4, end) 900ms infinite;
  content: '\2026'; /* ascii code for the ellipsis character */
  width: 0px;
}
@keyframes ellipsis {
  to {
    width: 1.25em;
  }
}
@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;
  }
}
@keyframes blinker {
  from {
    opacity: 0.9;
  }
  to {
    opacity: 0.4;
  }
}

@-webkit-keyframes blinker {
  from {
    opacity: 0.9;
  }
  to {
    opacity: 0.4;
  }
}
