.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 50002; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal.multiType {
    z-index: 50001;
    padding-top: 0px;
}
.modal.multiType > .modal-content {
    font-size: 20px;
    color: #6c757d
}

.modal.multiType > .modal-content > .contentwrapper {
    padding: 5px;
}
.modal.multiType > .modal-content > .contentwrapper > .content > .header {
    font-size: 24px;
    margin-bottom: 20px;
    color: #004994;
}

.modal.multiType > .modal-content > .contentwrapper > .content > .item {
    padding: 5px 0px;
    cursor: pointer;
    text-decoration: underline;
}

.modal.multiType > .modal-content > .contentwrapper > .content > .item:hover {
    color: #343a40;
}

#contentwrapper {
	/* position: relative; */
}
.container_video {
    height: 0px;
    padding-bottom: 56.25%;
    padding-top: 0px;
    position: relative;
    overflow: hidden;
}
  
/* Modal Content */
.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 10px;
	border: 1px solid #CCC;
	max-width: 90%;
	max-height: 90vh;
	position: relative;
}
  
/* The Close Button */
.close {
	color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    z-index: 100;
    top: -16px;
    right: -16px;
    border: 1px solid #aaaaaa;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    text-align: center;
	line-height: 32px;
	-webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;

    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
     transition-property: transform;
	
}
  
.close:hover,
.close:focus {
	/* color: #000; */
	-webkit-transform:rotate(-90deg);
    -moz-transform:rotate(-90deg); 
    -o-transform:rotate(-90deg);
	transform: rotate(-90deg);
	text-decoration: none;
	cursor: pointer;
}

.modalimage {
	width: 100%;
}

.modalstream {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
.modalstream.modalwr {
    height: 100vh;
    padding-top: 10px;
    border: none;
}

/*Medienbreite 1280px*/
@media only screen and (min-width: 1280px) {
    .modal-content {
        max-width: 1280px;
        box-sizing: border-box;
    }
}