body {
  padding: 0;
  margin: 0;
  font-family: 'Libre Franklin', sans-serif;
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* #unity-container {  } */
/* #unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) } */
#unity-container.unity-mobile {
  width: 100%;
  height: 100%;  
  align-content: center;
	justify-content: center;
}
#unity-canvas {
  background: #30363A;
  width: 100%;
  height: 100%;
  min-width: 1024px;
  min-height: 768px;
}
.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%;
}
#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
#unity-logo {
  width: 253px;
  height: 130px;
  background: url("progressLogo.Dark.png") no-repeat center;
  background-size: contain;
  margin: auto auto auto auto;
}
#unity-progress-bar-empty {
  width: 64px;
  height: 64px;
  overflow: hidden;
  /* width: 230px;
  height: 18px;
  margin-top: 10px;*/
  background: url("TRE_Loading.gif") no-repeat center;
  margin: 20px auto 50px auto;
}
#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  display:none;
    /* background: url(progressFull.Dark.png) no-repeat center; */
    background-color: rgb(255, 255, 255);
  /* background: url("progressFull.Dark.png") no-repeat center; */
}
#unity-footer {
  position: relative;
}
.unity-mobile #unity-footer {
  display: none;
}
#unity-webgl-logo {
  float: left;
  width: 204px;
  height: 38px;
  background: url("webgl-logo.png") no-repeat center;
}
#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  font-family: arial;
  font-size: 18px;
}
#unity-fullscreen-button {
  float: right;
  width: 38px;
  height: 38px;
  background: url("fullscreen-button.png") no-repeat center;
}
#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}

#unity-container {
  position: absolute;
  display: block;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: rgb(41, 58, 54) !important;
  /* background: linear-gradient(0deg, rgba(4,0,16,1) 0%, rgba(32,0,78,1) 26%, rgba(18,18,117,1) 48%, rgba(0,6,73,1) 100%) !important; */
}

#video-container {
	position:absolute;
	align-items: center;
	justify-content: center;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	transition: all 0.2s;
	opacity: 0;
}

#image-viewer {
	background-repeat: no-repeat;
	background-position: center center;
	background-size:contain;
}

.player {
	width: calc(100vw - 240px);
	height: calc(100vh - 140px);
	display: none;
	transition: all 0.2s;
	opacity: 0;
}

.player.visible {
	display: block;
	transition-delay: 0.2s;
	opacity:1;
}

#video-container.visible {
	display: flex;
	opacity: 1;
}


.button {
	position: absolute;
	z-index: 2;
	cursor: pointer;
	height: 40px;
	width: 40px;
	display: flex;
	align-content: center;
	justify-content: center;
	margin: 10px;
}

.icon {
    font-size: 32px;
    color: white;
    margin: auto;
}

.button:hover {
	background-color:rgb(32, 32, 32);
	border-radius:50%;
}

#closeButton {
    top: 0px;
    right: 0px;
}

#prevButton {
	left: 0px;
}

#nextButton {
    right: 0px;
}
.downloadingSubtitle {
	text-align:center;
	color: white;
	margin-top: 20px;
	width: 750px;

