/* Video Wrapper */
.video_wrapper {
	position: relative;
	box-shadow: 0px 3px 5px #333;
	height: 216px;
	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;

    position: absolute;
    bottom: 0;
    z-index: 9;
    background: rgb(42,42,42);
    background: radial-gradient(circle, rgba(42,42,42,1) 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;
}

/* 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: 8px 16px;
  font-size: 16px;
  border: 1px solid #FFF;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
  font-size: 18px;
  font-weight: 600;
  font-family: "Neue Rational", sans-serif;
}

.btn[type=button]:hover,.btn[type=button]:focus {
background-color: transparent;
color: #ffffff;
border: 1px solid #FFF;
}