:root {
	--font-size: .97rem;

}

::marker {
	color: var(--contrast);
}

h1,
h2,
h3,
h4,
h5 {
	margin-bottom: 0.5rem;
	color: rgb(240,240,240);
}

p{
margin:0px;
}

a{
font-weight: bold;
}

blockquote {
background: rgba(0, 0, 0, 0.2);

}

@media(max-width:768px) {

	.hide-mobile {
		display: none !important;
	}

}


@media(min-width:768px) {

	.hide-desktop {
		display: none !important;
	}

}

.header {
	background: var(--muted-border-color);
	padding: 1rem 0;
	border-bottom: solid 1px var(--muted-border-color);
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);	
}

.header-mobile-btn {
	width: 100%;
	height: 50px;
	padding: 0.4rem;
	margin: 0;
}

.header-mobile-btn img {
	width: 100%;
	height: 100%;
	filter: invert(100%)
}


.header-logo {
	margin: 0;
	padding: 0;
	font-size: 1.5rem;
	font-style: italic;
}
.header-grid {
	align-items: center;
	color:#fff;


}
.header-nav a {
	color:#fff;
}

.header-nav .current a {
	color: #fff;
	text-decoration: bold;
}


/* Sprachdingsbums */
.lang-menu {
    width: 100px;
    text-align: right;
    font-weight: bold;
    margin-top: 0px;
    position:fixed;
    right:25px;
    bottom:50px;
    z-index: 100;
    opacity: .9;

}
.lang-menu .selected-lang {
    display: flex;   
    justify-content: space-between;
    line-height: 2;
    cursor: pointer;
}
.lang-menu ul {
    margin: 0;
    padding: 0;
    display: none;
    background-color: rgba(0,0,0,0.2);
    border: 1px dotted #f3c;
    position: absolute;
    bottom: -25px;
    right: -15px;
    width: 170px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
    font-size: 1.3em;
}
.lang-menu ul li {
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.lang-menu ul li a {
    text-decoration: none;
    width: 150px;
    padding: 5px 5px;
    display: block;
}
.lang-menu ul li:hover {
    text-decoration: none;
    font-size: 1.1em;
}
.lang-menu ul li a:before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 2px;
    margin-top: 5px;
    background-size: contain;
    background-repeat: no-repeat;
}
.de:before {
    background-image: url(../ico/icode.png);
}

.en:before {
    background-image: url(../ico/icous.png);
}

.lang-menu:hover ul {
    display: block;
}

.tr4main {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    
}


@media(min-width:768px) {

	.header {
		padding: 3rem 0;
	}
	


}

@media(max-width:768px) {

	.header-grid {
		flex-wrap: wrap;
	}
	
.tr4main {
    width: 100%;
    margin: 0 auto;
    display: block;
    align-items: center;
    gap: 30px;
    
}

	.header-nav {
		display: flex;
		flex-direction: column;
		width: 100%;
		padding:5px;
		margin-right: 0 !important;
		margin-left: 0 !important;
		margin-top: 3px;
		color:#fff;
		border-radius: 6px;
		background: rgba(0,0,0,0.3);
	}

	.header-nav li {
		width: 100%;
		padding: 10px;
		margin: 0;	
		color:#fff;
	}

	.header-nav a {
		width: 100%;
		text-align: center;
		padding: 10px;
		margin: 0;	
			color:#fff;
	}

	.header-nav a[role="button"] {
		margin-left: 0;
		margin-right: 0;
		padding: inherit;

	}

}


/*content and aside */


.content {
	padding: 2rem 0;
	padding-bottom: 0;
}

.content-grid {
	display: grid;
	grid-column: 1fr;
	margin: 2rem 0;
	gap: 1.3rem;
}

@media(min-width:768px) {
	.content-grid {
		grid-template-columns: 9fr 3fr;
	}
}

.content-sidebar ul::marker {
	color: #eee;
}

.content-sidebar h2 {
	margin-bottom: 10px;
}


.content-title {
	padding-bottom: 1rem;
	border-bottom: solid 1px var(--muted-border-color);
}

.content-sidebar h2 {
	padding-bottom: 10px;
	border-bottom: solid 1px var(--muted-border-color);
	margin-bottom: 20px;
	display: block;
}


.content-sidebar ul {
	list-style-type: square !important;
	background: var(--primary);
	color: #fff;
	line-height: 1;
	border-radius: 5px;
	list-style-type: square;
}

@media(min-width:768px) {

	.content-sidebar {
		margin-top: 2.7rem;
	}

}

.content-main img {
	margin-bottom: 1.3rem;
	border-radius: 0.2rem;
}


.content-main nav[aria-label="breadcrumb"] li {
	padding: 0 0.5rem;
}

.content-main nav[aria-label="breadcrumb"] a {
	color: var(--muted-color);
}



/*footer */

.footer-grid {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

@media(max-width:768px) {
	.footer-grid {
		flex-direction: column;
	}
}



/*grid variant */


@media(min-width:768px) {

	.content-grid-left {
		grid-template-columns: 3fr 9fr;
	}

	.content-grid-left .content-sidebar {
		order: 1;
	}

	.content-grid-left .content-main {
		order: 2;
	}

	.content-grid-nosidebar {
		grid-template-columns: 1fr;
	}


}


.content-grid-nosidebar .content-sidebar {
	display: none;
}


.footer {
  font-size:10px;
  left: 0;
  bottom: 0;
  width: 100%;
  position: fixed;
  padding-bottom: 10px;
  color: #eee;
  text-align: center;
  opacity: 0.2 !important;
}


@media(max-width:768px) {
	.footer {
		font-size: 0.6em;
	}
	
	.tr4ckswatermark {
display: none;
  }
  
}


.gehtsteil {
 position:fixed;
 padding-left:5px;
 padding-right:2px;
 bottom:0;
 width:100%;
 height: 600px;
 z-index:0;
 opacity: .3;
}

canvas {
 padding-left:5px;
 padding-right:5px;
  width: 100%;
  height:100%; 
  position: fixed;
  background: transparent;
  z-index:0; 
  opacity: .2;
  bottom: 0;
}



.littlespace {
height: 60px;
}



@media (orientation: landscape) and (max-width: 768px) {

.header-nav {
		display: flex;
		flex-direction: row;
		width: 100%;
		padding:5px;

		margin-right: 0 !important;
		margin-left: 0 !important;
		margin-top: 3px;
		color:#fff;
		border-radius: 6px;
		background: rgba(0,0,0,0.3);
	}

	.header-nav li {
		width: 100%;
		padding: 5px;
		padding-bottom: 5px;
		margin: 0;	
		color:#fff;
	}

	.header-nav a {
		width: 100%;
		text-align: center;
		padding: 10px;
		padding-bottom: 5px;
		margin: 0;	
			color:#fff;
	}

	.header-nav a[role="button"] {
		margin-left: 0;
		margin-right: 0;
		padding: inherit;

	}

.blink {
  animation: blinker1 1s linear infinite;
}


@keyframes blinker1 {
  50% {
    opacity: 0;
  }
}

}

