*, *:before, *:after {
	box-sizing: border-box;
}
::-moz-selection { background: #E50019; color: #fff; text-shadow: none; }
::selection { background: #E50019; color: #fff; text-shadow: none; }

html.overscroll-lock,
html.overscroll-lock body {
  overflow: hidden !important;
}

html, body {
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	color: #111;
	font-size: 100%;
	line-height: 1.6em;
	font-family: 'Fira Sans', Arial, Helvetica, sans-serif;
	background: #fff;
}
#wrap {
	padding-top: 130px;
}
img {
	max-width: 100%;
}
input[type="text"],
input[type="email"],
input[type="submit"],
textarea {
	-webkit-appearance: none;
	border-radius: 0;
}
a {
	color: #E50019;
	cursor: pointer;
	outline: none;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.btn {
	padding: .5rem 1rem;
	color: #fff;
	background-color: #E50019;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 500;
}
.no-touchevents .btn:hover {
	background-color: #ff001c;
}
.btn.grey {
	color: #fff;
	background-color: #bbb;
}
.no-touchevents .btn.grey:hover {
	background-color: #ccc;
}

hr {
	border: 0;
	height: 0;
	border-top: 1px solid #999;
	margin: 1rem 0;
}
.rel {
	position: relative;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-large {
	font-size: 1.8rem;
	line-height: 2.4rem;
	font-weight: 400;
}
.red {
	color: #E50019;
}
.caps {
	text-transform: uppercase;
}
.grey-box {
	background-color: #f5f5f5;
	padding: 1rem;
	border-radius: 5px;
}

/* embed responsively */
.embed-container {position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%;} 
.embed-container iframe, .embed-container object, .embed-container embed {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}


/* !HEADER */
header {
	position: fixed;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: 130px;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	-webkit-transition: all 0.16s ease-in-out;
	-moz-transition: all 0.16s ease-in-out;
	-ms-transition: all 0.16s ease-in-out;
	-o-transition: all 0.16s ease-in-out;
	transition: all 0.16s ease-in-out;
}
#logo {
	display: inline-block;
	width: 177px;
	position: relative;
	z-index: 1;
}
header .btn.download {
	position: absolute;
	bottom: -46px;
	height: 45px;
	line-height: 28px;
	margin-left: 2rem;
	border-radius: 0 0 5px 5px;
	font-weight: 700;
}

/* navs */
header nav {
	margin-top: 50px;
}
header nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
}
header nav ul li {
	display: inline-block;
}
header nav ul li a {
	text-decoration: none;
	text-transform: uppercase;
}

/* nav.main */
header nav.main ul {
	
}
header nav.main ul li a {
	display: block;
	padding: .2rem .6rem;
	color: #111;
	letter-spacing: 1px;
	-webkit-transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-ms-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
}
header nav.main ul li a::before {
	content: '/';
	color: #E50019;
	margin-right: 1px;
	font-weight: 500;
}
header nav.main ul li a.active,
.no-touchevents header nav.main ul li a:hover {
	color: #E50019;
}

/* subnavs */
header nav.main li.has-sub {
	position: relative;
}
header nav.main .subnav {
	display: none;
	position: absolute;
	top: 22px;
	left: 0;
	opacity: 0;
	width: auto;
	background: #fff;
	z-index: 20;
	padding: 10px;
	text-align: left;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
}
header nav.main .subnav ul {
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}
header nav.main .subnav ul li {
	margin-right: 0;
	display: block;
}
header nav.main .subnav ul li a {
	display: block;
	font-size: .85rem;
	margin-right: 0;
	padding: .4rem;
	color: #808080;
}
header nav.main .subnav ul li a::before {
	display: none;
}
.no-touchevents header nav.main .subnav ul li a:hover {
	color: #E50019;
}

/* !MOBILE NAV */
.hamburger {
	display: none;
	width: 30px;
	height: 25px;
	position: absolute;
	top: 30px;
	right: 20px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	-webkit-transition: top 0.16s ease-in-out;
	-moz-transition: top 0.16s ease-in-out;
	-o-transition: top 0.16s ease-in-out;
	transition: top 0.16s ease-in-out;
	cursor: pointer;
	z-index: 200;
}
.hamburger span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #111;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	z-index: 200;
}
.hamburger.open span {
	left: 0;
	z-index: 200;
}
.hamburger span:nth-child(1) {
	top: 2px;
}
.hamburger span:nth-child(2) {
	top: 12px;
}
.hamburger span:nth-child(3) {
	top: 22px;
}
.hamburger.open span:nth-child(1) {
	top: 14px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}
.hamburger.open span:nth-child(3) {
	top: 14px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.mobilenav {
	display: none;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: rgba(255, 255, 255, 0.98);
	margin: 0;
	padding: 0;
	text-align: center;
	margin: 0 auto;
	margin-top: 80px;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}
.mobilenav .first {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobilenav .first li a {
	opacity: 0;
	width: 100%;
	color: #111;
	font-size: 1.4rem;
	font-weight: 700;
	display: block;
	width: 100%;
	padding: 10px 0;
	letter-spacing: 1px;
	text-decoration: none;
}
.mobilenav .first li a.active {
	color: #E50019;
}

/* subnavs */
.mobilenav .first li.has-sub {
	
}
.mobilenav .first li.has-sub ul.subnav {
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
	padding-bottom: .5rem;
}
.mobilenav .first li.has-sub ul.subnav li {
	
}
.mobilenav .first li.has-sub ul.subnav li a {
	color: #999;
	padding: 4px;
}

/* mobile lang */
.mobilenav .language {
	position: relative;
	margin: 0 auto;
	margin: 80px 0 100px; /* bottom: fixed-header-height + wat extra */
	text-align: center;
	z-index: 101;
}
.mobilenav .language ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobilenav .language li {
	display: inline;
}
.mobilenav .language li a {
	display: inline-block;
	font-size: 1.2rem;
	width: 50px;
	height: 50px;
	font-weight: 800;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	background: transparent;
	padding: 6px 10px;
	padding-top: 8px;
	transition: all .3s ease-out;
	border-radius: 50%;
	line-height: 1.8;
	background: #ccc;
	color: #fff
}
.mobilenav .language li a.active,
.no-touchevents .mobilenav .language li a:hover {
	background: #E50019;
	color: #fff;
}
.mobilenav .language li a:last-child {
	margin: 0;
}

/* !HOME */
#home {
	position: relative;
	height: 100%;
	background: #fff url('../video/home-placeholder-01.jpg') no-repeat center center / cover;
	background: #000;
}
#home video {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}
.objectfit #home video {
	object-fit: cover;
}
.no-objectfit #home video {
	display: none; /* fallback naar bg-image */
}
#home .overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.2);
}
#home #home-calendar {
	position: absolute;
	bottom: 0;
	z-index: 1;
	width: 100%;
	
	color: #fff;
	background-color: #E50019;
	text-align: center;
}
#timeline {
	max-width: 72.5rem;
	margin: 0 auto;
}
#timeline ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* !BANNER */
.banner {
	width: 100%;
	height: 300px;
	background: #111 url('../img/banners/default.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.banner .overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.4);
}
.banner .content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
	color: #fff;
}
.banner .content .row {
	max-width: 82.5rem;
	margin-left: auto;
	margin-right: auto;
}
.banner .content h1,
.banner .content h2 {
	color: #fff;
	text-align: center;
	margin: 0;
	font-size: 4rem;
	line-height: 4rem;
	text-transform: uppercase;
	letter-spacing: 4px;
}
.banner .content h2 {
	font-size: 2rem;
	line-height: 2rem;
	text-transform: none;
	letter-spacing: 0;
}


/* !MAIN-CONTENT */
section#main-content {
	padding: 4rem 0;
}
section#main-content h2 {
	font-size: 1.5rem;
	line-height: 2rem;
}
section#main-content h3 {
	font-size: 1.6rem;
	line-height: 2rem;
	font-weight: 400;
}

/* sidebar */
section#main-content aside h3 {
	color: #E50019;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}
aside ul.txt-nav {
	margin: 0; 
	padding: 0;
	list-style: none;
}
aside ul.txt-nav li a {
	color: #111;
	font-size: .9rem;
	text-decoration: none;
	-webkit-transition: all 0.12s ease-in-out;
	-moz-transition: all 0.12s ease-in-out;
	-ms-transition: all 0.12s ease-in-out;
	-o-transition: all 0.12s ease-in-out;
	transition: all 0.12s ease-in-out;
}
aside ul.txt-nav li a.active,
.no-touchevents aside ul.txt-nav li a:hover {
	color: #E50019;
}

/* responsive tables */
table.responsive {width: 100%; margin-bottom: 2rem; border-collapse: collapse; border-spacing: 0;}
table.responsive tr:nth-child(2n) {background-color: #f5f5f5;}
table.responsive thead tr {background-color: #E50019; color: #fff; text-transform: uppercase;}
table.responsive th {text-align: left;}
table.responsive th[align="center"] {text-align: center;}
table.responsive th, table.responsive td {padding: 10px;}

/* NOT-responsive tables */
table.not-responsive {width: 100%; margin-bottom: 2rem; border-collapse: collapse; border-spacing: 0; border-bottom: 15px solid #E50019;}
table.not-responsive tr:nth-child(2n) {}
table.not-responsive thead tr {background-color: #E50019; color: #fff; text-transform: uppercase;}
table.not-responsive thead th {text-align: left;}
table.not-responsive th[align="center"] {text-align: center;}
table.not-responsive th, table.not-responsive td {padding: 15px; vertical-align: top;}
table.not-responsive tbody tr td {border-top: 1px solid #ddd;}
table.not-responsive tbody tr:first-child td {border-top: none;}


/* !PRODUCTIONS */
section#main-content .productions-list h2,
section#main-content.productions-archive aside h2 {
	color: #E50019;
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1.3rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 2rem;
}
.productions-list div.thumb {
	width: 100%;
	height: 250px;
	background: transparent url('') no-repeat center center / cover;
	margin-bottom: 1.6rem;
}
.productions-list a {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: all .2s ease-out;
}
.no-touchevents .productions-list a:hover {
	opacity: 0.75;
	transform: translateY(-10px);
}
section#main-content .productions-list h3 {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.3rem;
	font-weight: 500;
	text-transform: uppercase;
}
section#main-content .productions-list p {
	margin-top: .5rem;
}

/* cat pages */
section#main-content.productions-archive .productions-list div.thumb {
	height: 200px;
}
section#main-content.productions-archive aside,
section#main-content.productions-detail aside {
	border-left: 2px solid #E50019;
	padding-left: 2rem;
	padding-bottom: 1rem;
}

/* production detail */
div.quotes blockquote {
	margin: 4rem 0;
	padding-left: 3rem;
	border-left: 1rem solid #E50019;
	max-width: 80%;
}
div.quotes blockquote p.quote {
	margin-top: 0;
	font-size: 1.2rem;
}
div.quotes blockquote p.info {
	margin-bottom: 0;
}
ul.production-credits {
	margin: 0;
	padding: 0;
	list-style: none;
}
div.production-photos {
	margin: 3rem 0;
}
div.production-photos img {
	width: 100%;
}
div.production-photos a {
	display: block;
	text-decoration: none;
	transition: all .2s ease-out;
}
div.production-photos a:hover {
	opacity: 0.75;
}
div.production-photos div.photo {
	width: 100%;
	height: 150px;
	background: transparent url('') no-repeat center center / cover;
}
div.production-videos {
	margin: 3rem 0;
}
div.production-videos div.video {
	margin: 2rem 0;
	background: #000;
}
div.production-speeldata {
	margin: 4rem 0;
}
div.production-speeldata strong {
	font-weight: 500;
}
div.production-speeldata td.info {
	color: #999;
	font-size: 0.9rem;
}
div.production-speeldata td.info span {
	display: inline-block;
	line-height: 0.9rem;
}

section#main-content.productions-detail aside {
	border-color: #999;
	border-width: 1px;
}
section#main-content.productions-detail aside h3 {
	margin: 3rem 0 1.6rem 0;
}
section#main-content.productions-detail aside h3:first-child {
	margin-top: 2rem;
}
aside div.downloads ul.txt-nav li {
	line-height: 1.2rem;
	margin-bottom: 1rem;
}

section#main-content.productions-detail aside .productions-list h3 {
	color: #111;
	margin: 1rem 0;
}
/* via lib-func gedaan ($print_cat_titles)
section#main-content.productions-detail aside .productions-list h2,
section#main-content.productions-detail aside .productions-list hr {
	display: none;
}
*/
section#main-content.productions-detail aside .productions-list a:hover {
	transform: none;
}


/* !CALENDAR */
#calendar {
	
}
#calendar .row.prev-next {
	margin-bottom: 1.4rem;
}
#calendar .row.prev-next a {
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
}
#calendar .row.prev-next svg {
	width: 1.5rem;
	position: relative;
	top: 5px;
}
#calendar .row.prev-next svg path[fill] {
	fill: #E50019;
}
#calendar table tbody a {
	text-decoration: none;
}
.no-touchevents #calendar table tbody a:hover {
	text-decoration: underline;
}
#calendar table tbody span.disabled {
	color: #999;
}


/* !ARTISTS */

/* artists detail */
div.profile-img {
	width: 100%;
	height: 500px;
	margin: 1rem 0;
	background: transparent url('') no-repeat center center / cover;
}
div.profile-img.portrait {
	width: 50%;
}
div.artist-productions {
	margin: 4rem 0 2rem 0;
	padding-bottom: 5px;
	border-bottom: 15px solid #E50019;
}
div.artist-productions .row {
	margin: 0;
	border-bottom: 1px solid #ddd;
}
div.artist-productions .row:last-child {
	border-bottom: none;
}
div.artist-productions .heading {
	color: #fff;
	background-color: #E50019;
	text-transform: uppercase;
}
div.artist-productions .heading h4 {
	margin: 0;
	padding: .6rem 1rem;
}
div.artist-productions p {
	margin: 1rem;
}
div.artist-productions p a {
	text-decoration: none;
}
.no-touchevents div.artist-productions p a:hover {
	text-decoration: underline;
}


/* !PERSONS (wie-is-wie, artists, ...) */
.persons .person img {
	display: block;
	width: 100%;
}
.persons .person {
	position: relative;
}
.persons .person-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(229,0,25,0.6);
    opacity: 0;
}
.persons .person-overlay .inner {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    color: #fff;
    font-weight: 500;
}
.persons .person-overlay h2 {
    margin: 0;
    text-transform: uppercase;
}
.persons .person-overlay p {
	margin: 0;
}
.persons .person-overlay a {
	color: #fff;
}


/* !TIMELINE_HISTORY - tijdslijn, highlights page */
.timeline_history {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	margin: 2rem 0;
	padding: 1rem 0;
}
.timeline_history::after {
	content: '';
	position: absolute;
	width: 4px;
	background-color: #E50019;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
}
.timeline_history .container {
	padding: 10px 40px;
	position: relative;
	background-color: inherit;
	width: 50%;
}
.timeline_history .container::after {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	right: -11px;
	background-color: white;
	border: 4px solid #E50019;
	top: 15px;
	border-radius: 50%;
	z-index: 1;
}
.timeline_history .left {
	left: 0;
	float: none;
}
.timeline_history .right {
	left: 50%;
	float: none;
}
/* V1 arrows */
/*
.timeline_history .left::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	right: 31px;
	border: medium solid #f5f5f5;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent #f5f5f5;
}
.timeline_history .right::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	left: 30px;
	border: medium solid #f5f5f5;
	border-width: 10px 10px 10px 0;
	border-color: transparent #f5f5f5 transparent transparent;
}
*/
/* V2 lines */
.timeline_history .left::before {
	content: " ";
	position: absolute;
	z-index: 1;
	right: 0;
	top: 25px;
	height: 4px;
	width: 40px;
	background: #e50019;
}
.timeline_history .right::before {
	content: " ";
	position: absolute;
	z-index: 1;
	left: 0;
	top: 25px;
	height: 4px;
	width: 40px;
	background: #e50019;
}

.timeline_history .right::after {
	left: -13px;
}
.timeline_history .content {
	position: relative;
	padding: 20px 30px;
	background-color: #f5f5f5;
	border-radius: 6px;
}
.timeline_history .content h4 {
	color: #E50019;
	font-size: 1rem;
	font-weight: 400;
	margin: 0 0 .5rem 0;
	text-transform: uppercase;
}
.timeline_history .content img {
	width: 100%;
}
section#main-content .timeline_history .content h3 {
	margin: 1rem 0 0.5rem;
	font-size: 1.2rem;
	line-height: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
}
.timeline_history .content p {
	margin: 0 0 1rem 0;
}

@media screen and (max-width: 600px)
{
	.timeline_history {
		padding-bottom: 0;
	}
	.timeline_history::after {
		left: 28px;
	}
	.timeline_history .container {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}
	.timeline_history .container::after {
		top: 20px;
	}
	.timeline_history .container.left,
	.timeline_history .container.right {
		left: 0;
		padding: 5px 10px 25px 70px;
		text-align: left;
	}
	.timeline_history .container.left::after,
	.timeline_history .container.right::after {
		left: 15px;
	}
	
	/* V1 arrows */
	/*
	.timeline_history .container.left::before,
	.timeline_history .container.right::before {
		right: auto;
		left: 60px;
		border: medium solid #f5f5f5;
		border-width: 10px 10px 10px 0;
		border-color: transparent #f5f5f5 transparent transparent;
	}
	*/
	
	/* V2 lines */
	.timeline_history .container.left::before,
	.timeline_history .container.right::before {
		right: auto;
		left: 30px;
		top: 30px;
	}
}

/* !SEARCH */
form#search input[type="text"] {
	height: 50px;
	width: 80%;
	padding: 1rem;
	border: 1px solid #ccc;
	outline: none;
}
form#search input[type="submit"] {
	color: #fff;
	background-color: #E50019;
	border: 1px solid #E50019;
	font-weight: 700;
	padding: 0rem;
	cursor: pointer;
	
	height: 50px;
	width: 50px;
	text-indent: -9999px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 7.41 12'%3E%3Cpath d='M10,6,8.59,7.41,13.17,12,8.59,16.59,10,18l6-6Z' transform='translate(-8.59 -6)' fill='%23fff'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}
#main-content.search-results ul {
	margin-top: 0;
}


/* !404 */
.not_found_404 ul li {
	list-style: none;
	margin-left: -15px;
}
.not_found_404 ul li::before {
	content: '-';
	margin-right: 5px;
}

/* !FOOTER */
footer {
	padding: 2rem 0;
	color: #808080;
	background-color: #fff;
	border-top: 1px solid #ddd;
}
footer h3,
footer p {
	font-size: .9rem;
	margin: 0;
}
footer h3 {
	font-weight: 400;
	text-transform: uppercase;
}
footer .lang {
	color: #111;
	font-size: 1rem;
}
footer .lang a {
	color: #111;
	text-decoration: none;
}
footer .lang .active,
.no-touchevents footer .lang a:hover {
	color: #E50019;
}
footer ul.social,
footer ul.legal {
	display: inline-block;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	line-height: 1rem;
}
footer ul.social li,
footer ul.legal li {
	display: inline-block;
}

footer ul.social {
	margin-right: 1rem;
}
footer ul.social li {
	margin-right: .8rem;
}
footer ul.social li.flickr {
	vertical-align: 5px;
}
.no-touchevents ul.social li a:hover {
	opacity: 0.6;
}

footer ul.legal {
	font-size: .9rem;
}
footer ul.legal li {
	display: inline-block;
}
footer ul.legal li a {
	color: #808080;
	text-decoration: none;
}
.no-touchevents footer ul.legal li a:hover {
	text-decoration: underline;
}
footer ul.legal li::before {
	content: '\2022';
	margin: 0 5px 0 2px;
}
footer ul.legal li:first-child::before {
	display: none;
}

footer form#optin input[type="email"] {
	min-width: 55%;
	max-width: 80%;
	padding: .4rem .6rem;
	border: 1px solid #ccc;
	outline: none;
}
footer form#optin input[type="submit"] {
	color: #fff;
	background-color: #E50019;
	border: 1px solid #E50019;
	font-weight: 700;
	padding: .4rem .6rem;
	cursor: pointer;
	
	width: 30px;
	text-indent: -9999px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.41' height='12' viewBox='0 0 7.41 12'%3E%3Cpath d='M10,6,8.59,7.41,13.17,12,8.59,16.59,10,18l6-6Z' transform='translate(-8.59 -6)' fill='%23fff'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}

footer img.support {
	width: 171px;
	top: 25px;
}

/* !MEDIA */

/* Large and up */
@media screen and (min-width: 64em)
{
}
/* Medium and up */
@media screen and (min-width: 40em)
{
	/*header nav.main ul li a {color: blue;}*/
}
/* Down */
@media (max-width: 40em)
{
	
}
@media (max-width: 1150px)
{
	nav {
		display: none;
	}
	.hamburger {
		display: block;
	}
	#wrap {
		padding-top: 80px;
	}
	header {
		height: 80px;
	}
	#logo {
		width: 130px;
	}
	
	.banner .content h1 {
		font-size: 2rem;
		line-height: 2rem;
	}
	.banner .content h2 {
		font-size: 1rem;
		line-height: 1rem;
	}
	
	/* productions */
	section#main-content.productions-archive aside,
	section#main-content.productions-detail aside {
		padding-left: 1rem;
	}
	
	
	footer ul.legal {
		display: block;
		margin: 1rem 0;
	}
	footer ul.legal li {
		display: block;
		padding: .5rem 0;
	}
	footer ul.legal li::before {
		display: none;
	}
}
@media (max-width: 640px)
{
	.text-right {
		text-align: left;
	}
	.mobile-hidden {
		display: none;
	}
	
	/* Main-content */
	table.not-responsive th, table.not-responsive td {
		padding: 5px;
	}
	
	/* productions */
	section#main-content.productions-archive aside,
	section#main-content.productions-detail aside {
		border: none;
		padding: 0;
	}
	div.quotes blockquote {
		padding-left: 2rem;
	}
	div.production-photos div.photo {
		height: 250px;
	}
	
	/* calendar */
	#calendar .text-right {
		text-align: right;
	}
	#calendar .row.prev-next a {
		font-size: 1rem;
		letter-spacing: 0;
	}
	#calendar .row.prev-next svg {
		width: 1.4rem;
	}
	
	/* artists */
	div.profile-img.portrait {
		width: 100%;
	}
	
	
}
@media (max-width: 480px)
{
	#logo {
		width: 90px;
	}
	header .btn.download {
		position: absolute;
		bottom: auto;
		top: 80px;
		left: 50vw;
		transform: translate(-50%,-0%);
		width: 80%;
		height: auto;
		text-align: center;
		line-height: 28px;
		margin-left: 0;
	}
	
	/* productions */
	div.quotes blockquote {
		max-width: 90%;
	}
	div.production-photos div.photo {
		height: 220px;
	}
	
}

@media (max-width: 380px)
{
	form#search input[type="text"] {
		width: 70%;
	}
}