/*--- theme ----------------------------------------------*/
@font-face {
    font-family: Comiccc;
    src: url(comic.ttf);
}


:root{
	--accent-color-1: #293955;
	--accent-color-2: #949ea4;

	--bg-color-1: #f7f7f7;
	--bg-color-2: #ffffff;
	--bg-color-3: #3f3e3e;
	
	--border-color: #e0e2e5;
	
	--text-color-dark: #000000;
	--text-color-light: #ffffff;
	
	
	--infobox-bg: #F7F7F7;
}

*{
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;	
}

*:not(article *){
	margin: 0px;
	padding: 0px;
}

::selection{  
  background-color: var(--accent-color-1);
  color: var(--text-color-light);
} 

html{
  scroll-behavior: smooth;
}

body{
	background-color: var(--bg-color-2);
	color: var(--text-color-dark);
	padding-top: 35px;
	overflow-x: hidden;
}


/*--- Top Navigation ----------------------------------------------*/
.topnav{
	position: fixed;
	top: 0px;
	bbackground-color: var(--bg-color-2);
	display: flex;
	flex-direction: row;
	flex-wrap : nowrap;
	justify-content: space-around;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	box-shadow: 0px 0px 4px rgb(0 0 0 / 25%);
	z-index: 9999;
	height: 35px;
	border-bottom: 2px solid #ffffff;
	background: linear-gradient(to right, #eeb422, #efd491, #eeb422);/*-----------------*/
}

.topnav .slidelogocon{
	height: inherit;
	width: 200px;
	display: flex;
	align-items: center;
	filter: brightness(75%); 
}

.topnav .slidelogocon img{
	position: fixed;
	filter: invert(1); 
}

.topnav nav{
	height: inherit;
	
}

.topnav nav input#burgerButton{
	position: absolute;
	top: -9999px;
	left: -9999px;
	display: none;
}

nav label{
	display: none;
	position: relative;
	cursor: pointer;
}

nav label::after{
    position: relative;
    right: 0px;  
    top: 0px; 
    content: "\2261";
	font-size: 30px;
	color: var(--accent-color-2);
}

nav label:hover::after{
	color: var(--accent-color-1);
}

.topnav nav ul{
	list-style-type: none;
	display: flex;
	flex-direction: row;
	height: inherit;
}

.topnav nav ul li{
	position: relative;
	height: inherit;
	border-right: 1px solid var(--border-color);
	border-image: linear-gradient(to bottom, transparent 0%, var(--border-color) 50%, transparent 100%) 1 100%;	
}

.topnav nav ul li:last-child{
	border: 0;
}

.topnav nav ul li:hover{
	bbackground-color: var(--accent-color-2);
	color: #16446B;
	background-color: #636364;
}

.topnav nav ul li a{
	text-decoration: none;
	display: block;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 35px;
	color: #000000; /*-----------------*/
	height: inherit;
	cursor: default;
}

.topnav nav ul li a[href]{
	cursor: pointer;
}

.topnav nav ul li a:hover{
	color: #eeb422 !important;	/*-----------------*/
}

.topnav nav > ul > li:hover > a{
	border-bottom: 2px solid #ffffff;
}

.topnav nav ul li:hover > a{
	color: #eeb422;/*-----------------*/
}

.topnav nav ul li ul{
	display: none !important;
	position: absolute;
	top: 35px;
	left: 0px;
	display: block;
	width: 200px;
	z-index: 200;
	background-color: var(--bg-color-2);
	border: 1px solid var(--border-color);
	height: auto;
}

.topnav nav ul li:hover > ul{
	display: block !important;
}

.topnav nav ul li ul li{
	border: 0px;
}

.topnav nav ul li ul li a:hover{
		border: 0;
}

.topnav nav ul li ul li ul{
	z-index: 300;
	top: -1px;
	left: 198px;
}

@media screen and (max-width: 767px){
	.topnav{
		justify-content: space-between;
	}

	.topnav nav label{
		display: block;
	}

	.topnav nav ul{
		display: none !important;
		padding-left: 20px;
		width: 100%;
	}
	
	.topnav nav > ul::before{
		content: "";
		position: absolute;
		top: 0px;
		left: 0px;
		height: calc(100vh - 35px);
		width: 100%;
		background-color: #ffffff;
	}

	.topnav nav input#burgerButton:checked ~ label::after{
		content: "x";
	}

	.topnav nav input#burgerButton:checked ~ ul{
		position: absolute !important;
		right: 0px;
		background-color: var(--bg-color-2);
		border: 1px solid var(--border-color);
		height: auto;
		display: block !important;
		padding-top: 20px;
	}

	.topnav nav input#burgerButton:checked ~ ul li ul, 
	.topnav nav input#burgerButton:checked ~ ul li ul li ul{
		display: block !important;
		position: static;
		z-index: 200;
		padding-left: 20px;
		border: 0px;
		width: 100%;
	}

	.topnav nav ul li a{
		border: 0px !important;
	}
	
	.content article input{
		width: 100% !important;
	}
	
	.content article select{
		width: 100%  !important;
	}
	
	
}

/*--- Content ----------------------------------------------*/
.content{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;	
	align-items: center;
	align-content: center;
	align-content: center;
}

body > .content{
	align-items: center;
	padding-bottom: 20px;
}

.content article{
	width: 1440px;
	padding: 20px;
	padding-top: 0px;
	position: relative;
	border: 0px solid red;
	margin-top: 0px;
}

.content article *{
	word-break: break-word;
}

.content article.breaker{
	width: 100%;
	padding: 0px;
}

.content article.artinfo{
	background-color: #F7F7F7;
	border: 1px solid var(--border-color);
	margin: 40px;
	width: 1120px;
}

.content article.spacer{
	width: 100%;
	background-color: var(--bg-color-3);
	background-colorr: #818181;
	color: var(--text-color-light);
}

.content article input{
	border: 2px solid var(--border-color);
	padding: 10px;
	border-radius: 8px;
	color: var(--text-color-dark);
	text-decoration: none;	
	font-size: 16px;
	width: 60%;
	margin-bottom: 10px;
}

.content article input[type=submit],
.content article .button,
.content article button{
	width: 200px;
	background-color: var(--accent-color-1);
	border: 2px solid var(--accent-color-1);
	padding: 10px;
	border-radius: 8px;
	color: var(--text-color-light);
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
}

.content article input[type=submit]:hover,
.content article .button:hover,
.content article button:hover{
	background-image: linear-gradient(to right, var(--accent-color-1), #0E70C0, var(--accent-color-1));
}

.content article button:disabled{
	background-color: var(--border-color) !important;
	border-color: var(--border-color) !important;
	color: var(--text-color-dark);
}


.content article select{
	border: 2px solid var(--border-color);
	padding: 10px;
	border-radius: 8px;
	color: var(--text-color-dark);
	text-decoration: none;	
	font-size: 16px;
	width: 60%;
	margin-bottom: 10px;
}

.content article #fieldscon input{
	width: 100%;
}

form{
	text-align: left;
}

form div{
	text-align: left;
}



form textarea{
	border: 2px solid var(--border-color);
    border-radius: 8px;
	padding: 10px;	
	width: 100%;
	height: 250px;
	margin-bottom: 10px;
}












/*--- Footer ----------------------------------------------*/
footer{
	position: fixed;
	bottom: 0px;
	width: 100%;
	background-color: #F7F7F7;
	background-color: #636364;
	padding: 10px;
	display: flex;
	justify-content: space-around;
	border-top: 1px solid var(--border-color);
}

footer > ul{
	display: flex;
	justify-content: space-around;
	list-style: none;
	flex-wrap: wrap;
}

footer > ul > li{
	margin-left: 40px;
	margin-right: 40px;
}

footer > ul > li > a{
	font-weight: normal;
	color: var(--accent-color-2);
	text-decoration: none;
	cursor: default;
}

footer > ul > li > a[href]{
	cursor: pointer;
	color: #eeb422;
}

footer > ul > li > ul{
	list-style: none;
	margin-top: 10px;
}

footer > ul > li > ul li a{
	color: var(--accent-color-2);
	text-decoration: none;
}

footer > ul > li > ul li ul{
	margin-left: 10px;
	list-style: none;
}

footer ul  li a:hover{
	text-decoration: underline;
}


/*@media screen and (max-width: 1439px){ --- Anpassung ---*/
@media screen and (max-width: 1023px){ /*--- Anpassung ---*/
	header svg{
		top: 0px;
		left: -450px;
	}

	header .wrapper > img{
		width: 90%;
	}

	body > .content{
		margin-bottom: 100px;
	}

	.content article{
		width: calc(100% - 40px) !important;
		margin-left: 20px;
	}

	.content article.widgetcon .widget{
		margin-bottom: 40px;
	}
	
	.content article.widgetcon .widget:last-child{
		margin-bottom: 0px;
	}

	.anicon{
		width: 100% !important;
	}
	
	footer > ul{
		flex-direction: column;
	}
	
	footer li{
		text-align: center;
	}	
}

@media screen and (max-width: 767px){
	.content{
		align-content: flex-start
	}
	
	.content article{
		margin-top: 20px;
	}	
}

/*--- Widgets ----------------------------------------------*/
.content article.widgetcon{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.content article.widgetcon .widget{
	width: 250px;
}

.content article.widgetcon .widget h1{
	font-size: 32px;
	text-align: center;
	color: var(--accent-color-1);
	font-weight: normal;
}

.content article.widgetcon .widget h2{
	font-size: 18px;
	text-align: center;
	color: var(--text-color-light);
	font-weight: normal;
}












article{
	opacity: 1; /*--- Anpassung ---*/
	transition: all 0.3s linear;
	transform: translate3d(0px, 0px, 0px); /*--- Anpassung ---*/
}

article.in-view{
	opacity: 1;
	transform: translate3d(0px, 0px, 0px);
}






















/*--- PicView ----------------------------------------------*/
#picview{
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9999999999;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	text-align: center;
	padding: 80px;
	padding-top: 5px;
	cursor: zoom-out;
	backdrop-filter: blur(5px) grayscale(60%);
	display: flex;
	justify-content: center;
	align-content: space-between;
}

#picview p{
	color: #ffffff;
}

#picview img{
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
}


/*--- AOS ----------------------------------------------*/
.anicon_wrapper{
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	padding: 0px !important;
}

.anicon{
	width: 50%;
	padding: 40px;
}

.aniconimg{
	display: flex;
	justify-content: center;
	align-items: center;
}

.aniconimg img{
	width: 100%;
	box-shadow: 0 10px 20px rgba(0,0,0,.2);
}


/*--- SlideHeader ----------------------------------------------*/
.SlideHeader .slide#s1{
	position: relative;
	overflow: hidden;
	display: block;	
	background-color: #EFEFEF;
	backgroundd: #0ac repeating-conic-gradient(rgba(255, 255, 255, 0.2) 0 15deg, rgba(255, 255, 255, 0) 0 30deg);
	background: linear-gradient(to right, #33BBD6 0%, #00AACC 100%);
	background: linear-gradient(132deg, rgb(0, 48, 143) 0.00%, rgb(0, 255, 255) 100.00%);
	background: linear-gradient(132deg, rgb(59, 55, 106) 0.00%, rgb(0, 143, 186) 50.00%, rgb(255, 149, 213) 100.00%);
	background: linear-gradient(132deg, rgb(0, 103, 154) 0.00%, rgb(0, 173, 239) 100.00%);
	background: linear-gradient(132deg, rgb(113, 143, 175) 0.00%, rgb(69, 92, 114) 100.00%);
	background: linear-gradient(60deg, rgb(39, 43, 44) 0.00%, rgb(241, 60, 43) 100.00%);
	background: linear-gradient(132deg, #949ea4 0.00%, #DA6960 100.00%);
}

.SlideHeader .slide#s1 svg{
	position: absolute;
	top: -200px;
	left: 500px;
	animation: svgrotate 30s infinite linear;
	z-index: 1;
}

.SlideHeader .slide#s1 .wrapper{
	position: relative;
	width: 100%;
	height: 100%;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	z-index: 2;
}

.SlideHeader .slide#s1 .wrapper div{
	color: var(--text-color-light);
	text-align: center;
	margin: 40px;
}

.SlideHeader .slide#s1 .wrapper img{
	margin: 40px;
}

.SlideHeader .slide#s1 input{
	border: 1px solid var(--accent-color-2);
	border-radius: 5px;
	padding: 10px;
	color: var(--text-color-light);
	font-weight: bold;
	background-color: var(--accent-color-1);
}

.SlideHeader .slide#s1 input:hover{
	filter: brightness(0.8);
}

@keyframes svgrotate{
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}


/*--- SimpleStore ---------------------------------------------*/
