/*!
 * medium-down.css
 *
 * @link https://www.vektorrausch.de
 * @author vektorrausch GmbH <sippel@vektorrausch.de>
 *
 * @package WordPress
 * @subpackage cleantheme
 */

/* ######################################## *\
		HTML
\* ######################################## */



/* ######################################## *\
		STRUKTUR
\* ######################################## */



/* ######################################## *\
		SIDEBARS / WIDGET-AREAS
\* ######################################## */

.sidebar-area {
	margin-top: 2.75em;
}

/* ######################################## *\
		WIDGETS
\* ######################################## */



/* ######################################## *\
		LAYOUTS
\* ######################################## */



/* ######################################## *\
		INHALTE
\* ######################################## */



/* ######################################## *\
		FELDER
\* ######################################## */



/* ######################################## *\
		ELEMENTE
\* ######################################## */



/* ######################################## *\
		MENÜS
\* ######################################## */

/* main-menu */
.nav-button {
	display: block;
	position: absolute;
	z-index: 5;
	top: 12px;
	right: 15px;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 40px;
	height: 40px;
	font-size: 0;
	text-indent: -9999px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
	background: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0); 
	-webkit-tap-highlight-color: transparent;
}
	
.nav-button span {
	display: block;
	position: absolute;
	z-index: 5;
	top: 20px;
	left: 10px;
	width: 20px;
	height: 2px;
	background: rgba(0,0,0, 1);
	border-radius: 2px;
	-webkit-transition: background 0 0.3s;
	-moz-transition: background 0 0.3s;
	transition: background 0 0.3s;
}
	.nav-button span:before,
	.nav-button span:after {
		 position: absolute;
		 z-index: 5;
		 display: block;
		 left: 0;
		 width: 100%;
		 height: 2px;
		 border-radius: 2px;
		 background-color: rgba(0,0,0, 1);
		 content: "";
		 -webkit-transition-duration: 0.3s, 0.3s;
		 -moz-transition-duration: 0.3s, 0.3s;
		 transition-duration: 0.3s, 0.3s;
		 -webkit-transition-delay: 0.3s, 0;
		 -moz-transition-delay: 0.3s, 0;
		 transition-delay: 0.3s, 0;
	}
		.nav-button span:before {
			top: -6px;
			-webkit-transition-property: top, -webkit-transform;
			-moz-transition-property: top, -moz-transform;
			transition-property: top, transform;
		}
		.nav-button span:after {
			bottom: -6px;
			-webkit-transition-property: bottom, -webkit-transform;
			-moz-transition-property: bottom, -moz-transform;
			transition-property: bottom, transform;
		}

.nav-button.open span {
	background: none;
}
	.nav-button.open span:before,
	.nav-button.open span:after {
		-webkit-transition-delay: 0, 0.3s;
		-moz-transition-delay: 0, 0.3s;
		transition-delay: 0, 0.3s;
		background-color: rgba(28,169,239, 1);
	}
		.nav-button.open span:before {
			top: 0;
			-webkit-transform: rotate(45deg);
			-moz-transform: rotate(45deg);
			transform: rotate(45deg);
		}
		.nav-button.open span:after {
			bottom: 0;
			-webkit-transform: rotate(-45deg);
			-moz-transform: rotate(-45deg);
			transform: rotate(-45deg);
		}

.main-menu-container {
	display: none;
	position: absolute;
	z-index: 25;
	top: 56px;
	right: 15px;
	width: 50%;
	background: rgba(255,255,255, 1);
	padding: 0;
	box-shadow: 0 1px 2px rgba(43, 59, 93, 0.29);
	border-radius: 2px;
}

#main-menu .sub-menu {
	padding: 0 1.375em;
}
	#main-menu .menu-item-depth-1 .sub-menu {
		padding: 0;
	}

#main-menu .menu-item-depth-0 {
	margin: 0;
	border-bottom: 1px solid rgba(0,36,78, 0.1);
	position: relative;
}
	#main-menu .menu-item-depth-0:last-of-type {
		border-bottom: 0;
	}

#main-menu .menu-item-depth-1 {
	font-size: 1rem;
}

#main-menu .menu-link {
	display: block;
	color: rgba(0,36,78, 1);
	padding: 0.6875em 1.375em;
}
	#main-menu .menu-item.current-menu-item:not(.current-menu-item-not-active-anchor):not(.current-menu-item-not-active-parameter) > .menu-link,
	#main-menu .menu-item.current-menu-ancestor > .menu-link {
		color: rgba(0,36,78, 1);
		font-weight: bold;
		text-decoration: none;
	}
	#main-menu .menu-link-depth-0 {
		font-size: 1.25rem;
	}
	#main-menu .menu-item-depth-1 .menu-link:before {
		content: '›';
		display: inline-block;
		margin-left: -1.375em;
		width: 1.375em;
		text-align: center;
	}
	#main-menu .sub-menu .menu-link-depth-1 {
		padding-left: 1.375em;
	}
		#main-menu .sub-menu .menu-item-depth-1 .menu-link-depth-1:before {
			content: '›';
		}
	#main-menu .sub-menu .menu-link-depth-2 {
		padding-left: 2.0625em;
	}
		#main-menu .sub-menu .menu-item-depth-2 .menu-link-depth-2:before {
			content: '››';
		}
	#main-menu .sub-menu .menu-link-depth-3 {
		padding-left: 2.75em;
	}
		#main-menu .sub-menu .menu-item-depth-3 .menu-link-depth-3:before {
			content: '›››';
		}
		
#main-menu.mobile-dropdown .menu-depth-1 {
	display: none;
}
	#main-menu.mobile-dropdown .menu-item-depth-0.mobile-dropdown-active .menu-depth-1 {
		display: block;
	}

#main-menu .menu-item.home i {
	display: none;
}
		
#main-menu.mobile-dropdown .mobile-dropdown-toggle {
	display: block;
	width: 60px;
	height: 50px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 5;
	line-height: 50px;
	font-size: 1.25rem;
	color: rgba(255,255,255, 1);
	content: '\f107';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
}
	#main-menu.mobile-dropdown .mobile-dropdown-active .mobile-dropdown-toggle:after {
		content: '\f106';
	}
		
#main-menu .menu-link-description {
	display: block;
	font-size: 0.625rem;
	opacity: 0.5;
}

/* search */
.search-button {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 12px;
	right: 82px;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	z-index: 5;
}
	.search-button.active {
		color: rgba(28,169,239, 1);
	}
	.search-button:after {
		height: 100%;
		background: rgba(0,0,0, 0.12);
		width: 1px;
		position: absolute;
		top: 0;
		right: -12px;
		z-index: 1;
		content: "";
		cursor: default;
	}
	
/* ######################################## *\
		SEITENNUMMERIERUNG / BREADCRUMBS
\* ######################################## */



/* ######################################## *\
		KOMMENTARE
\* ######################################## */



/* ######################################## *\
		MISC / CONTRIB
\* ######################################## */


	 
/* ######################################## *\
		WORDPRESS CORE
\* ######################################## */
 
.gallery .gallery-item {
	float: left !important;
	width: 25% !important;
	clear: none !important;
}
	.gallery .gallery-item:nth-child(4n+1) {
		clear: left !important;
	}
	.gallery.gallery-columns-3 .gallery-item {
		width: 33.333% !important;
		clear: none !important;
	}
		.gallery.gallery-columns-3 .gallery-item:nth-child(3n+1) {
			clear: left !important;
		}
	.gallery.gallery-columns-2 .gallery-item {
		width: 50% !important;
		clear: none !important;
	}
		.gallery.gallery-columns-2 .gallery-item:nth-child(2n+1) {
			clear: left;
		}
	.gallery.gallery-columns-1 .gallery-item {
		width: 100% !important;
		clear: none !important;
	}
	
html.js {
	margin-top:	0 !important;
}

#wpadminbar {
	display: none;
}

/* ######################################## *\
		KEIN JAVASCRIPT
\* ######################################## */


