/* Benutzer Interaktionen rechte Seite */

.user-panel{
	position: fixed;
	top: 50%;
   height: 640px;
   margin-top: -320px;
	right: -200px; // wird auf 0px von Funtion bewegt
	width: 200px;
	background-color: rgba(255,255,255,0.5);
	background-origin: content-box;
	/*
	border-top: 1px solid #000000 !important;
	border-left: 1px solid #000000 !important;
	border-bottom: 1px solid #000000 !important;
	*/
	}
	
.user-panel-small{
	position: fixed;
	top: 50%;
   height: 620px;
   margin-top: -310px;
	right: 0px;
	width: 20px;
	background-color: none;
}	
	
.dev-panel{
	position: fixed;
	bottom: 0px;
   height: 20px;
	width: 100%;
	left: 0px;
	background-color: rgba(255,255,255,0.8);
	border-top: 1px solid #000000 !important;
	font-weight:normal; font-size:0.8em; fornt-family: Courier;
	opacity: 0.75;
	}	
	
/* Music-Player DIV */

.music-player {
	position: absolute;
	top: 0px;
	left: 10px;
	font-family: 'Paternoster'; 
	font-size: 1.0em;
}

/* Track-Selector */

.music-player div {
cursor: pointer;
width: 180px;
height: 30px;
text-align: center;
border: 1px solid #C5641D !important;
margin-top: 5px;
}

#Transition { background-color: lightgrey; opacity: 1; }
#Nightfall { background-color: lightgrey; opacity: 1; }
#Corridor { background-color: lightgrey; opacity: 1; }
#Back_and_forth { background-color: lightgrey; opacity: 1; }
#Moving_wall { background-color: lightgrey; opacity: 1; }
#Kybalion { background-color: lightgrey; opacity: 1; }
#Prayers_walk { background-color: lightgrey; opacity: 1; }
#Ring_of_bells { background-color: lightgrey; opacity: 1; }
#Shrine { background-color: lightgrey; opacity: 1; }
#Transformation { background-color: lightgrey; opacity: 1; }

#Transition:hover { opacity: 0.5; }
#Nightfall:hover { opacity: 0.5; }
#Corridor:hover { opacity: 0.5; }
#Back_and_forth:hover { opacity: 0.5; }
#Moving_wall:hover { opacity: 0.5; }
#Kybalion:hover { opacity: 0.5; }
#Prayers_walk:hover { opacity: 0.5; }
#Ring_of_bells:hover { opacity: 0.5; }
#Shrine:hover { opacity: 0.5; }
#Transformation:hover { opacity: 0.5; }


/* Play / Pause Button */
.play-pause-button {
position: absolute;
	top: 500px;
	left: 0px;	
cursor: pointer;
width: 180px;
height: 30px;
text-align: center;
border: 1px solid #C5641D !important;
opacity: 1;
}

.play-pause-button:hover { opacity: 0.5; }

	/* Hide panel - Button */
.hide-button {
cursor: pointer;
width: 180px;
height: 30px;
text-align: center;
border: 1px solid #C5641D !important;
opacity: 1;
}

.hide-button:hover { opacity: 0.5; }

	/* show panel - Button */
.show-button {
	position: relative;
	top: 50px;
cursor: pointer;
width: 20px;
height: 20px;
text-align: center;
border: 1px solid #C5641D !important;
opacity: 1;
}

.show-button:hover { opacity: 0.5; }
	
/* Status Text der bei Bedarf Text blinken lässt */

.status-text {
position:absolute;
top:560px;
text-align: center;
left:10px;
width: 170px;
background-color:rgba(255,255,255,0.5);
border:1px dashed #000000 !important;
padding:5px;
font-size: 1em;

    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 0;

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 0;
}
	
/* Blinkender Status-Text */

@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}