@font-face {
  font-family: Bliss Web;
  src: url('../assets/fonts/blsw-lt/blsw-lt.eot');
  src: url('../assets/fonts/blsw-lt/blsw-lt.woff') format('woff');
  src: url('../assets/fonts/blsw-lt/blsw-lt.woff2') format('woff2');
}

@font-face {
  font-family: Bliss Web;
  src: url('../assets/fonts/blsw-bd/blsw-bd.eot');
  src: url('../assets/fonts/blsw-bd/blsw-bd.woff') format('woff');
  src: url('../assets/fonts/blsw-bd/blsw-bd.woff2') format('woff2');
  font-weight: bold;
}

* {
	font-family: 'Bliss Web', Arial, sans-serif !important;
}
html {
	font-size: 16px;
}
body {
	font-family: Bliss Web, Arial, sans-serif !important;
	font-weight: normal;
	margin: 0;
	padding: 0;
	
}
b {
	font-family: Bliss Web, Arial, sans-serif !important;
	font-weight: bold;
}
a {
	text-decoration: underline;
	color: currentColor;

}
@media screen and ( max-width: 767px ) {
	html {
		font-size: 14px;
	}
}

.wrapper {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	min-height: 540px;
	overflow: hidden;
	background-color: rgba(0,0,0,0);
	transition: .25s ease-in-out;
}
/* .wrapper:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,1);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	transition: .3s;
} */
.wrapper {
	background-image: url('../assets/backgrounds/bg-tag.jpg');
	transition: .3s;
	background-size: cover;
	background-repeat: no-repeat;

}
.wrapper.night {
	background-image: url('../assets/backgrounds/bg-nacht.jpg');
}

@media screen and ( max-width: 767px ) {
	.wrapper.bg1:before {
	background-image: url('../assets/backgrounds/1-mobile.jpg') !important;
	}
	.wrapper.bg2:before {
		background-image: url('../assets/backgrounds/2-mobile.jpg') !important;
	}
}

/* **************************
* 	Logo
* **************************/
.logo {
	box-sizing: border-box;
	color: #fff;	
	height: 80px;;
	margin: 0 auto;
	margin-top: 5vh;
	margin-left: 10vw;
}
.logo img {
	height: 100%;
}
@media screen and ( max-width: 767px ) {
	.logo {
		margin-top: 3vh;
		height: 60px;
	}
}

/* **************************
* 	Buttons
* **************************/
.buttons-wrapper {
	box-sizing: border-box;
	position: relative;
	margin: 10vh auto 3.5em auto;
	width: 275px;
	font-size: 1.2rem;
}
.buttons-wrapper ul {
	margin: 0;
	padding: 0;
}
.buttons-wrapper ul li {
	background-color: #575757;
	color: #fff;
	list-style: none;
	margin-bottom: 1.6rem;
	border-radius: .4rem;
}
.buttons-wrapper ul li a {
	position: relative;
	text-decoration: none;
	display: block;
	cursor: pointer;
	padding: 1rem .6rem;
}
.buttons-wrapper ul li a:after {
	content: "";
	position: absolute;
	background-image: url('../assets/icons/icon_+.png');
	background-size: 100% 100%;
	width: 1rem;
	height: 1rem;
	top: 1.2rem;
	right: .6rem;
}

.content-popup-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 100;
}
/* .content-popup-wrapper.active {
	display: flex;
} */
.content-popup-inner {
	position: relative;
	margin: 0 auto;
	background-color: #575757;
	color: #fff;
	width: 40vw;
	max-width: 600px;
	line-height: 1.8;
	padding: 1rem;
	border-radius: .8rem;
	opacity: 0;
	transition: .25s;
	
	display: none;
}
.content-popup-inner.visible {
	opacity: 1;
	transition:  .25s;
	/* display: block; */
}
.content-popup-inner .content-popup-close,
.imprint-content .imprint-popup-close, 
.privacy-content .imprint-popup-close {
	display: block;
	background-image: url('../assets/icons/icon_x.png');
	background-size: 100% 100%;
	width: 1.2em;
	height: 1.2em;
	position: absolute;
	right: 1em;
	top: 1em;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.buttons-wrapper {
		box-sizing: border-box;
		position: relative;
		margin: 5vh auto 2.5em auto;
		width: 275px;
		font-size: 1.2rem;
	}
	.buttons-wrapper ul li {
		margin-bottom: 1rem;
	}
	.content-popup-inner {
		width: 80vw;
		max-width: 600px;
	}

}


/* **************************
* 	Icons
* **************************/
.icons-wrapper {
	box-sizing: border-box;
	position: relative;
	margin:  0 auto;
	width: 275px;
}
.icons-wrapper ul {
	box-sizing: border-box;
	display: block;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.icons-wrapper ul li {
	box-sizing: border-box;
	display: inline-block;
	list-style: none;
	font-size: 2em;
	text-align: center;
	width: 60px;
	height: 60px;
}
.icons-wrapper ul li img {
	width: 100%;
}

.content-wrapper {
	width: 100%;
	color: #fff;
}
.content-wrapper p {
	display: none;
	text-align: center;
	font-size: 2rem;
}
.content-wrapper p a {
	text-decoration: none;
	color: currentColor;
}
@media screen and (max-width: 374px) {
	.icons-wrapper {
		width: 320px;
	}
	.icons-wrapper ul {
		padding: 0 30px;
	}
}

/* **************************
* 	Impressum
* **************************/
.imprint-link-wrapper {
	position: absolute; 
	bottom: 5vh;
	width: 100%;
	margin-left: 10vw;
	color: #fff
}
.imprint-link-wrapper a {
	position: relative;
	text-align: center;
	text-decoration: none;
	color: #fff;
}
.privacy-wrapper,
.imprint-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	/*justify-content: center;
	align-items: center; */
	z-index: 100;
}
.privacy-content,
.imprint-content {
	display: block;
	position: absolute;
	top: 20vh;
	left: 30vw;
	right: 30vw;
	bottom: 20vh;
	background-color: #575757;
	color: #fff;
	padding: 2em;
	border-radius: .8em;
	overflow-y: scroll;
	overflow-x: hidden;
	opacity:0;
	transition: .25s ease;
}
@media screen and (max-width: 1000px ) {
	.privacy-content,
	.imprint-content {
		top: 20vh;
		left: 20vw;
		right: 20vw;
		bottom: 20vh;
	}
}
@media screen and (max-width: 767px ) {
	.privacy-content,
	.imprint-content {
		top: 10vh;
		left: 10vw;
		right: 10vw;
		bottom: 10vh;
	}
}
.privacy-content.show,
.imprint-content.show {
	opacity: 1;
	transition: .25s ease;
}
.privacy-content .modal-close,
.imprint-content .modal-close {
	position: absolute;
	text-decoration: none;
	color: #333;
	font-size: 1.8em;
	top: 10px;
	right: 20px;
}
