.galleryFilterText{
	width: 100%;
	text-align: center;
	font-style: italic;
}
html, body {
	position: relative;
	width: 100%;
	height: 100%;
}
.flexContainer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.subMenu {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}
.subHeaderMenuNav {
	display: flex;
	flex-direction: row;
	width: 100%;
	line-height: 2em;
	justify-content: center;
	flex-wrap: wrap;
}
.galleryFilterDiv{
	display: flex;
	margin: .5vmin;
}
.videoNavLi {
    background-color: #DDDDDC;
}
.videoNavSpacing {
    visibility: hidden;
    height: 0;
}
.videoNavigation.dropDown::after {
	content: "\025BD";
    position: absolute;
    right: 1vmin;
}
.videoNavigation {
	margin: 1vmin;
	position: relative;
	display: flex;
	flex-direction: column;
}
a.videoNavBtn, a.videoNavBtn:visited, 
.videoNavSubBtns a, a.videoSubNav:visited {
	color: black;
}
.videoNavBtn{
	color: black;
	display: inline-block;
	padding: 0 1vmin;
	border: 1px black solid;
}
ul.videoNavUl {
	margin: 0;
	padding-inline-start: 0;
}
li.videoNavLi {
	list-style: none;
	padding: 0 1vmin;
}
a.videoNavBtn.active {
	background-color: var(--primary-color);
}
a.videoSubNav {
	width: 100%;
	display: block;
}
.hidden {
	display: none;
}
nav{
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}
.videoNavigation:hover .videoNavSubBtns {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	color: black;
	width: 100%;
	z-index: 100;
}
.subMenuButton {
	border: none;
	padding: 5px 5px 5px 20px;
	color: black;
	text-align: left;
	font-size: 11pt;
	outline: none;
	cursor: pointer;
	display: flex;
}
.subMenuButton:hover {
	background-color: #a9a9a9;
}
.overviewText {
	text-align: center;
	font-size: 15pt;
	width: 100%;
	margin-top: 1%;
}
.overviewText h1 {
	font-size: larger;
	margin: 0;
}
.videoContent {
	width: 100%;
}
.videoGallery {
	position: relative;
	overflow: hidden;
}
#videoTitle {
	position: relative;
	padding: 5px 20px 10px 20px;
	color: #000000;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	font-size: 12pt;
	z-index: 1;
}
.videoDisplay {
	display: flex;
	position: relative;
	justify-content: center;
}
.vd-videoWrapper{
	justify-content: center;
	max-width: 99.99%;
	position: relative;
	background-color: black;
}
.ratio {
	display: block;
	max-height: 65vh;
	min-height: 250px;
	max-width: 100%;
	position: relative;
	z-index: -1;
}
.vd-video {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border: none;
}
.vd-loading {
	position: absolute;
	width: 42px;
	height: 42px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #000 url(../../cms/img/icons/ajax-loader.gif) no-repeat center center;
	border-radius: 10px;
	opacity: 0.6;
	z-index: 0;
}
.linkHolder {
	width: 90%;
	margin: 0 5%;
	margin-top: 5vmin;
	padding-bottom: 10px;
}
.videoLink {
	position: relative;
	display: inline-block;
	cursor:pointer;
	text-align: center;
	width: 130px;
	vertical-align: top;
}
.videoLink:hover, .videoLink:focus {
	opacity: 1;
}
.videoLinkImage {
	height: 80px;
}
.videoLinkText {
	font-size: 9pt;
	margin: 0;
	color: black;
	pointer-events: none;
	white-space: normal;
}
#selected{
	opacity:1.0;
}
.shareableLink {
	color: white;
	display: inline-block;
	margin-top: 10px;
	background-color: #B48669;
	padding: 2px 5px;
	border: 1px solid white;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
	box-shadow: 3px 3px 10px 0px rgba(51,51,51,0.6);
}
.shareableLink:hover {
	background-color: #9B5D37;
}

/*********** RESPONSIVE ***********/    
@media only screen and 
	(min-width : 0px) and 
	(max-width : 1366px)
{
	.shareableLink {
		background-color: #9B5D37;
	}
}
@media only screen and 
	(min-width : 0) and 
	(max-width : 640px)
{
	.flexContainer {
		flex-direction: column;
	}
	.flexContainer .sideMenu {
		flex-direction: column;
		margin-bottom: 0px;
	}
	.flexContainer .sideMenuButton {
		justify-content: space-between;
	}
	.flexContainer .sideMenuFooter {
		height: 0;
	}
	.videoContent {
		margin: 0;
	}
	.videoGallery {
		border: none;
	}
	.overviewText {
		margin-top: 5%;
	}
	#videoTitle {
		display: none;
	}
	.ratio {
		min-height: 0px;
	}
	.linkHolder {
		box-shadow: none;
	}
	.shareableLink {
		font-size: 11pt;
		margin-left: 5px;
	}
}
@media only screen and 
	(min-width : 0px) and 
	(max-width : 640px) and 
	(orientation : portrait)
{
	.subHeaderMenuNav{
		line-height: 1.2em;
	}
}