body{
  overflow: hidden;
  height: 100vh;
  margin: 0px;
  background-color: #EEEEEE;
  font-family: "Roboto", "Noto", sans-serif;
  line-height: 1.5;
}

/*---------  Splash Screen  -------------------------------------------------*/

#splash-screen {
  padding-top: 80px;
  background-color: #FFFFFF;
  z-index: 10000;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#splash-screen .splash-logo img {
  position: absolute;
  width: 240px;
  left: calc(50% - 120px);
  top: calc(50% - 100px);
}

#splash-screen .splash-loader {
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  border: 8px solid #CCC;
  border-top-color: #009ddf;
  -webkit-animation: splash-loader-animation 1s infinite linear;
          animation: splash-loader-animation 1s infinite linear;
}
@-webkit-keyframes splash-loader-animation {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes splash-loader-animation {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}