html,
body {
  margin: 0px;
  padding: 0px;
}
#c {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}
.movetobuttonstyle {
  position: relative;
  padding: 5px 10px 5px 10px;
  background-color: #3c3c3c;
  color: #b5db1f;
  margin-bottom: 5px;
  transition: background-color 0.2s ease;
  transition: color 0.2s ease;
  border-right: solid 8px #3c3c3c;
  transition: border-right 0.2s ease;
}
.bigspacing{
  margin-top: 20px;
}
.fullscreenbutton {
  height:2.5rem;
  width: 2.5rem;
  background-color: #3c3c3c;
  cursor: pointer;
}  
.fullscreeninner{
  height:2.5rem;
  width: 2.5rem;
  /* (Quelle: https://www.flaticon.com/free-icon/expand_2089746?term=fullscreen&page=1&position=10 [Premiummitgliedschaft, keine Namensnennung nötig]) */
  background-image: url("assets/UI/openfullscreen.svg");
  background-size: 70%;
  background-position: center center;
  background-repeat: no-repeat;
}
.isfullscreen>.fullscreeninner{
  background-color: #b5db1f;
  /* (Quelle: https://www.flaticon.com/free-icon/expand_2089746?term=fullscreen&page=1&position=10 [Premiummitgliedschaft, keine Namensnennung nötig]) */
  background-image: url("assets/UI/closefullscreen.svg");
} 
.fullscreeninner:hover{
  background-size: 80%;
}
.isfullscreen>.fullscreeninner:hover{
  background-size: 60%;
}
.movetobuttonstyle:hover {
  cursor: pointer;
 border-right: solid 8px #b5db1f;
  transition: border-right 0.2s ease;
  transition: color 0.2s ease;
}
.buttonwrapper {
  left: 10px;
  top: 10vh;
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.active {
  border-right: solid 8px #b5db1f;
  background-color: #b5db1f;
  color: #3c3c3c;
  transition: background-color 1s ease;
  transition: color 1s ease;
}
.locked{
  cursor: not-allowed!important;
  color: #666!important;
  border-right: solid 8px #3c4448!important;
  background-color: #3c3c3c!important;
  transition: color 1s ease;

}

/* canvas */
#container canvas {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
#container {
  position: relative;
  width: 100vw;
  height: 100vh;
}
/* Premenu */
#premenu {
  z-index: 10001;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #3c3c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.5s linear;
}
#premenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='112px' height='16px' viewBox='0 0 112 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' fill='%23B5DB1F' fill-rule='evenodd'%3E%3Cpolygon points='0 0 112 0 96 16 0 16'%3E%3C/polygon%3E%3C/g%3E%3C/svg%3E");
}
#loadingbar {
  position: relative;
  width: 90%;
  max-width: 500px;
  height: 50px;
  overflow: hidden;
}
.corner {
  width: 26px;
  height: 26px;
  position: absolute;
  transform: rotate(45deg);
  background-color: #3c3c3c;
}
.cornertopleft {
  left: -16px;
  top: -16px;
}
.cornerbotright {
  right: -16px;
  bottom: -16px;
}
#progress {
  position: absolute;
  height: 100%;
  width: 0%;
  background-color: #b5db1f;
  transition: width 0.5s linear;
}
#border {
  position: absolute;
  width: 100%;
  height: 100%;
}
#progresstext {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #b5db1f;
  font-weight: bold;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
}