body {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
}
/* Workobot ------------------------------------------------------------------------------------------*/
#WorkobotContainer {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Game Container ------------------------------------------------------------------------------------------*/
#gameContainer {
  width: 100%;
  height: 100vh;
  margin: 0;
  border: 0;
  display: none;
  overflow: hidden;
}

#fullScreenButton {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 30px;
  width: 30px;
  background-color: transparent;
  background-image: url("https://archibot-webgl.s3.amazonaws.com/00_ArchiBot_Base/images/fullScreen_on.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 18px 18px;
  cursor: pointer;
  border: 0 none;
  margin-right: 10px;
  outline: none;
  opacity: 0;
  /* display: none; */
}

#fullScreenButton:hover {
  background-size: 20px 20px;
  border: 0 none;
}

/* Load on Demand ------------------------------------------------------------------------------------------*/
#loadOnDemand {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: auto;
  background-image: url("../TemplateData/images/splash.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /*border: 2px rgb(4, 245, 56) solid;*/
}

.loadOnDemand-Splash {
  height: 100%;
  /*width: auto;*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  /*border: 2px rgb(4, 245, 56) solid;*/
}

.loadOnDemand-Btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  /*background-color: #555;*/
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 0); /*Set alplha to 0*/
  /*border: 2px rgb(4, 245, 56) solid;*/
}

.loadOnDemand-Btn img {
  width: 100px;
  height: auto;
  cursor: pointer;
}

.loadOnDemand-Btn img:hover {
  width: 105px;
  height: auto;
}

.loadOnDemand-Logo {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 80%;
  max-width: 256px;
  height: auto;
}

#loadOnDemand-LogoClient {
  position: absolute;
  top: 75%;
  left: 35%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 80%;
  max-width: 184px;
  height: auto;
  cursor: pointer;
}
#loadOnDemand-LogoClient:hover {
  width: 81%;
  max-width: 190px;
}

#loadOnDemand-LogoDev {
  position: absolute;
  top: 75%;
  left: 65%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 80%;
  max-width: 184px;
  height: auto;
  cursor: pointer;
}

#loadOnDemand-LogoDev:hover {
  width: 81%;
  max-width: 190px;
}

.avisoLegal {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  cursor: pointer;
  color: white;
  text-align: center;
  font-size: 12px;
  /*border: 2px green solid;*/
}

/* Loader --------------------------------------------------------------------------------------------------*/
#loader {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: auto;
  background-image: url("../TemplateData/images/splash.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /*border: 2px rgb(4, 245, 56) solid;*/
}

.logo {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 80%;
  max-width: 256px;
  height: auto;
}

.progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 80%;
  height: 10px;
  border: 1px solid white;
  padding: 2px;
}
.progress .full {
  flex: 1;
  margin: auto;
  background: white;
  height: 10px;
  max-width: 100%;
  align-self: center;
  transform-origin: top left;
}

.spinnerContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  padding: 10px;
}
.spinner {
  max-height: 100px;
  max-width: 100px;
  font-size: 100px;
  border-top: 10px solid rgba(255, 255, 255, 0.2);
  border-right: 10px solid rgba(255, 255, 255, 0.2);
  border-bottom: 10px solid rgba(255, 255, 255, 0.2);
  border-left: 10px solid #ffffff;
  transform: translateZ(0);
  animation: spinner-spin 1.1s infinite linear;
}

.spinner,
.spinner:after {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

@keyframes spinner-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#progressNum {
  display: inline-block;
  color: rgb(29, 29, 29);
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  /*border: 2px green solid;*/

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* Media Queries --------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 900px) and (orientation: portrait) {
  #loadOnDemand-LogoClient {
    top: 75%;
    left: 50%;
    max-width: 128px;
    max-height: auto;
  }
  #loadOnDemand-LogoClient:hover {
    width: 81%;
    max-width: 132px;
  }
  #loadOnDemand-LogoDev {
    top: 87%;
    left: 50%;
    max-width: 128px;
    max-height: auto;
  }
  #loadOnDemand-LogoDev:hover {
    width: 81%;
    max-width: 132px;
  }
  .loadOnDemand-Logo,
  .logo {
    max-width: 128px;
    width: 80%;
    top: 20%;
  }
  .avisoLegal {
    text-align: center;
    font-size: 8px;
    /*border: 2px green solid;*/
  }
}

@media only screen and (max-width: 900px) and (orientation: landscape) {
  /* #loadOnDemand-LogoClient{
        top: 75%;
        left: 50%;
        max-width: 128px;
        max-height: auto;
    }
    #loadOnDemand-LogoClient:hover{
        width: 81%;
        max-width: 132px;
    }
    #loadOnDemand-LogoDev{
        top: 87%;
        left: 50%;
        max-width: 128px;
        max-height: auto;
    }
    #loadOnDemand-LogoDev:hover{
        width: 81%;
        max-width: 132px;
    }
    .loadOnDemand-Logo, .logo {
        max-width: 128px;
        width: 80%;
        top: 20%;
    } */
}
