.video {
    width: 100%;
}
.wrapper{
    display:table;
    width:auto;
    position:relative;
    width: 100%;
	padding:0px;
	margin:0px;
	top:0px;
    left:0px;
    right:0px;
    bottom:0px;
	
}
.playButton{
    border-radius: 90px;
    border: 12px solid #fff;
    height: 100px;
    position: absolute;
    width: 100px;
    margin: auto;
    top:0;
    bottom:0;
    right:0;
    left:0;
    cursor: pointer;
}
.playButton:before{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 50px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top:0;
    left:0;
    right:-10px;
    bottom:0;
    margin: auto;
}