﻿body {
	font-family: Monospace;
	background-color: #E0E6F8;
	color: #fff;
	margin: 0px;
	overflow: hidden;
}

#oss-canvas-wrapper { 
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	
}

#oss-canvas { 
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
}

/*
* === debug  ===
*/
#oss-canvas .debug-print {
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: 1000;
	pointer-events: none;
	
}


/*
* === preload logo and loader  ===
*/
#oss-canvas .logo {
	width: 100px;
	height: 50px;
	
	background-image: Url(../textures/ui/HueLogo@0,75x.png);
	background-repeat: no-repeat;
    background-size: 100px 50px;
	position: absolute;
	right: 15px;
	top: 0; 
	display: none;
	
}

#oss-canvas .preload{
	width: inherit;
    height: inherit;
	background: #333;
	position: absolute;
	display: block;
	z-index: 1000;

}

#oss-canvas .preload .logo {
	width: 200px;
	height: 100px;
	
	font-size: 50px;
	text-shadow: -1px 2px 2px #000;
	text-align: center;
	color: azure;
	background-image: Url(../textures/ui/HueLogo@0,75x.png);
	background-repeat: no-repeat;
    background-size: 200px 100px;
	position: absolute;
	left: 50%;
	top: 50%; 
	margin-left: -100px;
	margin-top: -100px;
	display:block;
}

.display_none{
	display: none !important;
}

/*
* === click to play  ===
*/

#oss-canvas .clickToPlay{
	width: inherit;
    height: inherit;
	background: transparent;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: 300;

}

#oss-canvas .clickToPlay span {
    margin: 0;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
	transform: translate(-50%, -50%) ;
	color: #ffffff; 
	font-family: 'Raleway',sans-serif; 
	font-size: 24px; 
	font-weight: 800; line-height: 36px;
	min-width: 128px;
	min-height: 128px;
}

#oss-canvas .clickToPlay span i {
    display: block;
	animation: circleScale 3s infinite;
    background-image: url('../textures/ui/tap_hand.png');
    background-repeat: no-repeat;
    position: relative;
	min-width: 128px;
	min-height: 128px;
}

/*
* === swipe tut  ===
*/

#oss-canvas .swipe-tut{
	width: inherit;
    height: inherit;
	background: transparent;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: 300;
	pointer-events: none;

}

#oss-canvas .swipe-tut span {
    margin: 0;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
	transform: translate(-50%, -50%) ;
	color: #ffffff; 
	font-family: 'Raleway',sans-serif; 
	font-size: 24px; 
	font-weight: 800; line-height: 36px;
	min-width: 128px;
	min-height: 128px;
}

#oss-canvas .swipe-tut span i {
    display: block;
	animation: circleScale 3s infinite;
    background-image: url('../textures/ui/swipe_hand.png');
    background-repeat: no-repeat;
    position: relative;
	min-width: 128px;
	min-height: 128px;
}



@keyframes circleScale {
	0% {transform: scale(1.0)  }
	80% { transform: scale(1.0) }
  	90% { transform: scale(0.9) }
  	100% { transform: scale(1.0) }
}

@-moz-keyframes circleScale {
	0% {transform: scale(1.0)  }
	80% { transform: scale(1.0) }
  	90% { transform: scale(0.9) }
  	100% { transform: scale(1.0) }
}
@-webkit-keyframes circleScale {
	0% {transform: scale(1.0)  }
	80% { transform: scale(1.0) }
  	90% { transform: scale(0.9) }
  	100% { transform: scale(1.0) }
}
@-ms-keyframes circleScale {
	0% {transform: scale(1.0)  }
	80% { transform: scale(1.0) }
  	90% { transform: scale(0.9) }
  	100% { transform: scale(1.0) }
}
@-keyframes circleScale {
	0% {transform: scale(1.0)  }
	80% { transform: scale(1.0) }
  	90% { transform: scale(0.9) }
  	100% { transform: scale(1.0) }
}


/*
* === keyframes fade in and out  ===
*/

@keyframes clockwisespin {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
}

@keyframes anticlockwisespin {
	from {transform: rotate(0deg);}
	to {transform: rotate(-360deg);}
}

@-moz-keyframes fadeout {
	from {opacity: 1; visibility: visible;}
	to {opacity: 0; visibility: hidden;}
}
@-webkit-keyframes fadeout {
	from {opacity: 1; visibility: visible;}
	to {opacity: 0; visibility: hidden;}
}
@-ms-keyframes fadeout {
	from {opacity: 1; visibility: visible;}
	to {opacity: 0; visibility: hidden;}
}
@-keyframes fadeout {
	from {opacity: 1; visibility: visible;}
	to {opacity: 0; visibility: hidden;}
}
@keyframes fadeout {
	from {opacity: 1; visibility: visible;}
	to {opacity: 0; visibility: hidden;}
}



@-moz-keyframes fadein {
	from {opacity: 0; visibility: hidden;}
	to {opacity: 1; visibility: visible;}
}
@-webkit-keyframes fadein {
	from {opacity: 0; visibility: hidden;}
	to {opacity: 1; visibility: visible;}
}
@-ms-keyframes fadein {
	from {opacity: 0; visibility: hidden;}
	to {opacity: 1; visibility: visible;}
}

@-keyframes fadein {
	from {opacity: 0; visibility: hidden;}
	to {opacity: 1; visibility: visible;}
}
@keyframes fadein {
	from {opacity: 0; visibility: hidden;}
	to {opacity: 1; visibility: visible;}
}



/*
* === control bar  ===
*/

#oss-canvas .speaker {
	display: none;
}

#oss-canvas .volume {
  height: 30px;
  width: 30px;
  bottom:0px;
  left:15px;
  position: absolute;
  overflow: hidden;
  display: inline-block;
  z-index: 200;
  color: #fff;
}
#oss-canvas .volume:hover {
  transform: scale(1.2) ;
}

#oss-canvas .volume i.deactive {
  display: none;
}

#oss-canvas .fullScreen {
  height: 30px;
  width: 30px;
  bottom:0px;
  right:0px;
  position: absolute;
  overflow: hidden;
  display: inline-block;
  z-index: 200;
  color: #fff;
}
#oss-canvas .fullScreen:hover {
  transform: scale(1.2) ;
}

#oss-canvas .fullScreen i.deactive {
  display: none;
}

/*
* === progress bar  ===
*/
#oss-canvas .progress-bar {
    background: #272727;
    border-radius: 13px;
    height: 6px;
    width: 200px;
	padding: 3px;
	z-index: 300;

	left: 50%;
	top: 50%; 
	margin-left: -100px;
	margin-top: 0px;
	position: absolute;
	
}

#oss-canvas .progress-bar span {
    content: '';
    display: block;
    background: #eee;
    width: 50%;
    height: 100%;
    border-radius: 9px;
}

  