/*
<div class="ppVideoWrapper">
...
    <div class="pp-video"><!-- --></div>
    <div class="controls">
        <div>
            <div class="button">
            <button class="pause"><!-- --></button>
            <button class="play"><!-- --></button>
        </div>
        <div><div class="progressBar"><div><!-- --></div></div></div>
        <div class="timer">00:00 | 00:00</div>
        <div class="button">
            <button class="mute"><!-- --></button>
            <button class="unmute"><!-- --></button>
        </div>
    </div>
    </div>
</div>
*/

/* http://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */

.ppVideoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    top: 15%;
    height: 0;
    overflow: hidden;
	width: 100%;
    background: url(./img/loading.gif) center center no-repeat;
}
    .ppVideoWrapper video,
    .ppVideoWrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    body.fullscreen .ppVideoWrapper {

        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        padding: 0;
        height: 100%;
        overflow: none;
    }

        .controls {


    }

/* Desktops and laptops ----------- */
@media only screen
and (min-width : 1224px) {

}
        .controls button {
            

        }
        .controls button.play {
           		        left: 0;
        right: 0;
        bottom: 0;
        top: 110;
		border: 0;
		        z-index: 50000;
		    width: 1153px;
            height: 1150px;
			margin-left: -1px;

            
			background:url(playbtn.jpg) no-repeat center top #000;
				background-size:1150px 1150px;
			position: absolute;
		    cursor: pointer;
		
        }
        .controls button.play {
            background-position: 0 0;
        }
        .controls button.pause {
            background-position: 0 -16px;
            display: none;
        }
        .controls button.unmute {
            background-position: -16px 0px;
            display: none;
        }
        .controls button.mute {
            background-position: -16px -16px;
        }

        .controls .quality {
                font-size: 0.917em;
                color: white;
                width: 90px;
            }
        .controls .quality select {
            border-radius: 5px 5px 0 0;
            border: 0;
            padding: 2px 5px;
            background-color: #555555;
            text-shadow: -1px -1px rgba(0,0,0,0.7);
            color: white;
            width: auto;
            height: auto;
            margin: 0;
        }

        .controls button.enterFullscreen {
            background-position: -32px 0px;
        }
        .controls button.leaveFullscreen {
            background-position: -32px -16px;
            display: none;
        }


        .controls .timer {
            font-size: 0.917em;
            color: white;
            width: 120px;
        }

        .controls .progressBar {
            display: block;
            width: 100%;
            height: 16px;
            background: #333333 url(./img/progress-bg.png) 0 0 repeat-x;
            cursor: col-resize;
        }
        .controls .progressBar {
            border-radius: 3px;
            background-image: linear-gradient(top, rgb(30,30,30) 3%, rgb(51,51,51) 52%);
            background-image: -o-linear-gradient(top, rgb(30,30,30) 3%, rgb(51,51,51) 52%);
            background-image: -moz-linear-gradient(top, rgb(30,30,30) 3%, rgb(51,51,51) 52%);
            background-image: -webkit-linear-gradient(top, rgb(30,30,30) 3%, rgb(51,51,51) 52%);
            background-image: -ms-linear-gradient(top, rgb(30,30,30) 3%, rgb(51,51,51) 52%);
            background-image: -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0.03, rgb(30,30,30)),
                    color-stop(0.52, rgb(51,51,51))
            );
        }
        .controls .progressBar > div {
            pointer-events: none;
            height: 100%;
            width: 0%;
            background: #ffffff url(./img/progress-bg.png) 0 -16px repeat-x;
        }
        .controls .progressBar > div {
            border-radius: 3px;
            background-image: linear-gradient(top, rgb(255,255,255) 3%, rgb(170,170,170) 52%);
            background-image: -o-linear-gradient(top, rgb(255,255,255) 3%, rgb(170,170,170) 52%);
            background-image: -moz-linear-gradient(top, rgb(255,255,255) 3%, rgb(170,170,170) 52%);
            background-image: -webkit-linear-gradient(top, rgb(255,255,255) 3%, rgb(170,170,170) 52%);
            background-image: -ms-linear-gradient(top, rgb(255,255,255) 3%, rgb(170,170,170) 52%);
            background-image: -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0.03, rgb(255,255,255)),
                    color-stop(0.52, rgb(170,170,170))
            );
        }

:-webkit-full-screen:not(:root) {

}
:-webkit-full-screen .ppVideoWrapper {
  width: 100%;
}
:-moz-full-screen .ppVideoWrapper {
  display: none;
}