@charset "utf-8";


/*play button*/
.start-video {
	position: absolute;
    top: 50%;
    left: 50%;
	margin-left: -50px;
	margin-top: -50px;
	padding:0px;
    opacity: .5;
    cursor: pointer;
    transition: all 0.3s;
	}


/*hover over play button*/
.start-video:hover
{
    opacity: 1;
    -webkit-filter: brightness (1);
}

/*solid colour bg*/
div.thumbnail_container
{
    width: 100%;
    background-color: #000;
	opacity:0;
}

/*poster image*/
img.thumbnail
{
    margin-top: 0px;
    opacity: 0;
	width:100%;
	height:100%;
}

/*iframe with youtube video in it*/
#player {
width:100%;
height:100%;
position: absolute;
border: none

}


