html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
html,
body {
  height: 100%;
}
canvas {
  display: block;
}
body {
  margin: 0;
  background-color: #000000;
}
#unity-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#unity-canvas-container {
  margin-left: auto;
  margin-right: auto;
}

.menu-overlay {
  width: 100%;
  height: 40px;
  top: 0;
  right: 0;
  text-align: right;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  opacity: 30%;
  transition: all 1s ease;
}

.menu-overlay-full {
  opacity: 100% !important;
}

.menu-overlay:hover {
  opacity: 100%;
}

#unity-canvas {
  width: 100%;
  height: 100%;
  background: #000000;
}
#loading-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#unity-loading-bar {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100% - 200px);
}
#unity-logo {
  text-align: center;
  height: 100%;
  display: grid;
  place-items: center;
}
#unity-logo img {
  max-width: 70%;
  max-height: calc(100vh - 100px);
}
#unity-progress-bar-empty {
  width: 80%;
  height: 24px;
  margin: 10px 20px 20px 10px;
  text-align: left;
  border: 1px solid white;
  padding: 2px;
}
#unity-progress-bar-full {
  width: 0%;
  height: 100%;
  background: white;
}
.light #unity-progress-bar-empty {
  border-color: black;
}
.light #unity-progress-bar-full {
  background: black;
}

#unity-fullscreen-button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  background: url("fullscreen-button.png") no-repeat center;
  background-size: contain;
}

.app-icon {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 39;
  height: 40px;
  width: auto;
  max-width: 70px;
  object-fit: scale-down;
}

.load-info {
  text-align: center;
  color: white;
}

.info-title {
  font-size: 2rem;
}

.info-extra {
  font-size: 1rem;
  opacity: 0.5;
}

#passcode-container {
  position: absolute;
  width: 100%;
}

.help-text {
  margin-left: 50px;
}

.help-subtitle {
  margin-top: 20px;
  margin-bottom: 0px;
  margin-left: 50px;
  font-size: 1.5em;
}

.help-option {
  position: absolute;
  left: 20px;
  /* top: -10px; */
  /* margin-top: -5px; */
  /* padding: 5px; */
  font-weight: bold;
  text-align: center;
  width: 35px;
  height: 35px;
  border-radius: 20px;
  background: #c8c8c8;
  color: white;
}

.button.is-light {
  background-color: #ededed !important;
}

.button.is-light:hover {
  background-color: #dadada !important;
}

.is-white.is-outlined {
  background: #333 !important;
  color: #eee;
  border: 0;
  transition: all 0.5s ease;
}
.is-white.is-outlined:hover {
  background: rgb(104, 104, 104) !important;
  color: white !important;
  border: 0;
}

.is-outlined:not(.is-white) {
  border: 0;
  transition: all 0.5s ease;
}
.is-outlined:not(.is-white):hover {
  border: 0;
}
