
/* ------------------------------------------------------------------------ */
/* WolfsNatur                                     Version 12.0 - 2025-04-21 */
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* Video Fuulscreen/Hintergrund                                             */
/* ------------------------------------------------------------------------ */
/* Orginal:	http://slicejack.com/fullscreen-html5-video-background-css */


.HintergrundVideo
	{
	clear:            both;
	width:            100%;
	height:           100vh;
	max-width:        none;
/*	overflow:         hidden; */
	background:       no-repeat center center fixed;
	background-size:  cover;
	}

.video
	{
	position:         absolute;
	z-index:          20;
	top:              0;
	left:             0;
	width:            100%;
	height:           100%;
	min-width:        100%;

/*	overflow:         hidden; */
	filter:           alpha(opacity=80);
	-moz-opacity:     0.8;
	opacity:          0.8;
 	}

@media (min-aspect-ratio: 16/9)
{
.video /* Höhenprobleme */
	{
	height:           300%;
	top:             -100%;
	}
}

@media (max-aspect-ratio: 16/9)
{
.video
	{
	width:            300%;
	left:            -100%;
	}
}

/*

@media (min-aspect-ratio: 19/9) {.VideoBack {height: 200px;}}
@media (max-aspect-ratio: 19/9) {.VideoBack {display: none;}}

@media (orientation:portrait)
{
.video
	{
	width:  100%;
	top:    0;
	left:   0;
	}
}
*/
