* {
	font-family: 'Lato',Helvetica,Arial,sans-serif;
	margin:0px;
	padding:0px;
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}
::-webkit-scrollbar-track {
	background: rgba(128,128,128,0);
}
::-webkit-scrollbar-thumb {
	background: rgba(30,30,30,0.5);
}
.player {
    position: fixed;
    top : 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background-image: radial-gradient(82% 167%, #C3C3C3 34%, #909090 100%);
}
/* mobile viewport bug fix */
@supports (-webkit-touch-callout: none) {
	@media screen and (-webkit-min-device-pixel-ratio:0) {
		body {
			height: -webkit-fill-available;
		}
		.player{
			height: -webkit-fill-available;
			top: auto;
			bottom: 0;
		}
	}
}

@keyframes fadeout {
    from {opacity: 1.0;}
    to {opacity: 0.0;}
}

@keyframes fadein {
    from {opacity: 0.0;}
    to {opacity: 1.0;}
}

@-webkit-keyframes active-spinner {
	to {transform: rotate(360deg);}
}

.active-spinner:before {
	content: '';
	box-sizing: border-box;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 46px;
	height: 46px;
	margin-top: -23px;
	margin-left: -23px;
	border-radius: 50%;
	border: 2px solid #d3d3d3;
	border-top-color: #9E0000;
	border-bottom-color: #9E0000;
	animation: active-spinner .8s ease infinite;
	z-index: 2001;
}

.mainpage-spinner-background {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2001;
}

/* Title stuff */
#player-title {
	position: absolute;
	margin: 8px;
	width: calc( 100% - 16px );
	left: 0px;
	top: 0px;
	height: 110px;
	text-align: center;
	z-index: 1;
	pointer-events: none;
}

#player-title-top {
	z-index: 2002;
	position: relative;
	top: 0px;
}

#player-title-info {
	font-size: 40px;
	color: #000000;
	text-align: center;
	line-height: 40px;
	padding: 20px 20px 0px 20px;
	font-family: 'Lato',Helvetica,Arial,sans-serif;
	text-shadow: 0px 0px 10px #FFFFFF;
	font-weight: 600;
	margin: 0
}

#player-title-bottom {
	position: relative;
	top: 0px
}

#player-title-location {
	font-size: 22px;
	color: #000000;
	text-align: center;
	line-height: 20px;
	padding: 20px 20px 0px 20px;
	font-family: 'Lato',Helvetica,Arial,sans-serif;
	text-shadow: 0px 0px 10px #FFFFFF;
	font-weight: 600;
	margin: 0
}

#player-title-right {
	position: absolute;
	top: 0px;
	right: 0px;
	margin: 5px
}

#player-title-logo-img {
	max-height: 120px;
	filter: drop-shadow(0px 0px 20px #FFFFFF);
}
#player-showcase-play {
	position: absolute;
    top: calc( 50% - 50px );
	left: calc( 50% - 50px );
	display: none;
}
#player-showcase-play.active {
	display: block;
}

#errors-display {
	margin: 32px;
	text-align: center;
}

#player-play {
	position: relative;
	width: 100px;
	height: 100px;
	/* TODO : ADD PLAY BUTTON CIRCLE AND FOR RETINA TOO */
	background-image: url(Showcase_Play.svg);
	background-size: 100px;
	pointer-events: auto;
    cursor: pointer;
}
.show-hand-mouse-interactive-vr {
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 25px;
	position: absolute;
	height: 250px;
	width: 300px;
	top: calc(50% - 125px);
	left: calc(50% - 150px);
	text-align: center;
	z-index: 3;
	opacity: 0;
}

@media only screen and (min-height:0px) and (max-height:500px){
	.show-hand-mouse-interactive-vr {
		background-color: rgba(255, 255, 255, 1.0);
	}
}

.interactive-vr-title {
	display: block;
	padding: 1em 3em;
	font-weight: 600;
	font-size: 18px;
}
.interactive-vr-icon-section {
	display: block;
}
.interactive-click-tap-drag {
	display: inline-block;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
	border-radius: 15px;
	border: 1px solid #808080;
	height: 70px;
	width: 70px;
	background-size: 38px;
	margin: 0 20px;
}
.interactive-click-tap-drag-subtitle {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	width: 70px;
	margin: 3px 20px;
	vertical-align: top;
}
.interactive-vr-bottom {
	margin-top: 15px;
}
#close-interactive-vr {
	width: 80px;
	font-size: 14px;
	font-weight: 600;
	padding: 0.5em;
	border-radius: 10px;
	background-color: #FFB500;
	border: 1px solid #808080;
	cursor: pointer;
}

.show-hand-mouse-interactive-vr-overlay {
	width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
    position: fixed;
    z-index: 200;
	visibility: hidden;
}
.show-hand-mouse-interactive-vr-overlay.active {
	visibility: visible;
}
/* mobile viewport bug fix */
@supports (-webkit-touch-callout: none) {
	@media screen and (-webkit-min-device-pixel-ratio:0) {
		.show-hand-mouse-interactive-vr-overlay{
			height: -webkit-fill-available;
			top: auto;
			bottom: 0;
		}
	}
}
/*
.########..########.########.####.##....##....###...
.##.....##.##..........##.....##..###...##...##.##..
.##.....##.##..........##.....##..####..##..##...##.
.########..######......##.....##..##.##.##.##.....##
.##...##...##..........##.....##..##..####.#########
.##....##..##..........##.....##..##...###.##.....##
.##.....##.########....##....####.##....##.##.....##
*/
@media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-devicepixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx) {
	.interactive-click-tap-drag {
		background-size: 35px;
	}
}
