html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  color:#F4EDEA;

  position: relative;
  height: 100%;
  width: 100%;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

.root {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;

    -webkit-transition: opacity 0.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out;
    -ms-transition: opacity 0.25s ease-in-out;
    -o-transition: opacity 0.25s ease-in-out;
     opacity: 0;
}

.screensize {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #151321;
  flex-direction: column;
  display: none;
}

.screensize>img {
  display: flex;
  margin: auto;
  height: 50vmin;
}

.screensize>div {
  display: flex;
  margin: auto;
  text-align: center;
  align-items: center;
  color: white;
  font-size: 5vmin;
}

.screensize>div:first-of-type {
  font-size: 10vmin;
}

.loader {
  background-color: #2C557C;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.loaderBottom{
  display: flex;
  
  height: 15vh;
  width: 100%;
}

.loadingText {
  margin: auto;
  font-size: 5vmin;
}

.loaderCenter{
  display: flex;
  justify-content: center;
  
  height: 70vh;
  width: 100%;
}

.loaderCenter>div{
  display: flex;
  margin: auto;
}

.loaderIcon{
  position: relative;
  height: 30vmin;
  width: 30vmin;
}

.loaderIcon>div{
  position: absolute;
  top: 50%;
  left: 50%;
}

.loaderIcon>div>div{
  margin-left: -50%;
  margin-top: -50%;
  background: #333F50;
  height: 1px;
  width: 1px;

  transition: width 2s, height 2s;
}

.loaderData{
  width: 30vmin;
  margin: auto 3vmin;
  border-top: 1vmin solid #F4EDEA;
  border-bottom: 1vmin solid #F4EDEA;
}

.loaderData>div{
  width: 100%;
  color:#06BCC1;
  font-size: 3vmin;
  font-weight: 600;
  overflow: hidden;
}

.loader>div
{
  display: flex;
  flex-direction: row;
}

.loader>div>img
{
  font-size: 1vmin;
}

.loadericon
{
    display: flex;
    text-align: center;
    align-items: center;
    color: black;
    font-size: 10vmin;
}

.needjs {
    top: 0;
    position: fixed;
    background-color: rgb(255, 0, 0);
    text-align: center;
    width: 100%;
    height: 8vmin;
    font-size: 3vmin;
}

.loading:after
{
    content: ' .';
    animation: dots 1s steps(5, end) infinite;}
  
  @keyframes dots {
    0%, 20% {
      color: rgba(0,0,0,0);
      text-shadow:
        .25em 0 0 rgba(0,0,0,0),
        .5em 0 0 rgba(0,0,0,0);}
    40% {
      color: white;
      text-shadow:
        .25em 0 0 rgba(0,0,0,0),
        .5em 0 0 rgba(0,0,0,0);}
    60% {
      text-shadow:
        .25em 0 0 white,
        .5em 0 0 rgba(0,0,0,0);}
    80%, 100% {
      text-shadow:
        .25em 0 0 white,
        .5em 0 0 white;}
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}


      /* These CSS styles all apply to the SVG elements defined below */
      #clock {
        /* styles for everything in the clock */
        stroke: black;
        /* black lines */
        stroke-linecap: round;
        /* with rounded ends */
        fill: #eef;
        /* on a light blue gray background */
      }
      #face { stroke-width: 3px;}
      /* clock face outline */
      #ticks { stroke-width: 2; }
      /* lines that mark each hour */
      #hourhand {stroke-width: 5px;}
      /* wide hour hand */
      #minutehand {stroke-width: 3px;} /* narrow minute hand */
      #secondhand {stroke-width: 1px;}
      #numbers {
        /* how to draw the numbers */
        font-family: sans-serif; font-size: 7pt; font-weight: bold;
        text-anchor: middle; stroke: none; fill: black;
      }
