/* start sticky footer */
html {
	height: 100%;
}
body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}
main {
	flex: 1 0 auto;
}
footer {
	flex-shrink: 0;
}
/* end sticky footer */
.container-for-nav {
	position: fixed;
	background: #1b7d9a;
	width: 100%;
	height: 42px;
	z-index: 1000;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
/* on medium and down hide the container-for-nav box shadow */
@media (max-width: 992px) {
	.container-for-nav {
		box-shadow: none;
	}
}
.nav > li > a {
	color: #fff;
}
.nav-tabs > li > a {
	border-radius: 0;
}
.nav > li > a:focus, .nav > li > a:hover {
	background-color: #73afc1;
}
/* start overriding bootstrap styles */
.btn-warning {
	background-color: #ffc107;
	border-color: #ffc107;
	color: #000;
}
.btn-warning:hover {
	background-color: #e0a800;
	border-color: #d39e00;
	color: #000;
}
.form-control:focus {
	z-index: 2;
}
/* end overriding bootstrap styles */
.wrapper
{
	background: #fff;
	padding-top: 10px;
	padding-bottom: 100px;
}
.header
{
	font-family: arial;
	font-size: 20px;
	padding: 3px 12px;
	padding: 6px 15px;
	color: #fff;
	background: linear-gradient(to right, #1b7d9a, #fff);
}
.footer {
	background: #eee;
	padding: 20px 0;
}
.loader {
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

/* spinner: https://tobiasahlin.com/spinkit/ */
.spinner {
	margin: 100px auto 0;
	width: 70px;
	text-align: center;
}

.spinner > div {
	width: 18px;
	height: 18px;
	background-color: #333;
	border-radius: 100%;
	display: inline-block;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
		transform: scale(0);
	} 40% { 
		transform: scale(1.0);
	}
}
/* end spinner */

.video-thumb {
	width: 100%;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
	border-radius: 5px;
}
.video-title {
	padding-top: 6px;
	margin-bottom: 15px;
	font-weight: bold;
	color: #000;
}
.year-badge {
	position: absolute;
	top: 4px;
	left: 8px;
	color: #fff;
	padding: 2px 4px;
	background: rgba(0,0,0,0.8);
	font-weight: bold;
}
.runtime-badge {
	position: absolute;
	top: 4px;
	right: 8px;
	color: #fff;
	padding: 2px 4px;
	background: rgba(0,0,0,0.8);
	font-weight: bold;
}

.slick-prev {
	background: rgba(0,0,0,0.2);
	height: 100%;
}
.slick-next {
	background: rgba(0,0,0,0.2);
	height: 100%;
}
.slick-prev:hover {
	background: rgba(0,0,0,0.5);
}
.slick-next:hover {
	background: rgba(0,0,0,0.5);
}
.slick-dots li button:before {
	font-size: 16px;
}
.playable {
	display: flex;
	align-items: center;
	justify-content: center;
}
.playable:before {
	content: "\f144";
	font-family: Font Awesome\ 5 Free;
	font-size: 80px;
	color: #fff;
	position: absolute;
/*	top: 20%;
	left: 40%;*/
/*	top: calc(50% - 80px);
	left: calc(50% - 40px);*/
	z-index: 1000;
	opacity: 0;
	transition: all 0.1s ease-in;
	text-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}
.playable:hover:before {
	opacity: 1;
}
.locked {
	display: flex;
	align-items: center;
	justify-content: center;
}
.locked:before {
	content: "\f023";
	font-family: Font Awesome\ 5 Free;
	font-weight: 900; /* required for lock since it's solid */
	font-size: 80px;
	color: #fff;
	position: absolute;
/*	top: 10%;
	left: 38%;*/
	z-index: 1000;
	opacity: 0.8;
	text-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}
.demo-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}