﻿* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	/*background: linear-gradient(to right, #fff, #d2c2a9 10%, #d2c2a9 90%, #fff);*/
	//#879dcc; //#4a0103;
		/*radial-gradient(black 15%, transparent 16%) 0 0,
		radial-gradient(black 15%, transparent 16%) 8px 8px,
		radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 0 1px,
		radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 8px 9px;*/
		background-color:#0a1e37;
		background-size:16px 16px;	
		color: #DDD;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 1em;
}

header {
	padding: 0px;
	margin: 0px;
}

main {
	padding: 0px;
	margin: 0px;
}

h1 {
	font-size: 2.8em;
	font-weight: bold;
}

h2 {
	font-size: 2.0em;
	font-weight: bold;
}

h3 {
	font-size: 1.8em;
	font-weight: bold;
}

p, ul {
	font-size: 1.5em;
}

a, a:hover, a:visited  {text-decoration: none; color: #DDD;}


#grid{
	display: inline-block;
	float: left;
	width: 100%;
	height: 100%;
	
	/*background-image: url("butterfly1.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center-top;*/
}

.footer {
	position: absolute;
	left:0px;
	bottom:0px;
}

.container { margin-bottom: 35px; }
.container:last-of-type { margin-bottom: 0px;}

.details { width:850px; margin:auto; border: 1px solid #EEE; border-radius: 10px; display: inline-block; overflow: hidden; color: #FFF }
.details[open] { border-radius: 10px; }
.summary { font-size: 1.5em; font-weight: bold; background-color: #CCC; text-align:left; padding: 5px 5%; color: #fff}

.details > div > div { font-size: 1.5em; text-align: left; padding: 10px; }
.details div.event:nth-child(even) { background-color: #888; }
.details div.event:nth-child(odd) { background-color: #555; }

.youtube { 
	margin: auto;
	padding-top: 35px;
	width: 850px;
	text-align: center;
	font-size: 1.5em; 
}

div.event{ display:grid; grid-template-columns: 4% auto auto 20% 4%; grid-auto-flow: auto; }

div.ticketdiv { text-align: right !important;}

div#infos {padding: 20px !important; }

.short-info {}

.short-content {
	border-bottom: 1px solid #EEE;
	border-top: 1px solid #EEE;
	padding: 10px 0px;
}


.headline {
	margin:auto;
    margin-top: 35px;
	width: 850px;
	text-align: center;
	font-size: 1.75em;
	font-weight: bold; 
	
	text-shadow: -1px 0 #b33636, 0 1px #b33636, 1px 0 #b33636, 0 -1px #b33636;
}

.description {
	margin: auto;
	padding-top: 35px;
	width: 850px;
	text-align: center;
	font-size: 1.5em;
}

.main-stack {
	display: inline-block;
	width: 100%;
	text-align:center;
	padding: 35px;
}

.no-bottom {
	padding-bottom: 0px !important;
}

#container {
	display: inline-block;
	position: relative;
	text-align: center;
}

.topmenu {
	margin:auto;
	width: 850px;
	margin-top: 35px;
}

.menupoint {
	display: inline-block;
	padding: 0 20px;
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	color: #EEE; //rgb(238, 238, 238);
	background: #696969;
	transition: color 1s;
	width: 278px;
	padding: 10px;
	border-radius: 10px;
	border: solid #DDD 1px;
	
	text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}

.bg-red {
	background-color: #7784bb !important;
}

.bg-yellow {
	background-color: #f4986b !important;
}

.short-header { 
	width: 850px;
	margin: auto;
	font-size: 1.5em;
	text-align: left;
	font-weight: bold;
	color: #ffffff;
}
.short-content {
	width: 850px;
	margin: auto;
	font-size: 1.5em;
	text-align: left;
}

#pictures {
	display: inline-block;
	position: relative;
	margin-top: 35px;
	width: 100%;
	height: 338px;
}

iframe {
	border:0;
}

.underline {
	text-decoration: underline;
	color: #DDD;
}

/***************** Animation Stuff ******************/
#pictures img {
	position: absolute;
		left: 50%;
		top: 0px;
		transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		
	-webkit-animation-name: picturesFadeInOut;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 15s;

	-moz-animation-name: picturesFadeInOut;
	-moz-animation-timing-function: ease-in-out;
	-moz-animation-iteration-count: infinite;
	-moz-animation-duration: 15s;

	-o-animation-name: picturesFadeInOut;
	-o-animation-timing-function: ease-in-out;
	-o-animation-iteration-count: infinite;
	-o-animation-duration: 15s;

	animation-name: picturesFadeInOut;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 15s;
}

@keyframes picturesFadeInOut {
	0% {
		opacity:1;
	}
	25% {
		opacity:1;
	}
	33% {
		opacity:0;
	}
	88% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}

#pictures img:nth-of-type(1) {
	-webkit-animation-delay: 10s;
	-moz-animation-delay: 10s;
	-o-animation-delay: 10s;
	animation-delay: 10s;
}
#pictures img:nth-of-type(2) {
	-webkit-animation-delay: 5s;
	-moz-animation-delay: 5s;
	-o-animation-delay: 5s;
	animation-delay: 5s;
}
#pictures img:nth-of-type(3) {
	-webkit-animation-delay: 0s;
	-moz-animation-delay: 0s;
	-o-animation-delay: 0s;
	animation-delay: 0s;
}


/***************** Cookie Stuff *********************/
#cookie-popup {
	text-align: center; 
	background: #555;
	position: fixed;
	bottom: 0px; 
	left: 0;
	right: 0;
	z-index: 9999;
	font-size:1.5em; 
	line-height:20px;
	padding: 20px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
	color: #DDD;
	border-top: 1px white solid;
	display: none;
}

#cookie-popup a,#cookie-popup a:visited,#cookie-popup a:hover,#cookie-popup a:active,#cookie-popup a:focus {
	color: #FFF;
	text-decoration: none;
}
 
#cookie-popup.hidden {
  display: none;
}

button {
	
}


/***************** Table **************/
.event-header {
	margin:auto;
	margin-top: 70px;
	margin-bottom: 35px;
	width: 850px;
	text-align: center;
	font-size: 2.4em;	
}

.event-header:first-child {
	margin-top: 0px;
}

div.table{
	width: 850px;
	margin: auto;
	display: table;
	font-size: 2em;
	border-collapse:separate;
}

div.table > div {
	display: table-row;
}

div.table > div > div:not(.colspan) {
	display: table-cell;
	padding: 5px 10px;
	vertical-align: middle;
	table-layout: fixed;
}

div.table-space {
	padding: 35px !important;
	border: !important;
}

div.column:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	border: 1px solid #CCC;
}

div.column:not(:last-child):not(:first-child) {
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
}

div.column:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border: 1px solid #CCC;
	background: #555; //#838383;
	color: #FFF;
}

div.month {
	font-size: 1em;
}

div.day {
	font-weight: bold;
	font-size: 2em;
	color: #FFF;
}

div.year {
	font-size: 1em;
}

div.caption {
	text-align: left;
	font-size: 1.5em;
	font-weight: bold;
	padding-left: 10px;
}

div.text {
	text-align: left;
	font-size: 1.2em;
	padding: 0px 10px;
}

div.inline-link {
	cursor: pointer;
	letter-spacing: -5px;
	color: #9CF;
	transition: color 1s;
}

a.link {
	cursor: pointer;
	//letter-spacing: -5px;
	
	color: #9CF;
	transition: color 1s;
}

a.link:hover {
	color: #FFF;
}

/*.date {
	text-align:center;
	padding:10px;
	font-weight: bold;
	min-width: 150px;
}*/

#date-text {
	text-align: left;
	word-wrap: break-word;
}

a.tickets {
	padding: 2px 10px;
	border-radius: 10px;
    font-weight: bold;
	cursor: pointer;
	color: #FFF;
	background-color: #b37474;
	text-decoration: none;
}

a.sold {
	text-decoration: line-through !important;
}

a.highlight, a.highlight:hover, a.highlight:visited {
	text-decoration: underline !important;
}

#modal-faq a {
	color: #000;
}

#modal-program a {
	color: #000;
}	

img {
	border-radius: 10px;
	border: 1px solid #DDD;
}

.inner-box {
	display: inline-block;
	padding: 0 20px;
	font-size: 2em;
	color: #BBB;
	text-align: center;
}

.facebook {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto';
	font-weight: bold;
	font-size: 1em;
	
}

.inner-box a,.inner-box a:visited,.inner-box a:focus,.inner-box a:active,.inner-box a:hover {
	text-decoration: none;
	color: #BBB;
}

.inner-box:first-child {
	text-align: right;
}

.inner-box:last-child {
	border-left: 1px solid #666;
	text-align: left;
}

.inner-box:not(:first-child) {
	border-left: 1px solid #EEE;
	text-align: left;
}

/****************** modal styles *******************/

#modal-opacity {
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.5;
	z-index: 2;
	display: none;
}

.modal-window {
	z-index: 3;
	
	opacity: 1.0;
	
	border-radius: 10px;
	
	display: none;
	float: left;
	font-size: 1.5em;
	//overflow: auto;
	
	color: #000;
}

.exit {
	position: absolute;
		right: 0px;
		top: 0px;
	color: #555;
	text-align: center;
	padding: 0 10px;
	font-weight: normal;
	cursor: pointer;
}

/****************** modal info styles *******************/

#modal-info {
	border: 1px solid #FFF;
	background: #EEE;
}

#modal-info > div.title {
	padding: 30px 50px;
	font-size: 0.8em;
	font-weight: bold;
}

#modal-info > div.description {
	text-align: left;
	padding: 0 50px;
	padding-bottom: 30px;
	width: 100%;
	font-size: 0.8em;
	margin: 0;
}

#modal-info .link {
	letter-spacing: 0px !important;
	font-weight: bold;
}

#link2tickets {
	font-size: 2em;
	
	padding: 20px;
	
	text-align: left;
	cursor: pointer;
	transition: color 1s ease;
	
	color: #555;
}

#link2tickets > div {
	display: inline-block;	
	vertical-align: middle;
}

#link2tickets > div.small {
	font-size: 0.6em;
	letter-spacing: -5px;
	vertical-align: middle;
	padding: 0 30px;
	color: #9CF;
}

#link2tickets:hover {
	color: #FFF;
}

#modal-info .imgDiv {
	padding: 0 50px;
}

/****************** modal tickets styles *******************/

#modal-tickets {
	display: none;
	
	background: #EEE;
	color: #555;
	border: solid 1px #FFF;
	
	position: absolute;
		top: 130px;
		left: 50%;
		transform: translate(-50%, 0);
		width: 650px;
		
	-ms-scroll-limit: 0 0 0 0;
}

#modal-tickets > section {
	margin: 0 50px;
	border-radius: 10px;
}

.radio-group {
	border: solid 1px #000;
	display: inline-block;
	border-radius: 10px;
	overflow: hidden;
	background-color: #CCC;
	color: #555;
}

input.hidden {
	display: none;
}

input[type=radio] {
	position: absolute;
	opacity: 0;
}

input[type=radio] + label {
	display: inline-block;
	cursor: pointer;
	font-weight: bold;
	padding: 5px 20px;
	text-align: center;
	background-color: #FFF;
}

input[type=radio]:checked + label{
	color: #FFF;
	background: #555;
}

input[type=radio] + label {
	border-left: solid 1px #555;
}

.radio-group > input[type=radio]:first-child + label {
	border-left: none;
}

#tickets-price {
		float:right;
		padding: 5px;
	}

input {
	border: 1px solid #555;
	border-radius: 10px;
	padding: 5px 20px;
	resize: none;
	font-size: 1em;
	width: 100%;
}

textarea {
	border: 1px solid #FFF;
	padding: 5px 10px;
	resize: none;
	font-size: 1em;
	width: 100%;
	outline: none;
	font-family: inherit;
	font-size: inherit;
}

div#textarea {
	border: 1px solid #555 !important;
	border-radius: 10px;
	padding: 5px;
	resize: none;
	width: 100%;
	outline: none;
	background: #FFF;
	margin-bottom: 40px;
}

#order-form {
	display: inline-block;
	font-size: 1em;
	width: 100%;
}

#order-form > div.title {
	display: inline-block;
	text-align: left;
	width: 100%;
	color: #000; //#7E0002;
}

div.title > div.caption {
	font-weight: bold !important;
	font-size: 1em !important;
	text-align: left !important;
	padding-left: 0px !important;
}

#order-form > label {
	display: block;
	font-size: 0.8em;
	font-weight: normal;
	padding-bottom: 10px;
}

#order-form > div:last-child {
	padding-top: 40px;
}

#ticket-count {
	display: inline-block;
}

#ticket-count > span {
	margin: 0 20px;
}

.names > div:first-child {
	padding: 0 0 10px 0;
}

.adress > div {
	display: inline-block;
}

.adress > div:first-child {
	padding: 0 0 10px 0;
}

.contacts > div:first-child {
	display: inline-block;
	padding: 0 0 10px 0;
}


button {
	font-size: 1em;
	padding: 5px 20px;
	border: 2px solid #555;
	border-radius: 10px;
	font-weight: bold;
	background-color: rgb(224,235,254);
	color: #555;
	cursor: pointer;
}

.hint{
	font-size:0.8em; 
	padding-top: 30px;
	color: #AAA;
}

#footer {
	position: relative;
		bottom: 0;
		left: 0;
	
	display: inline-block;
	width: 100%;
	margin: auto;
	text-align: center;
	padding: 15px;
	background: #000;
	color: #EEE;
}

#footer > div {
	display: inline-block;
	width: 48%;
	cursor: pointer;
}

#footer > div > label{
	cursor: pointer;
}

div.link {
	font-weight: bold;
	font-size: 1.2em;
	margin: 50px 50px 50px 200px;
	cursor: pointer;
}

div.active {
	background: #EEE;
	color: #000;
}

div.active > label {
	background: #EEE;
}


/****************** modal impressum styles *******************/

.modal-simple {
	display: hidden;
		
	background: #EEE;
	//color: #555;
	border: solid 1px #FFF;
}

.modal-simple > section {
	padding: 50px;
	width: 100%;
	font-size: 1.0em;
}

.modal-simple > section > div.title {
	font-weight: bold;
}

.modal-simple > section > div.title:first-child {
	//font-size: 1.1em;
	//padding-bottom: 30px;
}



/****************** media styles *******************/

@media screen and (orientation:portrait) {
	body { background: #000000; }
	
	.container { margin-bottom: 30px; }

	.details { width:850px; margin:auto; border: 1px solid #EEE; border-radius: 10px; display: inline-block; overflow: hidden; color: #FFF; }
	.details[open] { border-radius: 10px; }
	.summary { font-size: 1.5em; font-weight: bold; background-color: #DDD; text-align:left; padding: 5px 3%; color: #000}

	.details > div > div { font-size: 1.5em; text-align: left; padding: 10px; }
	.details div.event:nth-child(even) { background-color: #262626; }
	.details div.event:nth-child(odd) { background-color: #656565; }

	div.event{ display:grid; grid-template-columns: 2% auto auto 20% 2%; grid-auto-flow: auto; }

	div.ticketdiv { text-align: right !important;}
	
	
	.modal-window {
		font-size: 3.5em;
	}
	
	#modal-info {
		position: absolute;
			top: 130px;
			left: 0;
			//transform: translate(-50%, 0);
			height: 100%;
			width: 100%;
		overflow-y: auto;
	}
	
	#modal-info > div.description {
		//font-size: 0.7em;
	}
	
	#modal-tickets {
		position: absolute;
			width: 100%;
			height: 100%;
		padding: 20px 0;
		overflow-x: hidden;
		//overflow-y: hidden;
	}
	
	.exit {
		font-size: 1.1em;
		padding: 0 20px 10px;
	}
	
	input[type=radio] + label {
		padding: 20px 35px;
	}
	
	#tickets-price {
		float:right;
		padding: 20px;
	}
	
	input {
		padding: 20px 20px;
	}
	
	#order-form > .title {
		padding: 40px 0px;
	}
	
	#order-form > label  {
		margin-top: 40px !important;
	}
	
	#order-form > label.radio + div {
		margin-bottom: 40px !important;
	}

	#order-form > div:last-child {
		margin-top: 50px;
		margin-bottom: 70px !important;
	}
	
	button {
		padding: 20px 35px; 
	}
	
	.hint{
		padding-top:70px;
	}
	
	.modal-simple {
		position: fixed;
			top: 130px;
			left: 50%;
			transform: translate(-50%, 0);
			width: 100%;
			height: 90%;
			overflow-x: hidden;
	}
}

@media screen and (orientation:landscape) {
	.container { margin-bottom: 35px; }

	.details { width:850px; margin:auto; border: 1px solid #EEE; border-radius: 10px; display: inline-block; overflow: hidden; color: #FFF }
	.details[open] { border-radius: 10px; }
	.summary { font-size: 1.5em; font-weight: bold; background-color: #DDD; text-align:left; padding: 5px 5%; color: #000}

	.details > div > div { font-size: 1.5em; text-align: left; padding: 10px; }
	.details div.event:nth-child(even) { background-color: #262626; }
	.details div.event:nth-child(odd) { background-color: #656565; }

	div.event{ display:grid; grid-template-columns: 4% auto auto 20% 4%; grid-auto-flow: auto; }

	div.ticketdiv { text-align: right !important;}
	
	
	#modal-info {
		position: absolute;
			top: 130px;
			left: 50%;
			transform: translate(-50%, 0);
			width: 650px;
		padding-bottom: 1px;
	}
	
	#modal-tickets {
		overflow: hidden;
	}
	
	#order-form > .title {
		margin: 20px 0px;
	}
	
	#order-form > label  {
		margin-top: 20px !important;
	}
	
	#order-form > label.radio + div {
		margin-bottom: 20px !important;
	}

	#order-form > div:last-child {
		margin-bottom: 35px !important;
		//text-align: right;
	}
	
	.modal-simple {
		position: absolute;
		top: 129px;
		left: 50%;
		transform: translate(-50%, 0);
		width: 650px;
		overflow: hidden;
	}
}
