
/* - - - typographie - - - */

body {
	background: #FFFFFF;
	color: #fffbd9;
	font-family: 'Slabo 27px', serif;
	font-weight: 400;
	font-size: 23px !important;
	line-height: 1.4;
}

a {
	color: #fffbd9;
}

a:focus {
	outline: none;
}

h2 {
	font-family: 'Slabo 27px', serif;
	font-weight: 700;
	font-size: 45px;
	margin-bottom: 40px;
	letter-spacing: 3px;
}

.text-shadow {
	text-shadow:
		0px 0px 10px black,
		0px 0px 10px black,
		0px 0px 10px black,
		0px 0px 10px black,
		0px 0px 10px black;
}


/* - - - clearfix - - - */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}


/* --- calendar --- */
.calendar {
	text-align: center;
}

.calendar h1 {
	font-size: 50px;
	letter-spacing: 15px;
	margin: 0;
}


/* --- background --- */

.background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.background img {
	width: 100%;
}

img.bg {
  min-height: 100%;
  min-width: 1024px;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
}


/* - - - custom layout - - - */

.cl-container {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}


/* - - - animations - - - */

/* styles needed by the plugin */
.animatedimage {
	position: absolute;
	display: inline-block;
	line-height: 0;
	overflow: hidden;
}

.animatedimage > * {
	position: absolute;
	display: inline-block;
	visibility: hidden;
	border: 0;
	pointer-events: none;
}

/* the image that will show while waiting for javascript to load, and what users without javascript will see - if you don't want to use a class you might use *:first-child to select this instead */
.animatedimage > .poster {
	position: static;
	visibility: visible;
}

/* spritesheets will rely on left/top positioning */
.animatedimage[data-spritesize] > * {
	position: relative;
}


/* - - - bgvideo - - - */

.bgvideo,
.bgimg {
	min-width: 100vw; 
	max-width: 177.78vh; /* 16/9 = 1.778 */
	min-height: 100vh;
	max-height: 56.25vw; /* height:width ratio = 9/16 = .5625  */
/*	max-height: 177.vh; */
	position: fixed;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 2;
}

.bgimg {
	display: none;
}

@media only screen and (max-device-width: 480px) {
	.bgvideo {
		display: none;
	}
	.bgimg {
		display: block;
	}
}


/* - - - videolink - - - */
#videolink {
/*	background-image: url(/public/img/projector.svg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain; */
	cursor: pointer;
	display: block;
	margin: 50px auto;
	width: 30%;
}

#videolayer {
	background: rgba(0,0,0,1);
	display: none;
	overflow: hidden;
	position: fixed;
	z-index: 1100;
}

#videolayer .closebtn {
	cursor: pointer;
	height: 60px;
	position: absolute;
	left: 20px;
	top: 20px;
	width: 60px;
	z-index: 1101;
}

#videolayer .closebtn svg {
	fill: #ffffff;
}

#videolayer .closebtn:hover svg {
	fill: #f83689;
}

#videolayer .iframe_embed {
/*    padding-bottom: 56.25%; ratio 16x9 */
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

#videolayer .iframe_embed > iframe,
#videolayer .iframe_embed > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 1100;
}


/* - - - live - - - */

.livestream {
	display: none;
	position: fixed;
	z-index: 12;
	right: -35px;
	bottom: -24px;
	width: 316px;
    -ms-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -o-transform: rotate(10deg);
	transform: rotate(10deg);
	cursor: pointer;
	transition: bottom 0.4s ease-in-out, right 0.4s ease-in-out;
}

.livestream img {
	width: 100%;
}

.livestream.shiftout {
	bottom: -120px;
	right: -180px;
	transition: bottom 0.4s ease-in-out, right 0.4s ease-in-out;
}



/* - - - loading - - - */
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loading {
	display: none;
	position: fixed;
	z-index: 1099;
	width: 10vw;
	height: 10vw;
	left: 45vw;
	top: calc(50vh - 5vw);
	-ms-transform-origin: 50% 50%;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-animation: rotating 2s linear infinite;
	-moz-animation: rotating 2s linear infinite;
	-ms-animation: rotating 2s linear infinite;
	-o-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;
}

.loading > img {
	width: 100%;
}


/* - - - page menu - - - */

.page-menu-start {
	position: fixed;
	z-index: 10;
}

.page-menu-start a {
	display: block;
	position: fixed;
}

.page-menu-start a img,
.livestream img {
	width: 100%;
/* 	filter: sepia(15%) hue-rotate(-5deg) contrast(100%) opacity(100%); */
	filter: saturate(80%) hue-rotate(0deg) contrast(130%);
}

.sepia {
	filter: sepia(15%) hue-rotate(5deg) brightness(105%) opacity(100%);
}

.page-menu-start #menu-rumlurchen img {
	/* filter: brightness(90%) sepia(30%) saturate(180%); */
}

.page-menu-start #menu-tanzprogramm {
	left: 2px;
	top: 11px;
	width: 333px;
}

.page-menu-start #menu-klangbooking {
	left: 32px;
	top: 122px;
	width: 281px;	
}

.page-menu-start #menu-vinyl {
	left: 33px;
	top: 199px;
	width: 160px;
}

.page-menu-start #menu-rumlurchen {
	left: -71px;
	bottom: 2px;
	width: 499px;
	filter: sepia(15%) hue-rotate(-5deg) brightness(80%) opacity(100%);
}

.page-menu-start #menu-kontakt {
	right: 45px;
	top: 15px;
	width: 221px;
}

.page-menu-start #menu-newsletter {
	right: 19px;
	top: 114px;
	width: 223px;
}

.page-menu-start #menu-lostandfound {
	right: 58px;
	top: 217px;
	width: 161px;
}


/* - - - page menu text - - - */

.page-menu-text {
	position: fixed;
	z-index: 10;
	bottom: 20px;
	right: -580px;
	transform: rotate(-90deg);
	transform-origin: left bottom;
	width: 600px;
	font-family: 'Slabo 27px', serif;
	font-weight: 400;
	font-size: 23px !important;
	line-height: 40px !important;
}

.page-menu-text a {
	margin-right: 20px;
	color: #fffbd9;
	text-decoration: none;
}

.page-menu-text a:hover {
	text-decoration: underline;
}


/* - - - content - - - */

.content {
	position: relative;
	z-index: 9;
	padding-bottom: 80px;
}

.page-start .content {
	width: 600px;
	margin: 400px auto 100px auto;
	text-align: center;
}

.page-newsletter .content,
.page-kontakt .content,
.page-lostandfound .content {
	position: absolute;
	left: 100px;
	top: 100px;
}


/* - - - form - - - */

.sisy-form {
	position: relative;
}

.sisy-form .form-group {
	width: 300px;
	position: absolute;
}

.sisy-form label {
	display: block;
	width: 300px;
	text-align: center;
	margin-bottom: -9px;
	position: relative;
	z-index: 2;
}

.sisy-form input {
	background: transparent;
	border: 2px solid #fffbd9;
	height: 35px;
	width: 300px;
	position: relative;
	z-index: 1;
	text-align: center;
}

.sisy-form button {
	background: #fffbd9;
	color: black;
	padding: 5px 15px;
	border: 2px solid #fffbd9;
}

.sisy-form button:hover {
	background: transparent;
	color: #fffbd9;
}


/* - - - vinyl - - - */

.vinyl-box {
	color: white;
	text-align: center;
	text-shadow: 0px 0px 10px black, 0px 0px 10px black, 0px 0px 10px black, 0px 0px 10px black, 0px 0px 10px black;
}

.vinyl-box h1 {
}

.vinyl-itemcontainer {
	margin: 50px auto 0 auto;
}

.vinyl-item {
	display: inline-block;
	width: 200px;
}

.vinyl-description {
	font-size: 16px;
	text-transform: uppercase;
}

.vinyl-image {
	width: 200px;
	height: 200px;
}

.vinyl-image img {
	width: 100%;
}

.vinyl-paypal {
	width: 200px;
}

@font-face {
	font-family: 'comicjens';
	src: url("../fonts/ComicJensFreePro-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}


.container {
	position: relative;
	z-index: 3;
	max-width: 800px;
	margin: 0 auto;
	padding-bottom: 100px;
	
	font-family: 'Annie Use Your Telescope', cursive;
	font-size: 25px; line-height: 1.5;
	letter-spacing: 3px;
	color: #fff;
}

.container strong {
	font-weight: 700;
}

.container a {
	color: #fff;
	letter-spacing: 5px;
}

.container a:hover {
	text-decoration: none;
	color: #f13;
}

.full-width {
	width: 100%;
}

.pattern {
	opacity: 1;
	background-image: url('../img/pattern/wave2-t-b.png');
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 1000%;
}

.container h3 {
	font-size: 50px;
	letter-spacing: 15px;
	text-transform: uppercase;
}

.container h3 span {
	display: inline-block;
}

.container h4 {
	font-size: 20px;
	letter-spacing: 5px;
	text-transform: uppercase;
	margin-top: 50px;
}

/*.windspiel-filter {
	filter: contrast(150%) brightness(80%);
}

.lampen-filter {
	filter: saturate(140%) brightness(80%) hue-rotate(0deg);
}*/

.blended-background {
/* 	background-color: rgba(255,0,0,0.5); */
	mix-blend-mode: screen;
	color: red;
}

.objects-divider {
	background:
		url('../img/objects/figur-flipped.png'),
		url('../img/objects/figur.png');
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		left top,
		right top;
	background-size:
		contain,
		contain;
	height: 200px;
	width: 100%;
	margin: -180px auto 0 auto;
	
	
}



.background-start {
	position: fixed;
	background-image: url('../media/startseite/startseite1.jpg');
	background-size: cover;
	background-position: center top;
	filter: contrast(120%) brightness(70%) hue-rotate(-10deg);
}

.letter-layer {
	opacity: 1;
	position: fixed;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.letter-layer img {
	position: absolute;
}

p {
	margin-top: 25px;
	margin-bottom: 25px;
	
}

.d {
	margin-top: 25px;
	margin-bottom: 25px;
}

.d-bottom {
	margin-bottom: 25px;
}

.d-double-top {
	margin-top: 50px;
}

.d-double-bottom {
	margin-bottom: 50px;
}

.d-double {
	margin-top: 50px;
	margin-bottom: 50px;
}

h3.runa-type {
	margin: 0 0 0px 0;
}

.runa-type span {
	display: inline-block;
	margin: 0 0;
	width: 90px;
}

.runa-type span.runa-type-i {
	width: 60px;
}

.runa-type-blank {
	width: 50px;
}

.runa-type img {
	width: 100%;
}

.runa-type-collapse {
	width: 80%;
	margin: 0 auto;
}

.ew-form-2 .form-control {
	background: transparent;
	border-radius: 0px;
	border: 2px solid white;
	color: white;
}

.ew-form-2 label {
	display: block;
	font-size: 20px;
}

.ew-form-2 label.en {
	color: #fff1e4;
}

.ew-form-2 input[type="checkbox"] {
	width: auto;
	height: auto;
	transform: scale(2);
	display: inline;
	margin-left: 15px;
	margin-right: 5px; 
}

.ew-form-2 label.cb {
	display: inline;
}

.ew-form-2 button,
.ew-form-2 a {
	letter-spacing: 5px;
	font-weight: bold;
}

.ew-form-2 button.disabled,
.ew-form-2 a.disabled {
	border-color: #999;
	color: #999;
	cursor: default;
	pointer-events: none;
}

.ew-form-2 button:hover,
.ew-form-2 a:hover {
	background: white;
	color: black;
}

.ew-form-2 button.disabled:hover,
.ew-form-2 a.disabled:hover {
	background: #999;
}

.box {
	margin: -20px -40px;
	padding: 20px 40px;
	border: 3px double white;
	background: rgba(0,0,0,0.3);
}

.menu-link {
	display: block;
	position: fixed;
	z-index: 1002;
	top: 30px;
	left: 30px;
	width: 80px;
	perspective: 1000;
}

.menu-link.active img {
	transform: rotateY(180deg);
}

.menu-link img {
	width: 100%;
	transition: 0.6s;
	transform-style: preserve-3d;
	position: relative;
}

body.page-home .menu-link {
	display: none;
}

body {
	overflow-x: hidden;
}

#menu {
	position: fixed;
	left: -100vw;
	z-index: 1001;
	background: rgba(0,0,0,0.6);
	width: 100vw;
	height: 100vh;
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px;
}

#menu a {
	display: block;
	padding: 0px 0px;
	text-align: center;
}

#menu .runa-type span {
	width: 50px;
}

#menu .runa-type span.runa-type-i {
	width: 30px;
}

@media (max-width: 700px) {

	#menu .runa-type span {
		width: 7vw;
	}
	
	#menu .runa-type span.runa-type-i {
		width: 4vw;
	}

}


main {
	position: relative;
}

body.rumlurchen main {
	height: 100vh;
}


.col-sm-6:first-child {
	padding-right: 25px;
}

.col-sm-6:last-child {
	padding-left: 25px;
}


/* - - - forms - - - */
input[type="text"], textarea {

  background-color : #000000;
  color : #FFFFFF;

}
input.email, textarea { 
background: #000000; 
color: #FFFFFF;
}
.responsive {
  max-width: 100%;
  height: auto;
}

#newsletter-button,
#lostandfound-button {
	cursor: pointer;
	max-width: 250px;
	margin: 0 auto;
	
}
}

#newsletter,
#lostandfound {
	height: 0;
	overflow: hide;
	transition: height 0.4s ease-in-out;
	background: #000;

}
}

#newsletter.active,
#lostandfound.active {
	height: 1500px;
	 text-align:center;
}
}


/* - - - center columns and rows - - - */
.row-centered {
    text-align:center;
}
.col-centered {
    display:inline-block;
    float:none;
    /* reset the text-align */
    text-align:center;
    /* inline-block space fix */
    margin-right:-4px;
}
