/* --------------------------------------------- */
/* Author: http://themeforest.net/user/50andJACK */
/* --------------------------------------------- */

html {

	background-color: #000;
	
}

body {

	margin: 0;
	padding: 0;
	background-color: #000;
	
}

/* The main video container */
.mm-video-container {

	background-color: #000;
	width: 100%;
	height: 100%;
	
}

/* The main video controls container */
.mm-vid-controls {

	background: url(../img/video/vid_bg.png) repeat-x;
	width: 100%;
	height: 28px;
	position: absolute;
	bottom: 0;
	opacity: 1;
	
	/* css property to animate, transition time in seconds, transition easing function */
	/* for more easing functions visit this link: http://matthewlein.com/ceaser/ */
	-webkit-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-moz-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-o-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-ms-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	
}

/* Remove unwanted image selection performed by some browsers */
.mm-vid-controls img {

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	
}

/* The play/pause button container */
.mm-vid-play-pause {

	float: left;
	width: 6px;
	margin: 5px 0 0 9px;
	position: relative;
	cursor: pointer;
	
}

/* The play button */
.mm-vid-play {
	
	position: absolute;
	padding: 3px;
	
}

/* The pause button */
.mm-vid-pause {

	position: absolute;
	padding: 3px;
	margin-top: 1px;
	display: none;
	
}

/* The video status text */
.mm-vid-time {

	float: left;
	position: relative;
	overflow: hidden;
	text-align: center;
	cursor: default;
	
	font: 10px Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #EEE;
	
	width: 72px;
	margin: 8px 0 0 15px;
	line-height: 10px;
	
}

/* The video progress line and total line container */
.mm-vid-lines {

	float: left;
	width: 403px;
	margin-top: 5px;
	padding-left: 15px;
	position: relative;
	
}

/* The video total line */
.mm-vid-total {

	width: 403px;
	height: 2px;
	padding: 8px 0 8px 0;
	display: block;
	background: url(../img/video/vid_total.png) center left;
	position: absolute;
	cursor: pointer;
	
}

/* The video progress line */
.mm-vid-progress {

	width: 0;
	height: 2px;
	padding: 8px 0 8px 0;
	display: block;
	background: url(../img/video/vid_progress.png) center left;
	position: absolute;
	cursor: pointer;
	
}

/* The video volume button container */
.mm-vid-vol-buttons {

	float: left;
	width: 13px;
	position: relative;
	margin-top: 6px;
	padding-left: 9px;
	
}

/* The video volume on button */
.mm-vid-volume {

	position: absolute;
	padding: 3px;
	cursor: pointer;
	
}

/* The video volume mute button */
.mm-vid-mute {

	position: absolute;
	padding: 3px;
	display: none;
	cursor: pointer;
	
}

/* The video volume scrub container */
.mm-vid-vol-lines {

	float: left;
	width: 55px;
	margin-top: 5px;
	padding-left: 9px;
	position: relative;
	
}

/* The video volume scrub total line */
.mm-vid-vol-total {

	width: 55px;
	height: 2px;
	padding: 8px 0 8px 0;
	display: block;
	background: url(../img/video/vid_total.png) center left;
	position: absolute;
	cursor: pointer;
	
}

/* The video volume scrub current volume line */
.mm-vid-vol-current {

	width: 25px;
	height: 2px;
	padding: 8px 0 8px 0;
	display: block;
	background: url(../img/video/vid_progress.png) center left;
	position: absolute;
	cursor: pointer;
	
}

/* The video normalscreen/fullscreen container */
.mm-vid-fullscreen {

	float: left;
	margin-top: 6px;
	padding-left: 9px;
	position: relative;
	
}

/* The video fullscreen button */
.mm-vid-full {

	position: absolute;
	padding: 3px;
	cursor: pointer;
	
}

/* The video normal screen button */
.mm-vid-normal {

	position: absolute;
	padding: 3px;
	display: none;
	cursor: pointer;
	
}

/* Applied to the HTML Video element itself */
.mm-video {
	
	width: 100%;
	height: 100%;
	
	background-color: #000;
	outline: none;
	padding: 0 !important;
	margin: 0 !important;
	
}

/* The big play button */
.mm-vid-play-btn {
	
	width: 66px;
	height: 66px;
	
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -33px 0 0 -33px;
	
	background: url(../img/video/vid_play_button.png) no-repeat left top;
	cursor: pointer;
	display: block;
	opacity: 1;
	
	/* css property to animate, transition time in seconds, transition easing function */
	/* for more easing functions visit this link: http://matthewlein.com/ceaser/ */
	-webkit-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-moz-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-o-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-ms-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	
}

.mm-vid-play-btn:hover {

	background-position: left bottom;
	
}

@media screen and (max-width: 240px) {
	
	.mm-vid-lines {
	
		visibility: hidden;
		
	}
	
}










