@media screen and (max-width: 1023px) {
	.desktop-only {
		display: none !important;
	}
}

@media screen and (min-width: 1024px) {
	.mobile-only {
		display: none !important;
	}
}

@media screen and (max-width: 1023px) {
	.desktop-only {
		display: none !important;
	}
}

@media screen and (min-width: 1024px) {
	.mobile-only {
		display: none !important;
	}
}

html,
body {
	font-family: 'minion-pro', serif;
	font-size: 16px;
	letter-spacing: 1px;
	text-rendering: optimizeSpeed;
	font-variant-ligatures: no-common-ligatures;
	color: rgba(0, 0, 0, 1);
	background: #fff;
	margin: 0;
	padding: 0;
	min-height: 100%;
	width: 100%;
	position: relative;
	overflow-x: hidden;
}

p {
	font-family: 'minion-pro', serif;
	font-size: 16px;
	letter-spacing: 1px;
	text-rendering: optimizeSpeed;
	font-variant-ligatures: no-common-ligatures;
	color: rgba(0, 0, 0, 1);
	line-height: 28px;
	margin: 0 auto 15px auto;
}

p em {
	font-style: italic;
}

p span,
p span.brand {
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

p.brand {
	text-align: center;
}

a {
	border-bottom: 1px solid;
}

a:hover {
	color: #888;
	border-color: #888;
}

a,
a:visited,
a:active {
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

sub,
sup {
	font-size: 70%;
	vertical-align: baseline;
	position: relative;
	top: -0.45em;
}

sub {
	top: 0.45em;
}

div#main {
	margin: 60px 0 0 0;
}

@media screen and (min-width: 1024px) {
	div#main {
		margin: 136px auto 0;
	}
}

section {
	padding: 0 0 30px;
}

@media screen and (min-width: 720px) {
	section {
		padding: 0 0 40px;
	}
}

section.collapse {
	padding: 0;
}


/**
 * HEADINGS
 */

h1,
h2,
h3 {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: rgba(0, 0, 0, 1);
	text-align: center;
	max-width: 320px;
	margin: 30px auto 20px auto;
}

@media screen and (min-width: 480px) {
	h1,
	h2,
	h3 {
		max-width: 440px;
	}
}

@media screen and (min-width: 720px) {
	h1,
	h2,
	h3 {
		max-width: 700px;
	}
}

@media screen and (min-width: 1024px) {
	h1,
	h2,
	h3 {
		max-width: 980px;
	}
}

h1 em,
h2 em,
h3 em {
	font-family: 'minion-pro', serif;
	text-transform: lowercase;
	font-weight: 200;
	font-style: italic;
	margin: 0;
}

em.no-transform {
	text-transform: none;
}

h1 {
	font-size: 36px;
	margin-bottom: 40px;
}

@media screen and (min-width: 720px) {
	h1 {
		letter-spacing: 6px;
		font-size: 40px;
	}
}

h2 {
	font-size: 28px;
}

@media screen and (min-width: 720px) {
	h2 {
		letter-spacing: 6px;
		font-size: 36px;
	}
}

h3 {
	font-size: 28px;
}

h5 {
	font-family: 'minion-pro', serif;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: normal;
	letter-spacing: 8px;
	margin: 10px 0;
}

h6 {
	font-family: 'minion-pro', serif;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: normal;
	letter-spacing: 2px;
	margin: 0;
}


/**
 * NAVIGATION
 */

nav li {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	text-align: left;
	font-size: 20px;
	letter-spacing: 2px;
}


/**
 * FORMS
 */



select {
	font-family: 'minion-pro', serif;
	font-size: 12px;
	letter-spacing: 1px;
	text-rendering: optimizeSpeed;
	font-variant-ligatures: no-common-ligatures;
	/*text-transform: uppercase;*/
	background: transparent;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 0 70px 0 15px;
	outline: none;
	border: 1px solid #e1e1e1;
}



/**
 * BUTTONS
 */

input[type="submit"],
button,
a.button {
	display: inline-block;
	float: none;
	height: auto;
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 2px;
	background-color: #aaa;
	border: none;
	border-radius: 0;
	color: #fff;
	text-align: center;
	padding: 10px 30px;
	cursor: pointer;
	-webkit-transition: background-color 250ms ease-in-out;
	-moz-transition: background-color 250ms ease-in-out;
	-ms-transition: background-color 250ms ease-in-out;
	-o-transition: background-color 250ms ease-in-out;
	transition: background-color 250ms ease-in-out;
}

input[type="submit"]:hover,
button:hover,
a.button:hover,
input[type="submit"]:focus,
button:focus,
a.button:focus {
	background-color: #7a7a7a;
	color: #fff;
}

.subtle-button {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 2px;
	border: none;
}

.subtle-button::after {
	content: ' >';
}

a.brand-button {
	display: inline-block;
	float: none;
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 2px;
	background-color: #b60000;
	color: #fff;
	text-align: center;
	padding: 10px 30px;
	border: none;
	border-radius: 0;
	-webkit-transition: background-color 250ms ease-in-out;
	-moz-transition: background-color 250ms ease-in-out;
	-ms-transition: background-color 250ms ease-in-out;
	-o-transition: background-color 250ms ease-in-out;
	transition: background-color 250ms ease-in-out;
}

a.brand-button:hover,
a.brand-button:focus {
	background-color: #830000;
}


/**
 * LISTS
 */

ul,
ol {
	margin: 15px auto;
}

ul li {
	list-style-type: disc;
}


/**
 * FOOTER
 */

footer p,
footer li,
footer span {
	font-family: 'minion-pro', serif;
	font-size: 14px;
	letter-spacing: 1px;
	text-rendering: optimizeSpeed;
	font-variant-ligatures: no-common-ligatures;
}

footer li {
	text-transform: none;
}

footer li a {
	color: rgba(0, 0, 0, 0.5);
}

footer p {
	color: rgba(0, 0, 0, 0.5);
	text-align: left;
	line-height: 20px;
}

footer ul {
	margin: 0;
	padding: 0;
}

footer ul li {
	list-style-type: none;
}

section.text-callout blockquote,
blockquote {
	width: 100%;
	text-align: center;
	padding: 20px 0;
	margin: 0;
}

section.text-callout blockquote p,
blockquote p {
	font-family: 'minion-pro', serif;
	font-size: 24px;
	letter-spacing: 1px;
	text-rendering: optimizeSpeed;
	font-variant-ligatures: no-common-ligatures;
	line-height: 36px;
	max-width: 650px;
}

section.text-callout blockquote p span.brand,
blockquote p span.brand {
	font-size: 16px;
	letter-spacing: 2px;
}

@media screen and (min-width: 1024px) {
	section.text-callout blockquote p,
	blockquote p {
		font-size: 28px;
		letter-spacing: 4px;
	}
	section.text-callout blockquote p span.brand,
	blockquote p span.brand {
		font-size: 20px;
		letter-spacing: 4px;
	}
}

section.text-callout blockquote p.speaker,
blockquote p.speaker {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 28px;
	letter-spacing: 3px;
	margin-bottom: 0;
}

@media screen and (min-width: 1024px) {
	section.text-callout blockquote p.speaker,
	blockquote p.speaker {
		font-size: 36px;
	}
}

section.text-callout blockquote p.speaker-title,
blockquote p.speaker-title {
	margin-top: 5px;
	line-height: 20px;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 3px;
}

section.text-callout blockquote::before,
blockquote::before,
section.text-callout blockquote::after,
blockquote::after {
	content: '';
	display: block;
	width: 30%;
	height: 1px;
	background: #ccc;
}

section.text-callout blockquote::before,
blockquote::before {
	margin: 0 auto 50px auto;
}

section.text-callout blockquote::after,
blockquote::after {
	margin: 50px auto 0 auto;
}

section.text-callout blockquote.header::before,
blockquote.header::before {
	height: 0;
}


/**
 * ICONS
 */

@font-face {
	font-family: 'icomoon';
	src: url('/fileadmin/res/typo/ico/icomoon.eot?y15p8b');
	src: url('/fileadmin/res/typo/ico/icomoon.eot?#iefixy15p8b') format('embedded-opentype'), url('/fileadmin/res/typo/ico/icomoon.ttf?y15p8b') format('truetype'), url('/fileadmin/res/typo/ico/icomoon.woff?y15p8b') format('woff'), url('/fileadmin/res/typo/ico/icomoon.svg?y15p8b#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

[class^="icon-"],
[class*=" icon-"] {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-lyre:before {
	content: "\e900";
}

.icon-search:before {
	content: "\e901";
}

.icon-fb:before {
	content: "\e902";
}

.icon-go:before {
	content: "\e903";
}

.icon-ig:before {
	content: "\e904";
}

.icon-mail:before {
	content: "\e905";
}

.icon-msg:before {
	content: "\e906";
}

.icon-phn:before {
	content: "\e907";
}

.icon-tw:before {
	content: "\e908";
}

.icon-yt:before {
	content: "\e909";
}

.icon-fullscreen:before {
	content: "\e90a";
}

.icon-lang:after {
	content: "\e90b";
}

.icon-loc:after {
	content: "\e90c";
}

.icon-mute:before {
	content: "\e90d";
}

.icon-prof:before {
	content: "\e90e";
}

.icon-replay:before {
	content: "\e90f";
}

.icon-vol:before {
	content: "\e910";
}

.icon-bubble2:before {
	content: "\e96e";
}

.icon-facebook:before {
	content: "\ea90";
}

.icon-twitter:before {
	content: "\ea96";
}

.icon-google-plus:before {
	content: "\ea8b";
}

.icon-youtube:before {
	content: "\ea9d";
}

.icon-instagram:before {
	content: "\ea92";
}

.hidden {
	display: none !important;
}

.show-more {
	max-width: 700px;
	margin: 0 auto;
	overflow: auto;
	padding-top: 20px;
}

section.accordion ul {
	margin: 0 auto;
	padding: 0 30px;
	max-width: 650px;
	text-indent: -7px;
}

@media screen and (min-width: 1024px) {
	section.accordion ul {
		max-width: 800px;
	}
}

section.accordion ul li {
	cursor: pointer;
	list-style-type: none;
	padding: 10px 0;
}

section.accordion ul li::before {
	display: inline-block;
	content: '>';
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

section.accordion ul li div.content {
	display: none;
	text-indent: 0;
}

section.accordion ul li a.header {
	border: none;
}

section.accordion ul li.expanded::before {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

@media screen and (max-width: 1023px) {
	.desktop-only {
		display: none !important;
	}
}

@media screen and (min-width: 1024px) {
	.mobile-only {
		display: none !important;
	}
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/* Section 5.1 Artist Matrix                             */


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.artist-matrix {
	width: 100%;
	overflow: hidden;
	margin: 30px 0;
	position: relative;
	padding: 0;
	/* Pointer */
}

.artist-matrix .artist-search {
	width: 100%;
	height: 45px;
	margin-bottom: 2px;
}

.artist-matrix .artist-search input {
	width: 100%;
	height: 100%;
	font-size: 1.4em;
	background: url(/fileadmin/res/assets/svg/search.svg) #f9f9f9;
	background-position: 20px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	border: none;
}

.artist-matrix .artist-search input:focus {
	border-left: none;
	border-right: none;
}

.artist-matrix .artist-search input::-webkit-input-placeholder,
.artist-matrix .artist-search input:-moz-placeholder,
.artist-matrix .artist-search input:-ms-input-placeholder {
	padding-left: 0;
}

.artist-matrix .artist-holster {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.artist-matrix .artist {
	text-align: center;
	margin: 1px;
	float: left;
	cursor: pointer;
}

.artist-matrix .artist .artist-overlay {
	background: rgba(0, 0, 0, 0.2);
	position: absolute;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.artist-matrix .artist:hover .artist-overlay {
	background: transparent;
}

.artist-matrix .clicked-artist .artist-overlay {
	background: transparent !important;
}

.artist-matrix .darker-overlay {
	background: rgba(0, 0, 0, 0.75) !important;
}

.artist-matrix .artist-popup {
	display: none;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	text-align: left;
}

.artist-matrix .artist-popup .close-popup {
	position: absolute;
	top: 3px;
	right: 9px;
	height: 30px;
	width: 30px;
	background: transparent;
	cursor: pointer;
	z-index: 1;
}

.artist-matrix .artist-popup .close-popup span {
	background: #eee;
	position: absolute;
	top: 7px;
	left: 15px;
	height: 20px;
	width: 2px;
	display: block;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.artist-matrix .artist-popup .close-popup span:last-child {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.artist-matrix .artist-name-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	padding: 5px 5px 15px 5px;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#00000000, endColorstr=#a6000000)";
}

.artist-matrix .artist-profile {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 3px;
	color: #fff;
}

.artist-matrix .artist-profile .artist-name {
	font-size: 34px;
}

.artist-matrix .artist-navigation-wrapper {
	z-index: 1;
	position: absolute;
	width: 46px;
	height: 46px;
	background: rgba(255, 255, 255, 0.75);
	border-radius: 40px;
	cursor: pointer;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.artist-matrix .artist-navigation-wrapper:hover {
	background: rgba(255, 255, 255, 0.9);
}

.artist-matrix .artist-navigation {
	height: 14px;
	width: 14px;
	background: transparent;
	border-right: 2px solid rgba(0, 0, 0, 0.75);
	border-bottom: 2px solid rgba(0, 0, 0, 0.75);
	position: absolute;
	cursor: pointer;
}

.artist-matrix .left-wrapper {
	left: 40px;
	display: none;
}

.artist-matrix .right-wrapper {
	right: 40px;
}

.artist-matrix .artist-navigation.left {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	top: 16px;
	left: 18px;
}

.artist-matrix .artist-navigation.right {
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	-o-transform: rotate(315deg);
	transform: rotate(315deg);
	top: 15px;
	left: 12px;
}

.artist-matrix [hidden] {
	display: none;
}

.artist-matrix .visually-hidden {
	position: absolute;
	clip: rect(0, 0, 0, 0);
}

.artist-matrix .awesomplete {
	width: 100%;
}

.artist-matrix .awesomplete>input {
	display: block;
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	margin: 0;
	padding: 10px 0 10px 55px;
	font-size: 20px;
}

.artist-matrix .awesomplete>ul {
	position: absolute;
	top: 38px;
	left: 0;
	z-index: 10;
	min-width: 100%;
	padding: 0 0 10px;
	margin: 0;
	background: rgba(255, 255, 255, 0.95);
	-webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	text-shadow: none;
}

.artist-matrix .awesomplete>ul[hidden],
.artist-matrix .awesomplete>ul:empty {
	display: none;
}

@supports (transform: scale(0)) {
	.artist-matrix .awesomplete>ul {
		transition: 0.3s cubic-bezier(0.4, 0.2, 0.5, 1.4);
		transform-origin: 0 0;
	}
	.artist-matrix .awesomplete>ul[hidden],
	.artist-matrix .awesomplete>ul:empty {
		opacity: 0;
		transform: scale(0);
		display: block;
		transition-timing-function: ease;
	}
}

.artist-matrix .awesomplete>ul:before {
	display: none;
}

.artist-matrix .awesomplete>ul>li {
	position: relative;
	width: 100%;
	margin: 15px 10px;
	padding: 15px 0;
	cursor: pointer;
	display: table;
	border-bottom: 2px solid transparent;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.artist-matrix .awesomplete>ul>li:hover {
	color: black;
	background: #fff;
}

.artist-matrix .awesomplete>ul>li:hover mark {
	background: transparent;
}

.artist-matrix .awesomplete>ul>li[aria-selected="true"] {
	background: #3d6d8f;
	color: white;
}

.artist-matrix .awesomplete mark {
	background: transparent;
}

.artist-matrix .awesomplete li:hover mark {
	background: rgba(0, 0, 0, 0.2);
}

.artist-matrix .awesomplete li[aria-selected="true"] mark {
	background: #3d6b00;
	color: inherit;
}

.artist-matrix .sk-cube-grid {
	width: 120px;
	height: 120px;
	display: none;
	position: absolute;
	top: calc(50% - 40px);
	left: calc(50% - 60px);
}

.artist-matrix .sk-cube-grid .sk-cube {
	width: 33%;
	height: 33%;
	background-color: #aaa;
	float: left;
	-webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
	animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.artist-matrix .sk-cube-grid .sk-cube1 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.artist-matrix .sk-cube-grid .sk-cube2 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.artist-matrix .sk-cube-grid .sk-cube3 {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.artist-matrix .sk-cube-grid .sk-cube4 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.artist-matrix .sk-cube-grid .sk-cube5 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.artist-matrix .sk-cube-grid .sk-cube6 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.artist-matrix .sk-cube-grid .sk-cube7 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

.artist-matrix .sk-cube-grid .sk-cube8 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.artist-matrix .sk-cube-grid .sk-cube9 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
	0%,
	70%,
	100% {
		-webkit-transform: scale3D(1, 1, 1);
		transform: scale3D(1, 1, 1);
	}
	35% {
		-webkit-transform: scale3D(0, 0, 1);
		transform: scale3D(0, 0, 1);
	}
}

@keyframes sk-cubeGridScaleDelay {
	0%,
	70%,
	100% {
		-webkit-transform: scale3D(1, 1, 1);
		transform: scale3D(1, 1, 1);
	}
	35% {
		-webkit-transform: scale3D(0, 0, 1);
		transform: scale3D(0, 0, 1);
	}
}

@media screen and (min-width: 480px) {
	.artist-matrix .awesomplete>input {
		padding: 10px 0 10px 110px;
	}
	.artist-matrix .artist-search input {
		background-position: 70px;
	}
	.artist-matrix .artist-search input:-ms-input-placeholder {
		padding-left: 110px;
	}
	.artist-matrix .awesomplete>ul[hidden],
	.artist-matrix .awesomplete>ul:empty {
		display: none;
	}
	.artist-matrix .awesomplete>ul>li {
		margin: 0;
		padding-left: 100px;
	}
}

@media screen and (min-width: 720px) {
	.artist-matrix .awesomplete>ul {
		left: 0;
	}
	@supports (transform: scale(0)) {
		.artist-matrix .awesomplete>ul {
			transition: 0.3s cubic-bezier(0.4, 0.2, 0.5, 1.4);
			transform-origin: 0 0;
		}
		.artist-matrix .awesomplete>ul[hidden],
		.artist-matrix .awesomplete>ul:empty {
			opacity: 0;
			transform: scale(0);
			display: block;
			transition-timing-function: ease;
		}
	}
}

section.featured-area {
	width: 100%;
}

section.featured-area.normal {
	max-height: 780px;
}

section.featured-area.normal .carousel-element {
	max-height: 780px;
}

section.featured-area .carousel-element {
	height: 200px;
	overflow: hidden;
	position: relative;
}

section.featured-area .carousel-copy {
	margin: 30px auto 0;
	width: 300px;
	text-align: center;
	pointer-events: all;
}

section.featured-area .carousel-copy a {
	border: none;
}

section.featured-area .carousel-copy a:hover {
	color: inherit;
}

section.featured-area .vjs-crop,
section.featured-area .vjs-crop video.vjs-tech {
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 720px) {
	section.featured-area .vjs-crop,
	section.featured-area .vjs-crop video.vjs-tech {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
		width: auto;
		height: auto;
		min-width: 100%;
		min-height: 100%;
	}
}

section.featured-area .video-js.autoplay .vjs-big-play-button {
	display: none;
}

section.featured-area div.title,
section.featured-area div.title-big {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 36px;
	letter-spacing: 3px;
}

section.featured-area div.title em,
section.featured-area div.title-big em {
	font-family: 'minion-pro', serif;
	text-transform: lowercase;
	font-size: 28px;
	letter-spacing: 3px;
	font-weight: 200;
	font-style: italic;
}

section.featured-area p.subtitle {
	margin: 0;
}

section.featured-area .item {
	position: relative;
}

section.featured-area .click-controls {
	position: absolute;
    margin: 0 auto;
    z-index: 100;
	background-color:#b40610 !important;
    color: #fff;
    bottom: 80px;
    right: 100px;
    border-radius: 0;
    cursor: pointer;
	line-height: 20px;
	padding: 10px 30px;
}

@media screen and (max-width: 720px) {
	section.featured-area .click-controls {
		bottom: 30px;
		right: 20px;
		padding: 4px 18px;
	}
}

section.featured-area .click-controls .instructions {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: 3px;
}

@media screen and (max-width: 720px) {
	section.featured-area .click-controls .instructions {
		font-size: 13px;
		letter-spacing: 1px;
	}
}

section.featured-area .replay-controls {
	position: absolute;
	width: 300px;
	height: 28px;
	margin: auto;
	z-index: 100;
	background-color: rgba(255, 255, 255, 0.75);
	color: #000;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px;
	border-radius: 3px;
	display: none;
	cursor: pointer;
	line-height: 20px;
}

section.featured-area .replay-controls .replay-control {
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
}

section.featured-area .replay-controls .icon-replay {
	font-size: 30px;
}

section.featured-area .replay-controls .video-time {
	font-size: 20px;
	font-style: italic;
}

section.featured-area .replay-controls .instructions {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: 3px;
}

section.featured-area button.slick-arrow {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
	display: none !important;
	background: url(/fileadmin/res/assets/svg/arrow-with-background.svg) no-repeat center;
	text-indent: -9999px;
	outline: none;
}

@media screen and (min-width: 720px) {
	section.featured-area button.slick-arrow {
		display: block !important;
	}
}

section.featured-area button.slick-arrow.slick-disabled {
	display: none !important;
}

section.featured-area button.slick-next {
	right: 25px;
}

section.featured-area button.slick-prev {
	left: 25px;
	transform: rotate(180deg);
	transform-origin: 50% 25%;
}

section.featured-area .slick-dots {
	position: absolute;
	top: 217px;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style-type: none;
	text-align: center;
	height: 8px;
}

@media screen and (min-width: 720px) {
	section.featured-area .slick-dots {
		top: auto;
		bottom: 40px;
	}
}

section.featured-area .slick-dots li {
	display: inline-block;
	line-height: 0;
	vertical-align: top;
}

section.featured-area .slick-dots li button {
	height: 6px;
	width: 30px;
	padding: 0;
	margin: 0 5px;
	text-indent: -9999px;
	background-color: #999;
	opacity: 0.5;
	outline: 0;
}

@media screen and (min-width: 720px) {
	section.featured-area .slick-dots li button {
		width: 80px;
		background-color: #fff;
	}
}

section.featured-area .slick-dots li.slick-active button {
	opacity: 1;
}

@media screen and (max-width: 719px) {
	section.featured-area.mobile-full-takeover .copy-container {
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		opacity: 1;
		transition: opacity 0.5s ease-in-out;
		background: rgba(0, 0, 0, 0.5);
	}
	section.featured-area.mobile-full-takeover .carousel-copy {
		position: absolute;
		right: 0;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		margin: 0 auto;
		color: #fff;
	}
	section.featured-area.mobile-full-takeover .carousel-copy p {
		color: inherit;
	}
	section.featured-area.mobile-full-takeover .vjs-crop,
	section.featured-area.mobile-full-takeover .vjs-crop video.vjs-tech {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
		width: auto;
		height: auto;
		min-width: 100%;
		min-height: 100%;
	}
	section.featured-area.mobile-full-takeover .slick-dots {
		top: auto;
		bottom: 40px;
	}
	section.featured-area.mobile-full-takeover .slick-dots li {
		display: inline-block;
	}
	section.featured-area.mobile-full-takeover .slick-dots li button {
		height: 6px;
		width: 40px;
		padding: 0;
		margin: 0 5px;
		text-indent: -9999px;
		background-color: #fff;
		opacity: 0.5;
		outline: 0;
	}
	section.featured-area.mobile-full-takeover .slick-dots li.slick-active button {
		opacity: 1;
	}
}

@media screen and (min-width: 720px) {
	section.featured-area {
		height: calc(100vh - 60px);
	}
	section.featured-area .carousel-element {
		height: calc(100vh - 60px);
	}
	section.featured-area.short {
		max-height: 650px;
	}
	section.featured-area.short .carousel-element {
		max-height: 650px;
	}
	section.featured-area .carousel-copy {
		position: absolute;
		right: 0;
		left: 0;
		margin: 0 auto;
		width: 600px;
		color: #fff;
	}
	section.featured-area .carousel-copy p {
		color: inherit;
	}
	section.featured-area .carousel-copy.position-top-left,
	section.featured-area .carousel-copy.position-top-center,
	section.featured-area .carousel-copy.position-top-right {
		top: 65px;
	}
	section.featured-area .carousel-copy.position-center-left,
	section.featured-area .carousel-copy.position-center-center,
	section.featured-area .carousel-copy.position-center-right {
		top: 50%;
		transform: translateY(-50%);
	}
	section.featured-area .carousel-copy.position-bottom-left,
	section.featured-area .carousel-copy.position-bottom-center,
	section.featured-area .carousel-copy.position-bottom-right {
		bottom: 65px;
	}
	section.featured-area .carousel-copy.position-top-left,
	section.featured-area .carousel-copy.position-center-left,
	section.featured-area .carousel-copy.position-bottom-left {
		text-align: left;
		left: 90px;
		margin-left: 0;
	}
	section.featured-area .carousel-copy.position-top-center,
	section.featured-area .carousel-copy.position-center-center,
	section.featured-area .carousel-copy.position-bottom-center {
		text-align: center;
	}
	section.featured-area .carousel-copy.position-top-right,
	section.featured-area .carousel-copy.position-center-right,
	section.featured-area .carousel-copy.position-bottom-right {
		text-align: right;
		right: 90px;
		margin-right: 0;
	}
	section.featured-area .copy-container {
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		opacity: 1;
		transition: opacity 0.5s ease-in-out;
		pointer-events: none;
	}
	section.featured-area .copy-container.video-interact {
		opacity: 0;
	}
	section.featured-area .copy-container.gradient-enabled {
		background: transparent;
		/* Old browsers */
		background: -moz-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
		/* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(100%, rgba(0, 0, 0, 0.6)));
		/* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
		/* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
		/* Opera 11.10+ */
		background: -ms-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
		/* IE10+ */
		background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
		/* W3C */
		-ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffffff, endColorstr=#000000)";
	}
	section.featured-area .copy-container.gradient-full {
		background: rgba(0, 0, 0, 0.5);
	}
	section.featured-area .copy-container.gradient-top {
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 50%);
	}
	section.featured-area .replay-controls {
		width: 590px;
		height: 42px;
		padding: 12px 20px 26px;
		line-height: 52px;
	}
	section.featured-area .replay-controls .icon-replay {
		font-size: 52px;
	}
	section.featured-area .replay-controls .video-time {
		font-size: 40px;
	}
	section.featured-area .replay-controls .instructions {
		font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
		font-style: normal;
		font-weight: 400;
		text-transform: uppercase;
		font-size: 40px;
		letter-spacing: 6px;
	}
	section.featured-area .volume-controls {
		font-size: 52px;
		top: 30px;
		right: 50px;
		height: 50px;
		width: 50px;
	}
	section.featured-area div.title-big {
		font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
		font-style: normal;
		font-weight: 400;
		text-transform: uppercase;
		font-size: 50px;
		letter-spacing: 6px;
	}
	section.featured-area div.title-big em {
		font-family: 'minion-pro', serif;
		text-transform: lowercase;
		font-size: 44px;
		letter-spacing: 6px;
		font-weight: 200;
		font-style: italic;
	}
	section.featured-area p.subtitle-big {
		font-size: 26px;
		line-height: 28px;
		letter-spacing: 3px;
	}
	section.featured-area p.subtitle-big span.brand {
		font-size: 20px;
		letter-spacing: 4px;
	}
}

@media screen and (min-width: 1024px) {
	section.featured-area {
		height: calc(100vh - 136px);
	}
	section.featured-area .carousel-element {
		height: calc(100vh - 136px);
	}
}

body.dealer header.primary .main-sub-text {
	display: none;
}

body.dealer header.primary .brand-header {
	background-color: #000;
	color: #fff;
	text-align: center;
}

body.dealer header.primary .brand-header .ss-menu-button {
	position: absolute;
	display: inline-block;
	top: 9px;
	right: 10px;
}

body.dealer header.primary .brand-header .ss-menu-button span {
	background: #fff;
}

@media screen and (min-width: 1024px) {
	body.dealer header.primary .brand-header .ss-menu-button {
		display: none;
	}
}

@media screen and (max-width: 1023px) {
	body.dealer header.primary .brand-header .ss-logo {
		position: absolute;
		display: inline-block;
		top: 10px;
		left: 10px;
		margin: 0;
		background-image: url(/fileadmin/res/assets/svg/ss-lyre2-white.svg);
	}
	body.dealer header.primary .brand-header .dealer-logo {
		display: none;
	}
}

@media screen and (min-width: 1024px) {
	body.dealer header.primary .brand-header {
		background: #fff;
		color: #000;
	}
}

@media screen and (min-width: 1024px) {
	body.dealer header.primary {
		top: 36px;
		height: 156px;
	}
	body.dealer header.primary .brand-header {
		height: 85px;
		padding: 10px 15px;
	}
	body.dealer header.primary .brand-header .main-sub-text {
		display: block;
		font-style: italic;
		letter-spacing: 2px;
		font-size: 13px;
		padding: 10px 0;
	}
	body.dealer header.primary .ss-logo.lyre {
		display: none;
	}
	body.dealer header.primary .ss-logo.dealer-logo {
		display: block;
		position: static;
		/*width: 100%;*/
		height: 100%;
	}
	body.dealer header.primary .ss-logo.dealer-logo.with-sub-text {
		height: calc(100% - 27px);
	}
	body.dealer header.primary.sticky {
		height: 172px;
		top: -50px;
	}
	body.dealer header.primary.sticky .main-sub-text {
		display: none;
	}
	body.dealer header.primary.sticky nav.main-bar {
		top: 71px;
	}
}

body.dealer .geo-bar ul.dealer-links {
	margin: 0;
	padding: 0;
	font-size: 14px;
}

body.dealer .geo-bar ul.dealer-links li {
	font-family: 'minion-pro', serif;
	font-size: 12px;
	letter-spacing: 2px;
	text-rendering: optimizeSpeed;
	font-variant-ligatures: no-common-ligatures;
	text-transform: none;
	list-style-type: none;
}

body.dealer .geo-bar ul.dealer-links li a {
	text-transform: uppercase;
	font-size: 13px;
}

@media screen and (min-width: 1024px) {
	body.dealer .geo-bar ul.dealer-links {
		display: none;
	}
}

body.dealer #main {
	margin: 0;
}

@media screen and (min-width: 1024px) {
	body.dealer #main {
		margin: 192px auto 0;
	}
}

body.dealer .mobile-subnav {
	margin: 57px 0 0 0;
	padding: 2px 0;
	background-color: #000;
	color: #fff;
	text-align: center;
	line-height: 20px;
}

body.dealer .mobile-subnav li {
	list-style-type: none;
	display: inline-block;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 13px;
	letter-spacing: 2px;
	margin: 0 5px;
}

body.dealer .mobile-subnav span[class^="icon-"],
body.dealer .mobile-subnav span[class*=" icon-"] {
	font-size: 13px;
	line-height: 13px;
	vertical-align: text-top;
}

body.dealer .mobile-subnav a {
	border: none;
}

@media screen and (min-width: 1024px) {
	body.dealer .mobile-subnav {
		display: none;
	}
}

body.dealer .mobile-locations {
	position: fixed;
	top: 40px;
	z-index: 1000;
	color: #fff;
	width: 100%;
	text-align: center;
	font-family: 'minion-pro', serif;
	text-transform: lowercase;
	font-size: 12px;
	letter-spacing: 2px;
	font-weight: 200;
	font-style: italic;
	text-transform: none;
}

@media screen and (min-width: 1024px) {
	body.dealer .mobile-locations {
		display: none;
	}
}

body.dealer .dealer-banner {
	display: block;
	position: fixed;
	left: 0;
	right: 0;
	margin: 0 60px;
	top: 14px;
	text-align: center;
	color: #fff;
	z-index: 250;
}

body.dealer .dealer-banner .dealer-name {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 19px;
	letter-spacing: 2px;
}

@media screen and (min-width: 1024px) {
	body.dealer .dealer-banner .dealer-name {
		display: inline-block;
	}
}

body.dealer .dealer-banner .locations {
	font-family: 'minion-pro', serif;
	text-transform: lowercase;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 200;
	font-style: italic;
	text-transform: none;
}

body.dealer .dealer-banner .locations a {
	border: none;
}

body.dealer .dealer-banner ul.dealer-links {
	margin: 1px 0;
	padding: 0;
	display: inline-block;
}

body.dealer .dealer-banner ul.dealer-links li {
	list-style-type: none;
	display: inline-block;
	margin: 0 5px;
	line-height: 20px;
}

body.dealer .dealer-banner select {
	background-color: #666;
	color: #fff;
	margin: 2px;
}

body.dealer .dealer-banner .locations-and-contact {
	display: none;
	float: right;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

body.dealer .dealer-banner .locations-and-contact span[class^="icon-"],
body.dealer .dealer-banner .locations-and-contact span[class*=" icon-"] {
	font-size: 17px;
	vertical-align: text-top;
}

body.dealer .dealer-banner .locations-and-contact a {
	border: none;
}

@media screen and (min-width: 1024px) {
	body.dealer .dealer-banner .locations-and-contact {
		display: block;
	}
}

@media screen and (min-width: 1024px) {
	body.dealer .dealer-banner {
		background: #000;
		text-align: left;
		top: 0;
		height: 22px;
		padding: 7px 30px;
		margin: 0;
	}
	body.dealer .dealer-banner .dealer-title {
		float: left;
	}
}

body.dealer .social-holster .social {
	float: right;
}

@media screen and (max-width: 1023px) {
	.desktop-only {
		display: none !important;
	}
}

@media screen and (min-width: 1024px) {
	.mobile-only {
		display: none !important;
	}
}

footer {
	width: 100%;
	background: #f9f9f9;
	clear: left;
}

footer a {
	text-decoration: none;
	color: rgba(0, 0, 0, 0.5);
	border: none;
}

footer a:hover {
	text-decoration: underline;
	color: rgba(0, 0, 0, 0.5);
}

footer li {
	padding: 5px 0;
}

@media screen and (min-width: 1024px) {
	footer li {
		display: inline-block;
		padding: 15px 15px 5px 0;
	}
}

footer .footer-holster {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 30px 120px 30px;
	overflow: auto;
}

footer .footer-holster hr {
	width: inherit;
	margin: 20px 0;
	height: 1px;
	border: none;
	background-color: #ccc;
}

footer .footer-holster .social-holster {
	float: right;
	width: 100%;
	margin: 0 0 5px;
}

@media screen and (min-width: 1024px) {
	footer .footer-holster .social-holster {
		width: 250px;
	}
}

footer .footer-holster .social {
	height: 30px;
	width: 30px;
	background: transparent;
	float: left;
	margin: 10px 20px 10px 0;
	font-size: 32px;
}

@media screen and (min-width: 1024px) {
	footer .footer-holster .social {
		margin: 10px 0 10px 20px;
	}
}

footer .footer-holster .copyright {
	float: left;
	color: rgba(0, 0, 0, 0.2);
	max-width: 570px;
}

footer .footer-holster .copyright a {
	color: rgba(0, 0, 0, 0.2);
}


/**
 * FORM STUFF
 */

section.entry-field {
	background: #f2f2f2;
	padding: 40px 0;
	clear:both;
}

section.entry-field div.description-container {
	margin: 0 auto;
	max-width: 300px;
}

@media screen and (min-width: 480px) {
	section.entry-field div.description-container {
		max-width: 460px;
	}
}

@media screen and (min-width: 720px) {
	section.entry-field div.description-container {
		max-width: 650px;
	}
}

@media screen and (min-width: 1024px) {
	section.entry-field div.description-container {
		max-width: 700px;
	}
}

section.entry-field p.form-error {
	color: #c22026;
}

section.entry-field fieldset {
	width: 312px;
	margin: 10px auto;
	border: 0;
	padding: 0;
	/*overflow: hidden;*/
}

@media screen and (min-width: 1024px) {
	section.entry-field fieldset {
		width: 648px;
	}
	section.entry-field fieldset .newsletter {
		width: 300px;
	}
}

section.entry-field .consent {
	margin: 10px auto 20px auto;
	position: relative;
}

section.entry-field .consent p {
	text-align: left;
	text-transform: uppercase;
	margin: -25px 20px 0 35px;
	font-size: 10px;
	line-height: 14px;
}

section.entry-field .consent p a {
	border: none;
	text-decoration: underline;
}

section.entry-field input[type="submit"] {
	padding: 10px;
	width: calc(100% - 20px);
	display: block;
	margin: 0 auto;
	max-width: 260px;
}

section.entry-field .dealer-form-quote {
	text-align: center;
	margin: 0 auto;
	max-width: 300px;
}

@media screen and (min-width: 480px) {
	section.entry-field .dealer-form-quote {
		max-width: 460px;
	}
}

@media screen and (min-width: 720px) {
	section.entry-field .dealer-form-quote {
		max-width: 650px;
	}
}

@media screen and (min-width: 1024px) {
	section.entry-field .dealer-form-quote {
		max-width: 700px;
	}
}

section.entry-field .input-wrapper {
	height: auto;
	position: relative;
	width: 312px;
	margin: 15px auto;
}

@media screen and (min-width: 1024px) {
	section.entry-field .input-wrapper {
		float: left;
		margin: 5px;
	}
}

section.entry-field h2,
section.entry-field h3 {
	margin-top: 0;
	font-size: 40px;
	text-align: center;
	margin-bottom: 10px;
	letter-spacing: 6px;
}

section.entry-field h2 em,
section.entry-field h3 em {
	font-size: 40px;
}

section.entry-field div.post-submit-error,
section.entry-field div.post-submit-success {
	padding: 20px 0 0 0;
}

section.entry-field div.post-submit-error p.form-error,
section.entry-field div.post-submit-success p.form-error {
	text-align: center;
}

section.entry-field select {
	width: 312px;
	height: 41px;
	background: #fff;
}

section.entry-field select:focus {
	border: 1px solid #c1c1c1;
}

section.entry-field select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}

section.entry-field select::-ms-expand {
	display: none;
}

section.entry-field .drop-down {
	width: 312px;
	display: block;
	position: relative;
}

section.entry-field .drop-down .arrow {
	position: absolute;
	cursor: pointer;
	top: 15px;
	right: 30px;
	width: 0.4em;
	height: 0.4em;
	border-right: 0.2em solid black;
	border-top: 0.2em solid black;
	transform: rotate(135deg);
	pointer-events: none;
}

section.entry-field .checkbox-holder #consent-checkbox {
	visibility: hidden;
	width: 20px;
}

@media screen and (min-width: 1024px) {
	section.entry-field .checkbox-holder #consent-checkbox {
		width: 20px;
	}
}

section.entry-field .checkbox-holder label {
	display: block;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #e1e1e1;
}

section.entry-field .checkbox-holder label:after {
	content: '';
	width: 9px;
	height: 5px;
	position: absolute;
	top: 4px;
	left: 4px;
	border: 3px solid black;
	border-top: none;
	border-right: none;
	background: transparent;
	opacity: 0;
	transform: rotate(-45deg);
}

section.entry-field .checkbox-holder label:hover::after {
	opacity: 0.5;
}

@media screen and (min-width: 1024px) {
	section.entry-field .checkbox-holder label {
		margin: 0 0 0 5px;
	}
}

section.entry-field .checkbox-holder.clicked label:after {
	opacity: 0.5;
}

section.entry-field .checkbox-holder input[type=checkbox]:checked+label:after {
	opacity: 1 !important;
}

section.entry-field .checkbox-holder .failed {
	text-align: center;
}



section.list-view {
	width: 100%;
}

section.list-view ul.thumbnail-list,
section.list-view div.pagination {
	margin: 0 auto;
	max-width: 300px;
}

@media screen and (min-width: 480px) {
	section.list-view ul.thumbnail-list,
	section.list-view div.pagination {
		max-width: 440px;
	}
}

@media screen and (min-width: 720px) {
	section.list-view ul.thumbnail-list,
	section.list-view div.pagination {
		max-width: 650px;
	}
}

@media screen and (min-width: 1024px) {
	section.list-view ul.thumbnail-list,
	section.list-view div.pagination {
		max-width: 720px;
	}
}

section.list-view div.pagination {
	position: relative;
	text-align: center;
	height: 25px;
}

section.list-view div.pagination a.prev-page,
section.list-view div.pagination a.next-page {
	position: absolute;
	font-size: 26px;
	line-height: 18px;
	border: 0;
}

section.list-view div.pagination a.prev-page {
	left: 0;
	top: 0;
}

section.list-view div.pagination a.next-page {
	right: 0;
	top: 0;
}

section.list-view ul.thumbnail-list {
	padding: 0;
	overflow: hidden;
}

section.list-view ul.thumbnail-list li {
	float: left;
	width: 100%;
	list-style-type: none;
	padding: 20px 0;
	margin: 0;
	border-bottom: 2px solid #f9f9f9;
}

section.list-view ul.thumbnail-list a.image-link {
	border: none;
}

section.list-view ul.thumbnail-list img.thumbnail {
	float: right;
	width: 80px;
	height: 80px;
	margin: 0 0 0 15px;
}

@media screen and (min-width: 720px) {
	section.list-view ul.thumbnail-list img.thumbnail {
		width: 125px;
		height: 125px;
	}
}

@media screen and (min-width: 1024px) {
	section.list-view ul.thumbnail-list img.thumbnail {
		width: 175px;
		height: 175px;
	}
}

section.list-view ul.thumbnail-list h4 {
	font-size: 18px;
	letter-spacing: 1px;
	font-family: minion-pro, serif;
	font-weight: 400;
	margin: 0;
}

section.list-view ul.thumbnail-list h4 a {
	border: none;
}

section.list-view ul.thumbnail-list p {
	font-size: 14px;
	line-height: 24px;
	margin: 10px 0 20px;
}

section.list-view ul.thumbnail-list p.publication-date {
	margin: 0 0 10px 0;
}

section.list-view ul.thumbnail-list.thumbnail-size-large img.thumbnail {
	width: 100px;
	height: 100px;
}

@media screen and (min-width: 720px) {
	section.list-view ul.thumbnail-list.thumbnail-size-large img.thumbnail {
		width: 175px;
		height: 175px;
	}
}

@media screen and (min-width: 1024px) {
	section.list-view ul.thumbnail-list.thumbnail-size-large img.thumbnail {
		width: 250px;
		height: 250px;
	}
}

section.list-view ul.thumbnail-list.thumbnail-size-large-stack img.thumbnail {
	width: 100%;
	height: auto;
	float: none;
	margin: 15px 0;
}

@media screen and (min-width: 720px) {
	section.list-view ul.thumbnail-list.thumbnail-size-large-stack img.thumbnail {
		float: right;
		margin: 0 0 0 15px;
		width: 175px;
		height: 175px;
	}
}

@media screen and (min-width: 1024px) {
	section.list-view ul.thumbnail-list.thumbnail-size-large-stack img.thumbnail {
		width: 250px;
		height: 250px;
	}
}

section.list-view ul.thumbnail-list.thumbnail-size-hide img.thumbnail {
	display: none;
}

section.notice {
	padding: 15px 10px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 2px;
	font-size: 12px;
	background-color: #f7f7f7;
}

.hide {
	display: none;
}

@keyframes pulse {
	to {
		opacity: 0.2;
	}
}

#scroll-suggest {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 40px;
	background-color: #000;
	z-index: 1000;
	cursor: pointer;
	opacity: 0;
	animation: pulse 2s 10 alternate;
	animation-delay: 5s;
}

#scroll-suggest img {
	display: block;
	margin: 0 auto;
	transform: rotate(90deg);
	width: 80%;
}



section.login-form form {
	max-width: 350px;
	margin: 0 auto;
}

section.login-form input {
	width: 298px;
}


@media screen and (max-width: 1023px) {
	.desktop-only {
		display: none !important;
	}
}

@media screen and (min-width: 1024px) {
	.mobile-only {
		display: none !important;
	}
}

header.primary {
	height: 60px;
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	z-index: 200;
	-webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1023px) {
	header.primary {
		background: none;
	}
}

header.primary .brand-header {
	height: 30px;
	background: #fff;
	position: relative;
	z-index: 20;
	padding: 15px;
	pointer-events: none;
}

header.primary .ss-logo {
	height: 30px;
	width: 30px;
	padding: 0;
	margin: auto;
	pointer-events: auto;
	cursor: pointer;
	background-image: url(/fileadmin/res/assets/svg/ss-lyre2.svg);
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

header.primary .geo-bar {
	margin: 50px 0 0 50px;
}

header.primary .geo-bar a.description {
	font-family: 'minion-pro', serif;
	font-size: 11px;
	letter-spacing: 2px;
	text-rendering: optimizeSpeed;
	font-variant-ligatures: no-common-ligatures;
	text-transform: uppercase;
	float: left;
	color: #333;
	padding: 4px 0 0 0;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

header.primary .geo-bar a.description:hover {
	color: #000;
}

header.primary .geo-icon {
	cursor: pointer;
	float: left;
	margin: 0 20px 0 0;
	font-size: 22px;
	color: #333;
}

header.primary .navigation-find-location {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1000;
	height: 150px;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	-webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
	display: none;
}

header.primary .navigation-find-location.opened {
	display: block;
}

header.primary .navigation-find-location section {
	margin: 0;
}

header.primary .navigation-find-location .find-location input[type="search"] {
	width: 100%;
	float: none;
	margin-bottom: 10px;
	box-sizing: border-box;
}

header.primary .navigation-find-location .location-holster .ss-button {
	float: none;
	margin: 0 auto;
}

header.primary .close-popup {
	height: 30px;
	width: 30px;
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	cursor: pointer;
	z-index: 1;
}

header.primary .close-popup span {
	position: absolute;
	top: 7px;
	left: 15px;
	height: 20px;
	width: 2px;
	background: rgba(0, 0, 0, 1);
	display: block;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

header.primary .close-popup span:last-child {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

header.primary div.ss-tooltip,
header.primary a.ss-tooltip {
	position: relative;
	display: inline-block;
}

header.primary div.ss-tooltip span.ss-tooltip-data,
header.primary a.ss-tooltip span.ss-tooltip-data {
	position: absolute;
	visibility: hidden;
	width: auto;
	background: #efefef;
	height: 30px;
	line-height: 30px;
	letter-spacing: 2px;
	border-radius: 7px;
	padding: 0 15px;
	opacity: 0;
	display: block;
	white-space: nowrap;
	-webkit-transition: opacity 150ms ease-in-out;
	-moz-transition: opacity 150ms ease-in-out;
	-ms-transition: opacity 150ms ease-in-out;
	-o-transition: opacity 150ms ease-in-out;
	transition: opacity 150ms ease-in-out;
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
}

header.primary div.ss-tooltip span.ss-tooltip-data:after,
header.primary a.ss-tooltip span.ss-tooltip-data:after {
	content: '';
	position: absolute;
	bottom: 100%;
	width: 0;
	height: 0;
	border-bottom: 8px solid #efefef;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}

html.no-touchevents header.primary div:hover.ss-tooltip span.ss-tooltip-data,
html.no-touchevents header.primary a:hover.ss-tooltip span.ss-tooltip-data {
	visibility: visible;
	z-index: 999;
	opacity: 1;
	top: 40px;
}

header.primary div.loc.ss-tooltip span.ss-tooltip-data,
header.primary a.loc.ss-tooltip span.ss-tooltip-data {
	right: 0;
}

header.primary div.loc.ss-tooltip span.ss-tooltip-data:after,
header.primary a.loc.ss-tooltip span.ss-tooltip-data:after {
	right: 24px;
}

header.primary div.lang.ss-tooltip span.ss-tooltip-data,
header.primary a.lang.ss-tooltip span.ss-tooltip-data {
	right: 0;
}

header.primary div.lang.ss-tooltip span.ss-tooltip-data:after,
header.primary a.lang.ss-tooltip span.ss-tooltip-data:after {
	right: 24px;
}

header.primary .ss-menu-button {
	height: 30px;
	width: 40px;
	padding: 3px 0 0;
	float: left;
	pointer-events: all;
	cursor: pointer;
}

header.primary .ss-menu-button span {
	height: 2px;
	width: 25px;
	background: #000;
	margin: 5px auto;
	display: block;
}

header.primary.active {
	height: 100%;
	overflow-y: scroll;
	background:#fff;
}

header.primary.active .main-bar {
	top: 0;
}

header.primary .ss-search {
	margin: 0 0 0 50px;
	height: 50px;
	width: calc(100% - 100px);
	background: url(/fileadmin/res/assets/svg/search.svg), #fff;
	background-position: 0 15px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	cursor: pointer;
	-webkit-transition: all 350ms ease-in-out;
	-moz-transition: all 350ms ease-in-out;
	-ms-transition: all 350ms ease-in-out;
	-o-transition: all 350ms ease-in-out;
	transition: all 350ms ease-in-out;
}

header.primary .ss-search:hover {
	opacity: 1;
}

header.primary input {
	-webkit-appearance: none;
}

header.primary input[type="search"] {
	height: 50px;
	width: 100%;
	border: none;
	margin: 0 0 0 20px;
	padding: 13px 10px 7px 0;
}

header.primary input[type="search"]:focus {
	outline: none;
}

@media screen and (min-width: 1024px) {
	header.primary {
		height: 136px;
		position: absolute;
		top: inherit;
	}
	header.primary .brand-header {
		background: transparent;
		height: 60px;
		padding: 10px 15px 15px 15px;
	}
	header.primary .geo-bar {
		height: 30px;
		width: auto;
		min-width: 100px;
		background: transparent;
		padding: 7px 30px 20px 0;
		margin: 0;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10;
		-webkit-transition: all 250ms ease-in-out;
		-moz-transition: all 250ms ease-in-out;
		-ms-transition: all 250ms ease-in-out;
		-o-transition: all 250ms ease-in-out;
		transition: all 250ms ease-in-out;
	}
	header.primary .geo-icon {
		float: left;
		margin: 0 10px 0 0;
	}
	header.primary .navigation-find-location {
		width: 400px;
		height: auto;
	}
	header.primary .navigation-find-location section {
		margin: 0;
		padding: 20px;
		width: calc(100% - 40px);
	}
	header.primary .navigation-find-location .location-holster {
		width: 300px;
	}
	header.primary div.loc.ss-tooltip span.ss-tooltip-data:after,
	header.primary a.loc.ss-tooltip span.ss-tooltip-data:after {
		right: 15px;
	}
	header.primary div.lang.ss-tooltip span.ss-tooltip-data:after,
	header.primary a.lang.ss-tooltip span.ss-tooltip-data:after {
		right: 14px;
	}
	header.primary .ss-logo {
		height: 58px;
		width: 266px;
		opacity: 1;
		background-image: url(/fileadmin/res/assets/svg/ss-logo2.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100% 100%;
	}
	header.primary .left-lyre {
		height: 136px;
		width: 107px;
		background: #fff;
		border-right: 1px solid rgba(0, 0, 0, 0.05);
		opacity: 0;
		background-image: url(/fileadmin/res/assets/svg/ss-lyre2.svg);
		background-position: center 70px;
		background-repeat: no-repeat;
		background-size: 38%;
		position: absolute;
		bottom: 0;
		left: -107px;
		z-index: 240;
		-webkit-transition: all 200ms ease-in-out;
		-moz-transition: all 200ms ease-in-out;
		-ms-transition: all 200ms ease-in-out;
		-o-transition: all 200ms ease-in-out;
		transition: all 200ms ease-in-out;
	}
	header.primary .ss-menu-button {
		display: none;
	}
	header.primary .main-holster {
		width: auto;
		margin: 0 auto;
	}
	header.primary.sticky {
		position: fixed;
		top: -50px;
	}
	header.primary.sticky .geo-bar {
		padding: 7px 30px 8px 0;
		height: 20px;
	}
	header.primary.sticky .left-lyre {
		opacity: 1;
		left: 0;
	}
	header.primary.sticky .main-bar {
		position: fixed;
		top: 35px;
	}
	header.primary.sticky .ss-logo {
		top: -20px;
		opacity: 0;
	}
	header.primary .ss-search {
		height: 50px;
		margin: 0;
		position: absolute;
		bottom: -1px;
		background-position: 10px 15px;
	}
	header.primary .open input[type="search"] {
		opacity: 1;
	}
	header.primary .close-search {
		height: 20px;
		width: 70px;
		right: - 300px;
		bottom: 0;
		padding: 15px 10px;
		position: absolute;
		cursor: pointer;
		-webkit-transition: all 350ms ease-in-out;
		-moz-transition: all 350ms ease-in-out;
		-ms-transition: all 350ms ease-in-out;
		-o-transition: all 350ms ease-in-out;
		transition: all 350ms ease-in-out;
	}
	header.primary .open.close-search {
		right: 0;
	}
	header.primary .close-search span {
		position: absolute;
		top: 13px;
		height: 12px;
		width: 12px;
		background: transparent;
		margin: 5px auto;
		display: block;
		border-right: 2px solid rgba(0, 0, 0, 0.2);
		border-top: 2px solid rgba(0, 0, 0, 0.2);
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

@media screen and (min-width: 1200px) {
	header.primary .main-holster {
		width: auto;
		max-width: 960px;
		margin: 0 auto;
	}
}


/* start nav */

header.primary .main-holster {
	width: auto;
	max-width: 960px;
	margin: 0 auto;
}

nav.main-bar {
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 0;
	position: relative;
	top: -550px;
	z-index: 200;
}

nav.main-bar a {
	border: none;
}

header a {
	border: none;
}





@media screen and (min-width: 1024px) {
	nav.main-bar {
		top: 0;
		height: 50px;
		padding: 0;
		border-top: 1px solid rgba(0, 0, 0, 0.05);
	}
}


/* end nav */

#languageSwitch {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
}

#languageSwitch.empty .currentLanguage p:after {
	display: none;
}

#languageSwitch.empty .languageSelection {
	display: none;
}

#languageSwitch p {
	color: #000;
	letter-spacing: 1px;
	font-size: 16px;
}

#languageSwitch .currentLanguage {
	width: 100%;
	height: 57px;
	text-align: center;
	padding-top: 33px;
}

#languageSwitch .currentLanguage p:after {
	position: absolute;
	left: 26px;
	margin-left: -2px;
	bottom: 18px;
	content: '';
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #000;
	display: block;
}

#languageSwitch:hover .languageSelection {
	padding-top: 10px;
	height: auto;
	opacity: 0.9;
	transition: opacity ease 0.3s, height ease 1ms 0.3s;
}

#languageSwitch:hover .currentLanguage p:after {
	display: none;
}

#languageSwitch .languageSelection {
	display: block;
	background-color: #fff;
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: opacity ease 0.3s;
}

#languageSwitch .languageSelection li {
	display: block;
	height: 25px;
	padding-top: 10px;
	padding-bottom: 10px;
}

#languageSwitch .languageSelection li a {
	display: block;
	position: relative;
	top: 0;
	right: 0;
	padding: 0;
	font-size: 16px;
	color: #000;
	line-height: 16px;
}

.pace {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pace .pace-progress {
	background: rgba(0, 0, 0, 1);
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 2px;
}

.pace .pace-progress-inner {
	display: block;
	position: absolute;
	right: 0px;
	width: 100px;
	height: 100%;
	opacity: 1;
	-webkit-transform: rotate(3deg) translate(0px, -4px);
	-moz-transform: rotate(3deg) translate(0px, -4px);
	-ms-transform: rotate(3deg) translate(0px, -4px);
	-o-transform: rotate(3deg) translate(0px, -4px);
	transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
	opacity: 0;
	display: block;
	position: fixed;
	z-index: 2000;
	top: 15px;
	right: 0;
	margin: auto;
	left: 0;
	width: 19px;
	height: 19px;
	padding: 10px;
	border-radius: 30px;
	background: #fff;
	-webkit-animation: pace-spinner 400ms linear infinite;
	-moz-animation: pace-spinner 400ms linear infinite;
	-ms-animation: pace-spinner 400ms linear infinite;
	-o-animation: pace-spinner 400ms linear infinite;
	animation: pace-spinner 400ms linear infinite;
}

.pace .pace-activity .pace-spinner {
	width: 15px;
	height: 15px;
	border: solid 2px transparent;
	border-top-color: black;
	border-left-color: black;
	border-radius: 10px;
}

.pace-inactive {
	display: none;
}

@-webkit-keyframes pace-spinner {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes pace-spinner {
	0% {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes pace-spinner {
	0% {
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-ms-keyframes pace-spinner {
	0% {
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes pace-spinner {
	0% {
		transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.popup {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(51, 51, 51, 0.4);
	z-index: 30;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.popup.active {
	visibility: visible;
	opacity: 1;
}

.popup .popup-header {
	text-align: center;
}

.popup .popup-body {
	padding: 0 40px 40px 40px;
	z-index: 2;
	position: fixed;
	background: #f2f2f2;
	width: 80%;
	max-width: 630px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 2px solid #ddd;
}

@media screen and (max-width: 1023px) {
	.popup .popup-body {
		top: 62%;
	}
}

.popup .popup-body img.nl-popup-logo {
	width: 294px;
	height: 72px;
}


.popup div.popup-close {
	height: 30px;
	width: 30px;
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	cursor: pointer;
	z-index: 2;
}

.popup div.popup-close span {
	position: absolute;
	top: 7px;
	left: 15px;
	height: 20px;
	width: 2px;
	background: rgba(0, 0, 0, 1);
	display: block;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.popup div.popup-close span:last-child {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.popup .popup-copy {
	margin: 0 0 20px 0;
}

.popup .popup-copy p {
	text-align: center;
}

.popup .popup-input {
	width: 100%;
	height: 70px;
}

.popup .popup-input .entry-field {
	display: inline-block;
	width: 80%;
	max-width: 312px;
}

.popup .popup-input .entry-field input {
	width: calc(100% - 50px);
}

.popup .popup-input label.failed {
	width: auto;
	text-align: center;
}

.popup a.deemphasize {
	color: #999;
}

form.newsletter-form {
	text-align: center;
}

form.newsletter-form .popup-input {
	height: auto;
	padding-bottom: 10px;
}


/**
 * new secondary navigation
 */

ul.secondary-navigation {
	margin: 0 auto;
	padding: 0;
	text-align: center;
	background-color: #f9f9f9;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	vertical-align: top;
	display: inline-block;
	width: 100%;
}

ul.secondary-navigation li {
	display: inline-block;
	padding: 5px 0 2px 0;
	margin: 0 20px;
	border-bottom: 3px solid transparent;
	list-style-type: none;
	-webkit-transition: border 150ms ease-in-out;
	-moz-transition: border 150ms ease-in-out;
	-ms-transition: border 150ms ease-in-out;
	-o-transition: border 150ms ease-in-out;
	transition: border 150ms ease-in-out;
}

ul.secondary-navigation li.current,
ul.secondary-navigation li:hover {
	border-bottom: 3px solid #000;
}

ul.secondary-navigation a {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 2px;
	border: none;
}

ul.secondary-navigation a:hover {
	color: inherit;
}

section.segmented {
	text-align: center;
	width: 100%;
	overflow: hidden;
	padding-top: 80px;
}

section.segmented .button {
	padding: 10px;
	display: block;
	width: calc(100% - 20px);
	margin: 0 auto;
}

section.segmented h3 {
	margin: 20px auto;
	color: #333;
	text-align: center;
}

section.segmented .segmented-wrapper {
	margin: 0 auto;
	text-align: center;
	display: inline-block;
	width: initial;
}

section.segmented .segmented-wrapper hr:first-child {
	margin: 60px auto;
}

section.segmented .segmented-header {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 28px;
	letter-spacing: 3px;
	margin: 20px auto;
}

section.segmented .segmented-header em {
	font-family: 'minion-pro', serif;
	text-transform: lowercase;
	font-weight: 200;
	font-style: italic;
}

section.segmented .segmented-block {
	display: block;
	width: 300px;
	margin: 0 auto 80px;
}

section.segmented .segmented-block .segmented-icons {
	height: 50px;
	width: 190px;
	margin: 0 auto;
}

section.segmented .segmented-block .segmented-icons a {
	border: none;
}

section.segmented .segmented-block .introduction {
	min-height: 57px;
}

section.segmented .segmented-block hr {
	width: 80%;
	margin: 20px auto;
	border: none;
	height: 1px;
	background-color: #ccc;
}

@media screen and (min-width: 720px) {
	section.segmented .segmented-block {
		display: inline-block;
		vertical-align: top;
		width: 190px;
		margin: 0 20px;
	}
	section.segmented .segmented-block .introduction {
		min-height: 84px;
	}
}

@media screen and (min-width: 1024px) {
	section.segmented .segmented-block {
		width: 280px;
	}
	section.segmented .segmented-block .introduction {
		min-height: 57px;
	}
}

section.segmented .contact-icon {
	font-size: 45px;
	color: #aaa;
	height: 45px;
	width: 45px;
	margin: 0 20px;
	display: inline-block;
	cursor: pointer;
}

section.segmented .contact-icon:hover {
	color: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 720px) {
	section.segmented .contact-icon {
		margin: 0 15px;
	}
}

@media screen and (min-width: 1024px) {
	section.segmented .contact-icon {
		margin: 0 22px;
	}
}




/* Slider */

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
}

.slick-track:before,
.slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	outline: 0;
	display: none;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

section.tab-details div.detail-content p {
	text-align: left;
}

section.tab-details div.slide-pagination,
section.tab-details div.slide-navigation {
	display: none;
}

section.tab-details section.details-container {
	height: auto;
	margin: 0 auto;
	padding: 15px;
	overflow: auto;
	max-width: 980px;
}

@media screen and (min-width: 1024px) {
	section.tab-details section.details-container.left-img .detail-img {
		float: left;
		width: 50%;
	}
	section.tab-details section.details-container.left-img .detail-content {
		float: left;
		padding: 0 20px;
		width: calc(50% - 40px);
	}
	section.tab-details section.details-container.right-img .detail-img {
		float: right;
		width: 50%;
	}
	section.tab-details section.details-container.right-img .detail-content {
		float: left;
		padding: 0 20px;
		width: calc(50% - 40px);
	}
}

section.tab-details .detail-img {
	width: 100%;
	height: 450px;
	max-width: 600px;
	margin: 0 auto;
}

section.tab-details .detail-content {
	max-width: 600px;
	margin: 0 auto;
}

section.text-callout {
	width: 100%;
	clear: left;
}

section.text-callout div.copy {
	max-width: 300px;
	margin: 0 auto;
	overflow: hidden;
}

@media screen and (min-width: 480px) {
	section.text-callout div.copy {
		max-width: 460px;
	}
}

@media screen and (min-width: 720px) {
	section.text-callout div.copy {
		max-width: 650px;
	}
	section.text-callout div.copy h1 {
		margin: 40px auto;
	}
}

@media screen and (min-width: 1024px) {
	section.text-callout div.copy {
		max-width: 700px;
	}
}

section.text-callout div.copy header {
	width: 80%;
	text-align: center;
	margin: 0 auto;
}

section.text-callout div.copy header h1,
section.text-callout div.copy header h2,
section.text-callout div.copy header h3 {
	margin: 0;
}

section.text-callout div.copy header p {
	line-height: 24px;
}

section.text-callout p {
	line-height: 28px;
}

@media screen and (min-width: 896px) {
	section.text-callout p {
		line-height: 36px;
	}
}

section.text-callout img.left {
	float: left;
	margin: 12px 30px 12px 0;
	width: 100%;
}

@media screen and (min-width: 720px) {
	section.text-callout img.left {
		width: 50%;
	}
}

@media screen and (min-width: 720px) {
	section.text-callout img.left.narrow {
		width: 35%;
	}
}

section.text-callout img.right {
	float: right;
	margin: 12px 0 12px 30px;
	width: 100%;
}

@media screen and (min-width: 720px) {
	section.text-callout img.right {
		width: 50%;
	}
}

@media screen and (min-width: 720px) {
	section.text-callout img.right.narrow {
		width: 35%;
	}
}

section.text-callout img.full {
	width: 100%;
	margin: 20px 0;
}

section.text-callout aside {
	background-color: #f5f5f5;
	margin: 10px 0;
	padding: 40px 25px;
	border-top: 3px solid black;
}

@media screen and (min-width: 720px) {
	section.text-callout aside {
		float: left;
		width: 33%;
		margin: 10px 25px 0 0;
	}
}

section.text-callout aside img {
	width: 100%;
	display: block;
	margin: 0 0 10px 0;
}

section.text-callout aside p {
	line-height: 23px;
	font-size: 0.8em;
}

section.text-callout aside h3 {
	margin: 0 0 20px 0;
	text-align: left;
}

section.link-tiles {
	width: 100%;
	text-align: center;
}

@media screen and (min-width: 720px) {
	section.link-tiles {
		width: 700px;
		margin: 0 auto;
		overflow: auto;
	}
}

@media screen and (min-width: 1024px) {
	section.link-tiles {
		width: 930px;
		margin: 0 auto;
		overflow: auto;
	}
	section.link-tiles.tile-count-4 {
		width: 640px;
	}
}

@media screen and (min-width: 1200px) {
	section.link-tiles {
		width: 1050px;
	}
	section.link-tiles.tile-count-4 {
		width: 720px;
	}
}

section.link-tiles .tile {
	display: inline-block;
	width: 100%;
	padding-bottom: 100%;
	margin: 5px auto;
	background: no-repeat center;
	background-size: cover;
	position: relative;
}

@media screen and (min-width: 720px) {
	section.link-tiles .tile {
		padding-bottom: 0;
		height: 340px;
		width: 340px;
		margin: 2px 3px;
	}
}

@media screen and (min-width: 1024px) {
	section.link-tiles .tile {
		height: 300px;
		width: 300px;
	}
}

@media screen and (min-width: 1200px) {
	section.link-tiles .tile {
		height: 340px;
		width: 340px;
	}
}

section.link-tiles .tile .gradient-enabled {
	background: transparent;
	/* Old browsers */
	background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(0, 0, 0, 0.6)));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
	/* W3C */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffffff, endColorstr=#000000)";
}

section.link-tiles .tile .tile-description {
	text-align: center;
	line-height: 20px;
	overflow: hidden;
	width: 75%;
	margin: 0 auto;
	font-size: 16px;
}

section.link-tiles .tile .tile-description .title {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 28px;
	letter-spacing: 3px;
	line-height: 38px;
}

section.link-tiles .tile .tile-description .title em {
	font-family: 'minion-pro', serif;
	text-transform: lowercase;
	font-size: 85%;
	letter-spacing: 2px;
	font-weight: 200;
	font-style: italic;
}

@media screen and (min-width: 720px) {
	section.link-tiles .tile .tile-description .title {
		font-size: 36px;
	}
}

section.link-tiles .tile .tile-description p,
section.link-tiles .tile .tile-description .subtitle {
	margin: 0;
	line-height: 20px;
	color: #fff;
}

section.link-tiles .tile.with-image .text-container {
	height: 100%;
	width: 100%;
	position: absolute;
}

section.link-tiles .tile.with-image .tile-text {
	margin: auto;
	position: absolute;
	right: 0;
	left: 0;
	bottom: 50px;
}

section.link-tiles .tile.with-image .tile-description {
	color: #fff;
}

section.link-tiles .tile.without-image .text-container {
	height: calc(100% - 30px);
	width: calc(100% - 30px);
	border: 5px solid #000;
	margin: 10px;
	position: absolute;
}

section.link-tiles .tile.without-image .tile-text {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

section.link-tiles .tile.without-image .tile-text .tile-description {
	color: #000;
}

section.masonry {
	width: 100%;
	margin: 0 0 10px;
	padding: 0;
}

section.masonry div.tile {
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	position: relative;
	margin: 0 0 10px;
}

section.masonry div.tile .gradient-enabled {
	background: transparent;
	/* Old browsers */
	background: -moz-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(100%, rgba(0, 0, 0, 0.6)));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
	/* W3C */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffffff, endColorstr=#000000)";
}

section.masonry.variation-50-50 div.tile,
section.masonry.variation-33-34-33 div.tile,
section.masonry.variation-30-70 div.tile.position-0,
section.masonry.variation-70-30 div.tile.position-1 {
	width: 100%;
	padding-bottom: 100%;
}

section.masonry.variation-70-30 div.tile.position-0,
section.masonry.variation-30-70 div.tile.position-1 {
	width: 100%;
	padding-bottom: calc(100%);
}

section.masonry.variation-100-short div.tile {
	width: 100%;
	padding-bottom: calc(33%);
}

section.masonry.variation-100-tall div.tile {
	width: 100%;
	padding-bottom: calc(50%);
}

@media screen and (min-width: 480px) {
	section.masonry {
		float: left;
	}
	section.masonry div.tile {
		float: left;
	}
	section.masonry.variation-30-70 div.tile.position-0,
	section.masonry.variation-50-50 div.tile.position-0,
	section.masonry.variation-70-30 div.tile.position-0 {
		margin: 0 5px 0 0;
	}
	section.masonry.variation-30-70 div.tile.position-1,
	section.masonry.variation-50-50 div.tile.position-1,
	section.masonry.variation-70-30 div.tile.position-1 {
		margin: 0 0 0 5px;
	}
	section.masonry.variation-33-34-33 div.tile.position-0,
	section.masonry.variation-33-34-33 div.tile.position-2 {
		margin: 0;
	}
	section.masonry.variation-33-34-33 div.tile.position-1 {
		width: calc(34% - 20px);
		padding-bottom: 33%;
		margin: 0 10px;
	}
	section.masonry.variation-50-50 div.tile {
		width: calc(50% - 5px);
		padding-bottom: calc(50% - 5px);
	}
	section.masonry.variation-30-70 div.tile.position-0,
	section.masonry.variation-70-30 div.tile.position-1 {
		width: calc(33.333333% - 5px);
		padding-bottom: calc(33.333333% - 5px);
	}
	section.masonry.variation-70-30 div.tile.position-0,
	section.masonry.variation-30-70 div.tile.position-1 {
		width: calc(66.6666666% - 5px);
		padding-bottom: calc(33.333333% - 5px);
	}
	section.masonry.variation-33-34-33 div.tile.position-0,
	section.masonry.variation-33-34-33 div.tile.position-2 {
		width: 33%;
		padding-bottom: 33%;
	}
}

section.masonry .text-container {
	height: 100%;
	width: 100%;
	position: absolute;
}

section.masonry .text-container .tile-text {
	left: 0;
	right: 0;
	bottom: 10%;
	margin: auto;
	position: absolute;
}

section.masonry .tile-description {
	height: auto;
	text-align: center;
	line-height: 32px;
	color: #fff;
	overflow: hidden;
	width: 80%;
	margin: 0 auto;
}

section.masonry .tile-description div.title {
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 28px;
	letter-spacing: 3px;
}

section.masonry .tile-description div.title em {
	font-family: 'minion-pro', serif;
	text-transform: lowercase;
	font-size: 21px;
	letter-spacing: 3px;
	font-weight: 200;
	font-style: italic;
}

@media screen and (min-width: 720px) {
	section.masonry .tile-description div.title em {
		font-size: 28px;
	}
}

@media screen and (min-width: 720px) {
	section.masonry .tile-description div.title {
		margin: 0 auto;
		font-size: 36px;
	}
}

section.masonry .tile-description p {
	color: #fff;
}

section.masonry .tile-description p.subtitle {
	margin: 10px auto 0 auto;
	line-height: 20px;
}

section.link-tiles .ss-button {
	margin: 0 auto -40px auto;
}

section.masonry .ss-button {
	margin: 0 auto -52px auto;
}


/*
 * Buttons for both Masonry and Link Tiles
 */

section.link-tiles .ss-button,
section.masonry .ss-button {
	color: #000;
	background: #fff;
	max-width: 150px;
	padding: 10px;
	position: relative;
	cursor: pointer;
	font-family: "Knockout 48 A", "Knockout 48 B", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 2px;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

section.link-tiles div.tile:hover .ss-button,
section.masonry div.tile:hover .ss-button {
	margin: 15px auto 0;
}

section.link-tiles .ss-button:hover,
section.masonry .ss-button:hover {
	background: rgba(255, 255, 255, 0.7);
}

section.link-tiles div.without-image .ss-button,
section.masonry div.without-image .ss-button {
	color: #fff;
	background: #aaa;
}

section.link-tiles div.without-image .ss-button:hover,
section.masonry div.without-image .ss-button:hover {
	background: #808080;
}

section.video-player .video-player-container {
	max-width: 920px;
	margin: 0 auto;
}

section.embed-video .embed-container {
	width: 100%;
	max-width: 1040px;
	height: calc(100vw / 1.777777);
	max-height: 585px;
	margin: 0 auto;
}

.video-js .vjs-big-play-button:before,
.video-js .vjs-control:before,
.video-js .vjs-modal-dialog,
.vjs-modal-dialog .vjs-modal-dialog-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-js .vjs-big-play-button:before,
.video-js .vjs-control:before {
	text-align: center;
}

@font-face {
	font-family: VideoJS;
	src: url("font/VideoJS.eot?#iefix") format("eot");
}

@font-face {
	font-family: VideoJS;
	src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff"), url(data:application/x-font-ttf;charset=utf-8;base64,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FjY3PgE3LgEnIwYfAR4BFw4BBTM/ARUzESMGAyUVJwMchM2UWwgNq4JHrQgBAapUaAoJcWMBfiIhDiMrAQJLMB0BBAokNAIBPmMiIQ4iLAECSzAeAQUKJDQBP2MiIQ4iLAECSzAeAQUKJDQBAT75g+5B4arNLNIBJ44ByQL9BQ9mvYCKwA8FBQMDwwJVTGdzBf6VB8IHNR08lld9uT4LCRA/qGNxvUwHNR08lld9uT4LCRA/qGNxvUwHNR08lld9uT4LCRA/qGNxvVJkAWUDDEf+tYP5AQAAAAEAAAAABiAGtgAbAAABBAADER4BFzMRITU2ADcWABcVIREzPgE3EQIAA4D+4v6FBwJ/X+D+1QYBJ97eAScG/tXgX38CB/6FBrUH/oX+4v32X38CAlWV3gEnBgb+2d6V/asCf18CCgEeAXsAAAAAEADGAAEAAAAAAAEABwAAAAEAAAAAAAIABwAHAAEAAAAAAAMABwAOAAEAAAAAAAQABwAVAAEAAAAAAAUACwAcAAEAAAAAAAYABwAnAAEAAAAAAAoAKwAuAAEAAAAAAAsAEwBZAAMAAQQJAAEADgBsAAMAAQQJAAIADgB6AAMAAQQJAAMADgCIAAMAAQQJAAQADgCWAAMAAQQJAAUAFgCkAAMAAQQJAAYADgC6AAMAAQQJAAoAVgDIAAMAAQQJAAsAJgEeVmlkZW9KU1JlZ3VsYXJWaWRlb0pTVmlkZW9KU1ZlcnNpb24gMS4wVmlkZW9KU0dlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAFYAaQBkAGUAbwBKAFMAUgBlAGcAdQBsAGEAcgBWAGkAZABlAG8ASgBTAFYAaQBkAGUAbwBKAFMAVgBlAHIAcwBpAG8AbgAgADEALgAwAFYAaQBkAGUAbwBKAFMARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAgAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAABAgEDAQQBBQEGAQcBCAEJAQoBCwEMAQ0BDgEPARABEQESARMBFAEVARYBFwEYARkBGgEbARwBHQEeAR8EcGxheQtwbGF5LWNpcmNsZQVwYXVzZQt2b2x1bWUtbXV0ZQp2b2x1bWUtbG93CnZvbHVtZS1taWQLdm9sdW1lLWhpZ2gQZnVsbHNjcmVlbi1lbnRlcg9mdWxsc2NyZWVuLWV4aXQGc3F1YXJlB3NwaW5uZXIJc3VidGl0bGVzCGNhcHRpb25zCGNoYXB0ZXJzBXNoYXJlA2NvZwZjaXJjbGUOY2lyY2xlLW91dGxpbmUTY2lyY2xlLWlubmVyLWNpcmNsZQJoZAZjYW5jZWwGcmVwbGF5CGZhY2Vib29rBWdwbHVzCGxpbmtlZGluB3R3aXR0ZXIGdHVtYmxyCXBpbnRlcmVzdBFhdWRpby1kZXNjcmlwdGlvbgVhdWRpbwAAAAAA) format("truetype");
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-play,
.video-js .vjs-big-play-button,
.video-js .vjs-play-control {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-play:before,
.video-js .vjs-big-play-button:before,
.video-js .vjs-play-control:before {
	content: "\f101";
}

.vjs-icon-play-circle {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-play-circle:before {
	content: "\f102";
}

.vjs-icon-pause,
.video-js .vjs-play-control.vjs-playing {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-pause:before,
.video-js .vjs-play-control.vjs-playing:before {
	content: "\f103";
}

.vjs-icon-volume-mute,
.video-js .vjs-mute-control.vjs-vol-0,
.video-js .vjs-volume-menu-button.vjs-vol-0 {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-volume-mute:before,
.video-js .vjs-mute-control.vjs-vol-0:before,
.video-js .vjs-volume-menu-button.vjs-vol-0:before {
	content: "\f104";
}

.vjs-icon-volume-low,
.video-js .vjs-mute-control.vjs-vol-1,
.video-js .vjs-volume-menu-button.vjs-vol-1 {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-volume-low:before,
.video-js .vjs-mute-control.vjs-vol-1:before,
.video-js .vjs-volume-menu-button.vjs-vol-1:before {
	content: "\f105";
}

.vjs-icon-volume-mid,
.video-js .vjs-mute-control.vjs-vol-2,
.video-js .vjs-volume-menu-button.vjs-vol-2 {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-volume-mid:before,
.video-js .vjs-mute-control.vjs-vol-2:before,
.video-js .vjs-volume-menu-button.vjs-vol-2:before {
	content: "\f106";
}

.vjs-icon-volume-high,
.video-js .vjs-mute-control,
.video-js .vjs-volume-menu-button {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-volume-high:before,
.video-js .vjs-mute-control:before,
.video-js .vjs-volume-menu-button:before {
	content: "\f107";
}

.vjs-icon-fullscreen-enter,
.video-js .vjs-fullscreen-control {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-fullscreen-enter:before,
.video-js .vjs-fullscreen-control:before {
	content: "\f108";
}

.vjs-icon-fullscreen-exit,
.video-js.vjs-fullscreen .vjs-fullscreen-control {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-fullscreen-exit:before,
.video-js.vjs-fullscreen .vjs-fullscreen-control:before {
	content: "\f109";
}

.vjs-icon-square {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-square:before {
	content: "\f10a";
}

.vjs-icon-spinner {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-spinner:before {
	content: "\f10b";
}

.vjs-icon-subtitles,
.video-js .vjs-subtitles-button {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-subtitles:before,
.video-js .vjs-subtitles-button:before {
	content: "\f10c";
}

.vjs-icon-captions,
.video-js .vjs-captions-button {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-captions:before,
.video-js .vjs-captions-button:before {
	content: "\f10d";
}

.vjs-icon-chapters,
.video-js .vjs-chapters-button {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-chapters:before,
.video-js .vjs-chapters-button:before {
	content: "\f10e";
}

.vjs-icon-share {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-share:before {
	content: "\f10f";
}

.vjs-icon-cog {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-cog:before {
	content: "\f110";
}

.vjs-icon-circle,
.video-js .vjs-mouse-display,
.video-js .vjs-play-progress,
.video-js .vjs-volume-level {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-circle:before,
.video-js .vjs-mouse-display:before,
.video-js .vjs-play-progress:before,
.video-js .vjs-volume-level:before {
	content: "\f111";
}

.vjs-icon-circle-outline {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-circle-outline:before {
	content: "\f112";
}

.vjs-icon-circle-inner-circle {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-circle-inner-circle:before {
	content: "\f113";
}

.vjs-icon-hd {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-hd:before {
	content: "\f114";
}

.vjs-icon-cancel,
.video-js .vjs-control.vjs-close-button {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-cancel:before,
.video-js .vjs-control.vjs-close-button:before {
	content: "\f115";
}

.vjs-icon-replay {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-replay:before {
	content: "\f116";
}

.vjs-icon-facebook {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-facebook:before {
	content: "\f117";
}

.vjs-icon-gplus {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-gplus:before {
	content: "\f118";
}

.vjs-icon-linkedin {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-linkedin:before {
	content: "\f119";
}

.vjs-icon-twitter {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-twitter:before {
	content: "\f11a";
}

.vjs-icon-tumblr {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-tumblr:before {
	content: "\f11b";
}

.vjs-icon-pinterest {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-pinterest:before {
	content: "\f11c";
}

.vjs-icon-audio-description,
.video-js .vjs-descriptions-button {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-audio-description:before,
.video-js .vjs-descriptions-button:before {
	content: "\f11d";
}

.vjs-icon-audio,
.video-js .vjs-audio-button {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-audio:before,
.video-js .vjs-audio-button:before {
	content: "\f11e";
}

.video-js {
	display: block;
	vertical-align: top;
	box-sizing: border-box;
	color: #fff;
	background-color: #000;
	position: relative;
	padding: 0;
	font-size: 10px;
	line-height: 1;
	font-weight: normal;
	font-style: normal;
	font-family: Arial, Helvetica, sans-serif;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.video-js:-moz-full-screen {
	position: absolute;
}

.video-js:-webkit-full-screen {
	width: 100% !important;
	height: 100% !important;
}

.video-js *,
.video-js *:before,
.video-js *:after {
	box-sizing: inherit;
}

.video-js ul {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	list-style-position: outside;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3 {
	width: 100%;
	max-width: 100%;
	height: 0;
}

.video-js.vjs-16-9 {
	padding-top: 56.25%;
}

.video-js.vjs-4-3 {
	padding-top: 75%;
}

.video-js.vjs-fill {
	width: 100%;
	height: 100%;
}

.video-js .vjs-tech {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

body.vjs-full-window {
	padding: 0;
	margin: 0;
	height: 100%;
	overflow-y: auto;
}

.vjs-full-window .video-js.vjs-fullscreen {
	position: fixed;
	overflow: hidden;
	z-index: 1000;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}

.video-js.vjs-fullscreen {
	width: 100% !important;
	height: 100% !important;
	padding-top: 0 !important;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
	cursor: none;
}

.vjs-hidden {
	display: none !important;
}

.vjs-disabled {
	opacity: 0.5;
	cursor: default;
}

.video-js .vjs-offscreen {
	height: 1px;
	left: -9999px;
	position: absolute;
	top: 0;
	width: 1px;
}

.vjs-lock-showing {
	display: block !important;
	opacity: 1;
	visibility: visible;
}

.vjs-no-js {
	padding: 20px;
	color: #fff;
	background-color: #000;
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	width: 300px;
	height: 150px;
	margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
	color: #66a8cc;
}

.video-js .vjs-big-play-button {
	font-size: 3em;
	line-height: 1.5em;
	height: 1.5em;
	width: 3em;
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 0;
	cursor: pointer;
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.75);
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.vjs-big-play-centered .vjs-big-play-button {
	top: 50%;
	left: 50%;
	margin-top: -0.75em;
	margin-left: -1.5em;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
	outline: 0;
	background-color: rgba(0, 0, 0, 0.75);
	-webkit-transition: all 0s;
	-moz-transition: all 0s;
	-o-transition: all 0s;
	transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
	display: none;
}

.video-js button {
	background: none;
	border: none;
	color: inherit;
	display: inline-block;
	overflow: visible;
	font-size: inherit;
	line-height: inherit;
	text-transform: none;
	text-decoration: none;
	transition: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.video-js .vjs-control.vjs-close-button {
	cursor: pointer;
	height: 3em;
	position: absolute;
	right: 0;
	top: 0.5em;
	z-index: 2;
}

.vjs-menu-button {
	cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
	cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
	display: none;
}

.vjs-menu .vjs-menu-content {
	display: block;
	padding: 0;
	margin: 0;
	overflow: auto;
	font-family: Arial, Helvetica, sans-serif;
}

.vjs-scrubbing .vjs-menu-button:hover .vjs-menu {
	display: none;
}

.vjs-menu li {
	list-style: none;
	margin: 0;
	padding: 0.2em 0;
	line-height: 1.4em;
	font-size: 1.2em;
	text-align: center;
	text-transform: lowercase;
}

.vjs-menu li:focus,
.vjs-menu li:hover {
	outline: 0;
	background-color: #73859f;
	background-color: rgba(115, 133, 159, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover {
	background-color: #fff;
	color: #2b333f;
}

.vjs-menu li.vjs-menu-title {
	text-align: center;
	text-transform: uppercase;
	font-size: 1em;
	line-height: 2em;
	padding: 0;
	margin: 0 0 0.3em 0;
	font-weight: bold;
	cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
	display: none;
	position: absolute;
	bottom: 0;
	width: 10em;
	left: -3em;
	height: 0em;
	margin-bottom: 1.5em;
	border-top-color: rgba(43, 51, 63, 0.7);
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
	background-color: #2b333f;
	background-color: rgba(43, 51, 63, 0.7);
	position: absolute;
	width: 100%;
	bottom: 1.5em;
	max-height: 15em;
}

.vjs-workinghover .vjs-menu-button-popup:hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
	display: block;
}

.video-js .vjs-menu-button-inline {
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
	width: 2.22222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js.vjs-no-flex .vjs-menu-button-inline {
	width: 12em;
}

.video-js .vjs-menu-button-inline.vjs-slider-active {
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

.vjs-menu-button-inline .vjs-menu {
	opacity: 0;
	height: 100%;
	width: auto;
	position: absolute;
	left: 4em;
	top: 0;
	padding: 0;
	margin: 0;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
	display: block;
	opacity: 1;
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
	display: block;
	opacity: 1;
	position: relative;
	width: auto;
}

.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
	width: auto;
}

.vjs-menu-button-inline .vjs-menu-content {
	width: auto;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.video-js .vjs-control-bar {
	display: none;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4em;
	background-color: rgba(0, 0, 0, 0.5);
}

.vjs-has-started .vjs-control-bar {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	visibility: visible;
	opacity: 1;
	-webkit-transition: visibility 0.1s, opacity 0.1s;
	-moz-transition: visibility 0.1s, opacity 0.1s;
	-o-transition: visibility 0.1s, opacity 0.1s;
	transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
	visibility: visible;
	opacity: 0;
	-webkit-transition: visibility 1s, opacity 1s;
	-moz-transition: visibility 1s, opacity 1s;
	-o-transition: visibility 1s, opacity 1s;
	transition: visibility 1s, opacity 1s;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
	display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
	opacity: 1;
	visibility: visible;
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
	display: table;
}

.video-js .vjs-control {
	outline: none;
	position: relative;
	text-align: center;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 4em;
	font-size: 14px;
	-webkit-box-flex: none;
	-moz-box-flex: none;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
}

.video-js .vjs-control:before {
	font-size: 1.8em;
	line-height: 1.67;
}

.video-js .vjs-control-text {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.vjs-no-flex .vjs-control {
	display: table-cell;
	vertical-align: middle;
}

.video-js .vjs-custom-control-spacer {
	display: none;
}

.video-js .vjs-progress-control {
	-webkit-box-flex: auto;
	-moz-box-flex: auto;
	-webkit-flex: auto;
	-ms-flex: auto;
	flex: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	min-width: 4em;
}

.vjs-live .vjs-progress-control {
	display: none;
}

.video-js .vjs-progress-holder {
	-webkit-box-flex: auto;
	-moz-box-flex: auto;
	-webkit-flex: auto;
	-ms-flex: auto;
	flex: auto;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	height: 0.3em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
	font-size: 1.66667em;
}


/* If we let the font size grow as much as everything else, the current time tooltip ends up
 ginormous. If you'd like to enable the current time tooltip all the time, this should be disabled
 to avoid a weird hitch when you roll off the hover. */

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-mouse-display:after,
.video-js .vjs-progress-control:hover .vjs-play-progress:after {
	font-family: Arial, Helvetica, sans-serif;
	visibility: visible;
	font-size: 0.6em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-tooltip-progress-bar,
.video-js .vjs-progress-holder .vjs-load-progress div {
	position: absolute;
	display: block;
	height: 0.3em;
	margin: 0;
	padding: 0;
	width: 0;
	left: 0;
	top: 0;
}

.video-js .vjs-mouse-display:before {
	display: none;
}

.video-js .vjs-play-progress {
	background-color: #fff;
}

.video-js .vjs-play-progress:before {
	display: none;
	position: absolute;
	top: -0.33333em;
	right: -0.5em;
	font-size: 0.9em;
}

.video-js .vjs-time-tooltip,
.video-js .vjs-mouse-display:after,
.video-js .vjs-play-progress:after {
	visibility: hidden;
	pointer-events: none;
	position: absolute;
	top: -3.4em;
	right: -1.9em;
	font-size: 0.9em;
	color: #000;
	content: attr(data-current-time);
	padding: 6px 8px 8px 8px;
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.8);
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	border-radius: 0.3em;
}

.video-js .vjs-time-tooltip,
.video-js .vjs-play-progress:before,
.video-js .vjs-play-progress:after {
	z-index: 1;
}

.video-js .vjs-progress-control .vjs-keep-tooltips-inside:after {
	display: none;
}

.video-js .vjs-load-progress {
	background: rgba(150, 150, 150, 0.5);
}

.video-js .vjs-load-progress div {
	background: white;
	background: rgba(150, 150, 150, 0.75);
}

.video-js.vjs-no-flex .vjs-progress-control {
	width: auto;
}

.video-js .vjs-time-tooltip {
	display: inline-block;
	height: 2.4em;
	position: relative;
	float: right;
	right: -1.9em;
}

.vjs-tooltip-progress-bar {
	visibility: hidden;
}

.video-js .vjs-progress-control .vjs-mouse-display {
	display: none;
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: #000;
	z-index: 1;
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
	z-index: 0;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
	display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display,
.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display:after {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: visibility 1s, opacity 1s;
	-moz-transition: visibility 1s, opacity 1s;
	-o-transition: visibility 1s, opacity 1s;
	transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display,
.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display:after {
	display: none;
}

.vjs-mouse-display .vjs-time-tooltip,
.video-js .vjs-progress-control .vjs-mouse-display:after {
	color: #fff;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
	outline: 0;
	position: relative;
	cursor: pointer;
	padding: 0;
	margin: 0 0.45em 0 0.45em;
	background-color: rgba(115, 115, 115, 0.5);
}

.video-js .vjs-mute-control,
.video-js .vjs-volume-menu-button {
	cursor: pointer;
	-webkit-box-flex: none;
	-moz-box-flex: none;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
}

.video-js .vjs-volume-control {
	width: 5em;
	-webkit-box-flex: none;
	-moz-box-flex: none;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.video-js .vjs-volume-bar {
	margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
	width: 5em;
	height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
	width: 0.3em;
	height: 5em;
	margin: 1.35em auto;
}

.video-js .vjs-volume-level {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #fff;
}

.video-js .vjs-volume-level:before {
	position: absolute;
	font-size: 0.9em;
}

.vjs-slider-vertical .vjs-volume-level {
	width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
	top: -0.5em;
	left: -0.3em;
}

.vjs-slider-horizontal .vjs-volume-level {
	height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
	top: -0.3em;
	right: -0.5em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
	height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
	width: 100%;
}

.vjs-menu-button-popup.vjs-volume-menu-button .vjs-menu {
	display: block;
	width: 0;
	height: 0;
	border-top-color: transparent;
}

.vjs-menu-button-popup.vjs-volume-menu-button-vertical .vjs-menu {
	left: 0.5em;
	height: 8em;
}

.vjs-menu-button-popup.vjs-volume-menu-button-horizontal .vjs-menu {
	left: -2em;
}

.vjs-menu-button-popup.vjs-volume-menu-button .vjs-menu-content {
	height: 0;
	width: 0;
	overflow-x: hidden;
	overflow-y: hidden;
}

.vjs-volume-menu-button-vertical:hover .vjs-menu-content,
.vjs-volume-menu-button-vertical:focus .vjs-menu-content,
.vjs-volume-menu-button-vertical.vjs-slider-active .vjs-menu-content,
.vjs-volume-menu-button-vertical .vjs-lock-showing .vjs-menu-content {
	height: 8em;
	width: 2.9em;
}

.vjs-volume-menu-button-horizontal:hover .vjs-menu-content,
.vjs-volume-menu-button-horizontal:focus .vjs-menu-content,
.vjs-volume-menu-button-horizontal .vjs-slider-active .vjs-menu-content,
.vjs-volume-menu-button-horizontal .vjs-lock-showing .vjs-menu-content {
	height: 2.9em;
	width: 8em;
}

.vjs-volume-menu-button.vjs-menu-button-inline .vjs-menu-content {
	background-color: transparent !important;
}

.vjs-poster {
	display: inline-block;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	background-color: #000;
	cursor: pointer;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
}

.vjs-poster img {
	display: block;
	vertical-align: middle;
	margin: 0 auto;
	max-height: 100%;
	padding: 0;
	width: 100%;
}

.vjs-has-started .vjs-poster {
	display: none;
}

.vjs-audio.vjs-has-started .vjs-poster {
	display: block;
}

.vjs-controls-disabled .vjs-poster {
	display: none;
}

.vjs-using-native-controls .vjs-poster {
	display: none;
}

.video-js .vjs-live-control {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	-webkit-box-flex: auto;
	-moz-box-flex: auto;
	-webkit-flex: auto;
	-ms-flex: auto;
	flex: auto;
	font-size: 1em;
	line-height: 3em;
}

.vjs-no-flex .vjs-live-control {
	display: table-cell;
	width: auto;
	text-align: left;
}

.video-js .vjs-time-control {
	-webkit-box-flex: none;
	-moz-box-flex: none;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
	font-size: 1em;
	line-height: 4em;
	min-width: 2em;
	width: auto;
	padding-left: 1em;
	padding-right: 1em;
}

.vjs-live .vjs-time-control {
	display: none;
}

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
	display: none;
}

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
	display: none;
}

.vjs-time-divider {
	display: none;
	line-height: 3em;
}

.vjs-live .vjs-time-divider {
	display: none;
}

.video-js .vjs-play-control {
	cursor: pointer;
	-webkit-box-flex: none;
	-moz-box-flex: none;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
}

.vjs-text-track-display {
	position: absolute;
	bottom: 3em;
	left: 0;
	right: 0;
	top: 0;
	pointer-events: none;
}

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

.video-js .vjs-text-track {
	font-size: 1.4em;
	text-align: center;
	margin-bottom: 0.1em;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.5);
}

.vjs-subtitles {
	color: #fff;
}

.vjs-captions {
	color: #fc6;
}

.vjs-tt-cue {
	display: block;
}

video::-webkit-media-text-track-display {
	-moz-transform: translateY(-3em);
	-ms-transform: translateY(-3em);
	-o-transform: translateY(-3em);
	-webkit-transform: translateY(-3em);
	transform: translateY(-3em);
}

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
	-moz-transform: translateY(-1.5em);
	-ms-transform: translateY(-1.5em);
	-o-transform: translateY(-1.5em);
	-webkit-transform: translateY(-1.5em);
	transform: translateY(-1.5em);
}

.video-js .vjs-fullscreen-control {
	cursor: pointer;
	-webkit-box-flex: none;
	-moz-box-flex: none;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
}

.vjs-playback-rate .vjs-playback-rate-value {
	font-size: 1.5em;
	line-height: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
}

.vjs-playback-rate .vjs-menu {
	width: 4em;
	left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
	font-size: 1.4em;
	text-align: center;
}

.vjs-error .vjs-error-display:before {
	color: #fff;
	content: 'X';
	font-family: Arial, Helvetica, sans-serif;
	font-size: 4em;
	left: 0;
	line-height: 1;
	margin-top: -0.5em;
	position: absolute;
	text-shadow: 0.05em 0.05em 0.1em #000;
	text-align: center;
	top: 50%;
	vertical-align: middle;
	width: 100%;
}

.vjs-loading-spinner {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	opacity: 0.85;
	text-align: left;
	border: 6px solid rgba(43, 51, 63, 0.7);
	box-sizing: border-box;
	background-clip: padding-box;
	width: 50px;
	height: 50px;
	border-radius: 25px;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
	display: block;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
	content: "";
	position: absolute;
	margin: -6px;
	box-sizing: inherit;
	width: inherit;
	height: inherit;
	border-radius: inherit;
	opacity: 1;
	border: inherit;
	border-color: transparent;
	border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
	-webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
	animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
	border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
	border-top-color: white;
	-webkit-animation-delay: 0.44s;
	animation-delay: 0.44s;
}

@keyframes vjs-spinner-spin {
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes vjs-spinner-spin {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes vjs-spinner-fade {
	0% {
		border-top-color: #73859f;
	}
	20% {
		border-top-color: #73859f;
	}
	35% {
		border-top-color: white;
	}
	60% {
		border-top-color: #73859f;
	}
	100% {
		border-top-color: #73859f;
	}
}

@-webkit-keyframes vjs-spinner-fade {
	0% {
		border-top-color: #73859f;
	}
	20% {
		border-top-color: #73859f;
	}
	35% {
		border-top-color: white;
	}
	60% {
		border-top-color: #73859f;
	}
	100% {
		border-top-color: #73859f;
	}
}

.vjs-chapters-button .vjs-menu ul {
	width: 24em;
}

.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-custom-control-spacer {
	-webkit-box-flex: auto;
	-moz-box-flex: auto;
	-webkit-flex: auto;
	-ms-flex: auto;
	flex: auto;
}

.video-js.vjs-layout-tiny:not(.vjs-fullscreen).vjs-no-flex .vjs-custom-control-spacer {
	width: auto;
}

.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-current-time,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-time-divider,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-duration,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-progress-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-mute-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-menu-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-chapters-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-descriptions-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-subtitles-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-audio-button {
	display: none;
}

.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-current-time,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-time-divider,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-duration,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-mute-control,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-menu-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-chapters-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-descriptions-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-subtitles-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-audio-button {
	display: none;
}

.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-current-time,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-time-divider,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-duration,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-mute-control,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-chapters-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-descriptions-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-subtitles-button .vjs-audio-button {
	display: none;
}

.vjs-caption-settings {
	position: relative;
	top: 1em;
	background-color: #2b333f;
	background-color: rgba(43, 51, 63, 0.75);
	color: #fff;
	margin: 0 auto;
	padding: 0.5em;
	height: 16em;
	font-size: 12px;
	width: 40em;
}

.vjs-caption-settings .vjs-tracksettings {
	top: 0;
	bottom: 1em;
	left: 0;
	right: 0;
	position: absolute;
	overflow: auto;
}

.vjs-caption-settings .vjs-tracksettings-colors,
.vjs-caption-settings .vjs-tracksettings-font {
	float: left;
}

.vjs-caption-settings .vjs-tracksettings-colors:after,
.vjs-caption-settings .vjs-tracksettings-font:after,
.vjs-caption-settings .vjs-tracksettings-controls:after {
	clear: both;
}

.vjs-caption-settings .vjs-tracksettings-controls {
	position: absolute;
	bottom: 1em;
	right: 1em;
}

.vjs-caption-settings .vjs-tracksetting {
	margin: 5px;
	padding: 3px;
	min-height: 40px;
	border: none;
}

.vjs-caption-settings .vjs-tracksetting label,
.vjs-caption-settings .vjs-tracksetting legend {
	display: block;
	width: 100px;
	margin-bottom: 5px;
}

.vjs-caption-settings .vjs-tracksetting span {
	display: inline;
	margin-left: 5px;
	vertical-align: top;
	float: right;
}

.vjs-caption-settings .vjs-tracksetting>div {
	margin-bottom: 5px;
	min-height: 20px;
}

.vjs-caption-settings .vjs-tracksetting>div:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	min-height: 0;
}

.vjs-caption-settings label>input {
	margin-right: 10px;
}

.vjs-caption-settings fieldset {
	margin-top: 1em;
	margin-left: 0.5em;
}

.vjs-caption-settings fieldset .vjs-label {
	position: absolute;
	clip: rect(1px 1px 1px 1px);
	/* for Internet Explorer */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.vjs-caption-settings input[type="button"] {
	width: 40px;
	height: 40px;
}

.video-js .vjs-modal-dialog {
	background: rgba(0, 0, 0, 0.8);
	background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
}

.vjs-modal-dialog .vjs-modal-dialog-content {
	font-size: 1.2em;
	line-height: 1.5;
	padding: 20px 24px;
	z-index: 1;
}

@media print {
	.video-js>*:not(.vjs-tech):not(.vjs-poster) {
		visibility: hidden;
	}
}

@media \0screen {
	.vjs-user-inactive.vjs-playing .vjs-control-bar :before {
		content: "";
	}
}

@media \0screen {
	.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
		visibility: hidden;
	}
}

