body
{
	padding: 0;
	margin: 0;
	font-family: 'Titillium Web', sans-serif;
	color: #d9d9d9;
	background-color: #e5edf1;
	overflow: hidden;
}

#unity-container { 
	position: absolute;
}
#unity-container.unity-desktop 
{
	width: 100vw;
	height: 100vh;
}
#unity-container.unity-mobile 
{
 	width: 100%; 
	height: 100% 
}
#unity-canvas 
{
	background: #091B29 
}
.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: 154px;
	height: 130px;
	background: url('loading_icon.png') no-repeat center;
}
#unity-progress-bar-empty 
{ 
	width: 154px;
	height: 18px;
	margin-top: 10px;
	/*margin-left: 6.5px;*/
	background: url('progress-bar-empty-dark.png') no-repeat center;
}
#unity-progress-bar-full 
{ 
	width: 0%;
	height: 18px;
	margin-top: 10px;
	background: url('progress-bar-full-dark.png') no-repeat center;
}
#unity-warning 
{
	position: absolute;
	left: 50%;
	top: 5%;
	transform: translate(-50%);
	background: white;
	padding: 10px;
	display: none;
}





.container
{
	width: 100vw;
	height: 100vh;
	text-align: center;
	margin: 0 auto;
}

.box
{
	font-size: 1.25rem; /* 20 */
	background-color: #093a48ba;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	z-index: 999;
}
.box.has-advanced-upload
{
	outline: 2px solid #138193;
	outline-offset: -10px;

	-webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
	transition: outline-offset .15s ease-in-out, background-color .15s linear;
}
.box.is-dragover
{
	outline-offset: -20px;
	/*outline-color: #c8dadf;*/
	background-color: #00c6ffba;
}
.box__dragndrop,
.box__icon
{
	display: none;
}
.box.has-advanced-upload .box__dragndrop
{
	display: inline;
}
.box.has-advanced-upload .box__icon
{
	width: 100%;
	height: 80px;
	fill: #138193;
	display: block;
	margin-bottom: 40px;
}

.box .box__input {
	flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
}

.box.is-uploading .box__input,
.box.is-success .box__input,
.box.is-error .box__input
{
	visibility: hidden;
}

.box__uploading,
.box__success,
.box__error
{
	display: none;
}
.box.is-uploading .box__uploading,
.box.is-success .box__success,
.box.is-error .box__error
{
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;

	-webkit-transform: translateY( -50% );
	transform: translateY( -50% );
}
.box__uploading
{
	font-style: italic;
}
.box__success
{
	-webkit-animation: appear-from-inside .25s ease-in-out;
	animation: appear-from-inside .25s ease-in-out;
}
	@-webkit-keyframes appear-from-inside
	{
		from	{ -webkit-transform: translateY( -50% ) scale( 0 ); }
		75%		{ -webkit-transform: translateY( -50% ) scale( 1.1 ); }
		to		{ -webkit-transform: translateY( -50% ) scale( 1 ); }
	}
	@keyframes appear-from-inside
	{
		from	{ transform: translateY( -50% ) scale( 0 ); }
		75%		{ transform: translateY( -50% ) scale( 1.1 ); }
		to		{ transform: translateY( -50% ) scale( 1 ); }
	}

.box__restart
{
	font-weight: 700;
}
.box__restart:focus,
.box__restart:hover
{
	color: #39bfd3;
}

.js .box__file
{
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.js .box__file + label
{
	max-width: 80%;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
}
.js .box__file + label:hover strong,
.box__file:focus + label strong,
.box__file.has-focus + label strong
{
	color: #138193;
}
.js .box__file:focus + label,
.js .box__file.has-focus + label
{
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}
	.js .box__file + label *
	{
		/* pointer-events: none; */ /* in case of FastClick lib use */
	}

.box__button
{
    font-weight: 200;
    color: #d9d9d9;
    background-color: #ffffff00;
    display: block;
    padding: 8px 16px;
    margin: 40px auto 0;
    border: 1.5px solid #138193;
    border-radius: 5px;
}
.box__button:hover,
.box__button:focus
{
	background-color: #1381932e;
}


