body {
  background-color: black;
  font-family: Arial;
}

* {
  overflow: hidden;
}

#canvas {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

audio {
  position: fixed;
  left: 10px;
  bottom: -80px;
  width: calc(100% - 20px);
  opacity: 0.2;
  transition: all 0.5s;
}

#content:hover audio {
  opacity: 0.8;
  bottom: 10px;
}

div#top-toolbar {
  z-index: 100;
  text-align: center;
  font-size: 1em;
  position: fixed;
  transform: translate(0px, -80px);
  user-select: none;
  opacity: 0.8;
  transition: all 0.5s;
  height: 60px;
  width: auto;
}

div#top-toolbar * {
  display: inline-block;
}

#content:hover div#top-toolbar {
  transform: translate(0px, 0px);
}

div#top-toolbar div {
  background-color: white;
  height: 16px;
  padding: 6px 10px;
  font-size: 1em;
  transition: all 0.5s;
  border-radius: 2px;
  box-shadow: 0px 0px 1px 0px black;
  cursor: pointer;
}

div#top-toolbar *:hover {
  background-color: #ddd;
  box-shadow: 0px 0px 2px 0px black;
}

div#top-toolbar *:active {
  background-color: #aaa;
  box-shadow: 0px 0px 2px 1px black;
}

select#mode {
  background-color: white;
  width: 120px;
  height: 1.79em;
  padding: 6px;
  font-size: 1em;
  transition: all 0.5s;
  border: none;
  border-radius: 2px;
  box-shadow: 0px 0px 1px 0px black;
  outline: none;
  transform: translate(0px, -0.5em);
}

html, body {
  height: 100%;
}

.toggle {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
}

.toggle:before {
  content: "";
  position: relative;
  top: 3px;
  left: 3px;
  width: 34px;
  height: 14px;
  display: block;
  background: #9A9999;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.toggle span {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: block;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(154, 153, 153, 0.5);
  transition: all 0.2s ease;
}
.toggle span:before {
  content: "";
  position: absolute;
  display: block;
  margin: -18px;
  width: 56px;
  height: 56px;
  background: rgba(79, 46, 220, 0.5);
  border-radius: 50%;
  transform: scale(0);
  opacity: 1;
  pointer-events: none;
}

#cbx:checked + .toggle:before {
  background: #947ADA;
}
#cbx:checked + .toggle span {
  background: #4F2EDC;
  transform: translateX(20px);
  transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  box-shadow: 0 3px 8px rgba(79, 46, 220, 0.2);
}
#cbx:checked + .toggle span:before {
  transform: scale(1);
  opacity: 0;
  transition: all 0.4s ease;
}

.center {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 20px);
}

.mic-cbx {
  transform: translate(0px, 0em);
  user-select: none;
  height: 12px;
}

.mic-cbx label {
  transform: translate(0px, -0.15em);
}

video {
  right: 1px;
  top: 1px;
  position: fixed;
  border: 1px solid white;
}