/* Increase font from 10 to 12 */
.video-js.vjs-static-controls {
	font-size: 12px;
}

/* Always show control bar */
.video-js.vjs-static-controls .vjs-control-bar {
	display: block;
}

/* Don't fade out controls */
.video-js.vjs-static-controls.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
	opacity: 1;
	visibility: visible;
}

/* Align poster higher */
.video-js.vjs-static-controls .vjs-poster {
	background-position: 50% calc(50% - 24px);
}

/* Override tech height:100% */
.video-js.vjs-static-controls .vjs-tech {
	width: 100%;
	height: calc(100% - 48px);
}

/* Don't forget to add 30px to height in < video > tag */

/* Subtitles font */
.video-js .vjs-text-track {
	font-size: 2.0em;
	margin-bottom: 35px;
	padding: 0px;
}

/* Fix to lowercase in menu */
.vjs-default-skin .vjs-menu-button ul li {
	text-transform: none;
}

/**************************
	Fullscreen edits start
**************************/
@media screen and (max-width:480px) {
	.vjs-default-skin .vjs-control-bar {
		padding-bottom: 3.0em;
	}
}
.vjs-playback-rate-value {
	font-size: 12px !important;
	line-height: 3em !important;
}
.vjs-fullscreen.vjs-default-skin .vjs-control-bar {
	font-size: 133%;
}

.vjs-fullscreen.vjs-static-controls.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
	display: block;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: visibility 0.3s, opacity 0.3s;
	-moz-transition: visibility 0.3s, opacity 0.3s;
	-o-transition: visibility 0.3s, opacity 0.3s;
	transition: visibility 0.3s, opacity 0.3s
}

.vjs-fullscreen.vjs-static-controls .vjs-tech {
	width: 100%;
	height: 100%;
}

/* Subtitles fix */
.video-js .vjs-text-track-display {
	bottom: 2em;
}

.vjs-fullscreen.video-js .vjs-text-track-display {
	bottom: 3em;
}

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
	bottom: 2em;
}

.vjs-fullscreen.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
	bottom: 0em;
}

.video-js .vjs-text-track-display {
	left: 0;
	right: 0
}

/* Hide embed in fullscreen */
.vjs-fullscreen.video-js.vjs-static-controls .player-embed-button {
	display: none;
}

/**************************
	Fullscreen edits stop
**************************/

/* Fix color lines on progress bar */
.vjs-default-skin .vjs-volume-level {
	background: #66a8cc;
}

.vjs-default-skin .vjs-play-progress {
	background: #66a8cc;
}

/* Static progress bar */
.vjs-default-skin .vjs-progress-control {
	font-size: 1em;
}

.vjs-default-skin:hover .vjs-progress-control {
	font-size: 1em;
}

/* Remove rombs */
.vjs-default-skin .vjs-seek-handle {
	display: none;
}

.vjs-default-skin .vjs-slider-handle {
	display: none;
}

/* fix sound volume bar */
.vjs-default-skin .vjs-volume-bar {
	margin: 1.24em auto 0px;
}

.vjs-default-skin .vjs-volume-level {
	height: 0.575em;
}

.vjs-default-skin .vjs-time-controls {
	line-height: 3.1em;
}

/* fix error message */
.video-js.vjs-static-controls .vjs-error-display div {
	bottom: 4em;
}

/* better fonts */
.vjs-tt-cue {
	font-family: tahoma, arial, verdana, sans-serif, Lucida Sans;
}

.video-js {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/**************************
	button-styles.css START
**************************/

/* Position the button */
.vjs-res-button {
	float: right;
	line-height: 3em;
}

/* Don't show hover effects on title */
ul li.vjs-menu-title.vjs-res-menu-title:hover {
	cursor: default;
	background-color: transparent;
	color: #CCC;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* Needed to keep text visible in video.js 4.9 */
.vjs-res-button .vjs-control-text {
	width: auto;
	height: auto;
	clip: auto;
	left: 15px;
	margin: 0;
}

/**************************
	button-styles.css END
**************************/