/* Video Wrapper */
.video_wrapper {
	position: relative;
	box-shadow: 0px 3px 5px #333;
	height: 300px;
	width: 100%;    
}
  
.video_wrapper .video_trigger {
    padding: 30px;

    /* height: -webkit-calc( 100% - 260px ); */
    /* height: -moz-calc( 100% - 260px ); */
    /* height: -o-calc( 100% - 260px ); */
    /* height: calc( 100% - 260px ); */

    /* width: -webkit-calc( 100% - 60px ); */
    /* width: -moz-calc( 100% - 60px ); */
    /* width: -o-calc( 100% - 60px ); */
    /* width: calc( 100% - 60px ); */
    max-height: 300px;
    height: 100%;
    position: absolute;
    bottom: 0;
    z-index: 9;
    background: rgb(42,42,42);
    background: radial-gradient(circle, rgb(71, 71, 71) 0%, rgba(0,0,0,1) 95%, rgba(0,0,0,1) 100%);
    color: #fff;
}
#page-content .video_wrapper .video_trigger p.text {
    color: #fff;
}

.video_wrapper .video_trigger p.text a:hover{
    color: #fff;
}


/* play icon if Font Awesome is integrated */
/* .video_wrapper .video_trigger:before {
    content: '\f04b';
    font-family: 'FontAwesome';
    position: absolute;
    z-index: -1;
    font-size: 120px;
    color: rgba( 255, 255, 255, .2 );
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    top: -webkit-calc( 50% - 60px );
    top: calc( 50% - 60px );
    left: -webkit-calc( 50% - 60px );
    left: calc( 50% - 60px );
} */

.video_wrapper .video_layer {    
    position: relative;
    display: none;
    height: inherit;
    width: inherit;
    margin: auto;
}
    
.video_wrapper .video_layer iframe {
    border: 0px none transparent;
    height: inherit;
    width: inherit;
    vertical-align: middle;
}
    
  
  



/* Button */
.btn[type=button] {
  
  cursor: pointer;
  display: inline-block;
  transition: color .5s, background-color .5s, border .5s;
  padding: 16px 36px;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: none;
  font-family: 'Noto Sans', sans-serif;
}

.btn[type=button]:hover,.btn[type=button]:focus {
background-color: transparent;
color: #dadeea;
border: none;
}


/*
 * Fallback, falls das Video-Blocker-JavaScript
 * nicht geladen oder durch den Browser blockiert wird.
 */
.so-video-js-fallback {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 300px;
    padding: 30px;
    box-sizing: border-box;

    color: #fff;
    background: radial-gradient(
        circle,
        rgb(71, 71, 71) 0%,
        rgb(0, 0, 0) 95%,
        rgb(0, 0, 0) 100%
    );

    text-align: center;
}

.so-video-js-fallback p {
    max-width: 700px;
    margin: 0;
    color: #fff;
}