



/* +++++++++++++++++++++++++ VIDEO-SCREENS +++++++++++++++++++ */

		
video { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;

    transform: translateX(-50%) translateY(-50%);
}

/* ++++++++++++ VIDEO-PLAYER + LISTE ++++++++++++++ */

/* +++ identisch mit audio ...

li{
	margin: 0;
	list-style: none;
}

li a{
	color:#eeeedd;
	background-color: rgba(0,0,0,.8);
	padding: 3px 5px 3px 8px;
	line-height: 40px;
	text-decoration:none;
}

li a:hover{
	text-decoration:none;
}

li:first-child {
  visibility : hidden; /* das ist der erste platzhalter/dummy 
}*/

.videolistlogo {
	width: 100px;
	padding: 0 6px 0 6px;
	vertical-align: text;
}

.activevideo a{
	color: #ffa54f;
	text-decoration:none;
	}

.activevideo {
	margin: 0; /* darstellung für Playlist (vertikale Verschiebung) */
}


#videolist {
	margin: -40px 0 0 50px; /* die 50px nach rechts reservieren den Platz für die blinkende Play-Zeit */
	/* margin-top: -40px; /* ggf. anpassen bei Typoänderung */
    padding:0;
    white-space:nowrap;
}

#videonav {
	position: fixed;
	padding: 0;
	margin: 0;
	top: 0;
	right: -300px; 
	/*width: 300px; /*später mal dynamisch breite errechnen ##############################*/
	/*background: #eeeeee;*/
	display: block;

	text-align: right;
    pointer-events: none;
}

#videostatuslabelwrapper {
	display: none;
	position: absolute;
	z-index:3;
	top: 300px; /* ggf. anpassen bei Typoänderung */
	right: 0px;
	margin-top: 5px; /* ggf. anpassen bei Typoänderung +++ das hier ist der Ausgleich für den Zeienabstand */
    cursor: ns-resize;
    user-select: none; 
    pointer-events: auto;
}

#videostatuslabel {
	color: #ffa54f;
	padding: 3px 5px 3px 8px;
	margin-left: 22px; /* Augleich wegen kommischem Abstand durch Drehung des Time-Labels */
	background-color: rgba(0,0,0,.8);
	float: right;

	white-space:nowrap;
	overflow:hidden;
}

.videostatuslabel a{ /* Einfärbung nach Kopieren des HTML-Inhalts in das Label */
	color: #ffa54f;
	text-decoration: none;
}

#videostatustime {
	width: 32px;
	font-weight: 300;
	color: #000000;
    text-align: center;
    padding:0;
	font-size: 0.8em;
	white-space:nowrap;
	overflow:hidden;
	transform-origin: 100% 0;
	transform: rotate(-90deg);
    float: right;
    margin-left: -15px;:
}

.videostatusloader {
  margin-right: -16px;
  margin-top: 4px;
  height: 12px;
  width: 12px;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  display: inline-block;
  border: 5px solid;
  border-radius: 50%;
  border-right-color: rgba(255, 255, 255, 0.5);
  animation: rotate 0.5s linear infinite; }

@keyframes rotate {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }


#videocontent {
	position: fixed;
	padding: 0;
	margin: 0;
	top: 0;
	bottom: 0;
	right: -300px; /*-300px; ####################### /* wird dynamisch eingestellt*/
	width: 300px; /* wird dynamisch eingestellt*/
	background-color: rgba(0,0,0,.8);
	display: block;
	overflow: hidden;
	z-index: 30;
}

#videocontentframe {
	position: relative;
	padding: 0px;
	margin: 0px;
	height: 100%;

/*	background-color: yellow;*/
	display: block;
	overflow: auto;
	color: #cccccc;
}

#buttonvideocontentclose {
	position: absolute;
	width: 30px;
	top: 10px;
	right: 10px;
}

.audiocontentimage {
	width: 100px;
	border-radius: 100%;
	margin: 40px 0 20px 0;
	padding: 0;
}

.audiocontenth1 {
	font-size: 1.5em;
	margin: 0px 5% 0px 5%;
	padding: 0;
	color: #ffffff;
}

.audiocontentp {
	color: #cccccc;
	font-size: 1.2em;
	margin: 0px 5% 0px 5%;
	padding: 0;
}

