section.m6_quicknavigation {
	position: fixed;
	top: 45%;
	width: auto;
	z-index: 999;
}

section.m6_quicknavigation .quicknavigation_item {
	height: 47px;
	margin-bottom: 10px;
	width: 100%;
}

section.m6_quicknavigation .quicknavigation_item:last-child {
	margin-bottom: 0;
}

section.m6_quicknavigation .quicknavigation_image_container svg,
section.m6_quicknavigation .quicknavigation_image_container img {
	width: auto;
	height: 28px;
	min-width: 18px;
}

section.m6_quicknavigation .quicknavigation_image_container svg {
	fill: var(--white);
}

section.m6_quicknavigation .quicknavigation_text {
	color: #fff;
	margin: 0;
}

section.m6_quicknavigation .quicknavigation_item_content {
	display: flex;
	align-items: center;
	height: 47px;
	width: 47px;
	justify-content: center;
	position: relative;
	background-color: var(--lime_green);
	border: 1px solid transparent;
	border-radius: 5px;
	box-shadow: 0 0 6px 0px rgba(70, 95, 100, 0.2);
	-webkit-transition: -webkit-transform .4s, border .4s, box-shadow .4s;
	-moz-transition: -moz-transform .4s, border .4s, box-shadow .4s;
	-ms-transition: -ms-transform .4s, border .4s, box-shadow .4s;
	-o-transition: -o-transform .4s, border .4s, box-shadow .4s;
	transition: transform .4s, border .4s, box-shadow .4s;
}

section.m6_quicknavigation .quicknavigation_container {
	display: table;
}

section.m6_quicknavigation .quicknavigation_image_container {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 47px;
}

section.m6_quicknavigation .quicknavigation_text_container {
	display: flex;
	align-items: center;
	padding-left: 30px;
	padding-right: 20px;
	flex-grow: 1;
	cursor: pointer;
	position: absolute;
	top: -1px;
	width: 200px;
	height: calc(100% + 2px);
	background-color: var(--lime_green);
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: -webkit-transform .4s, border .4s;
	-moz-transition: -moz-transform .4s, border .4s;
	-ms-transition: -ms-transform .4s, border .4s;
	-o-transition: -o-transform .4s, border .4s;
	transition: transform .4s, border .4s;
}

section.m6_quicknavigation .quicknavigation_item_content:hover .quicknavigation_text_container {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	border-top-color: rgba(70, 95, 100, 0.35);
	border-bottom-color: rgba(70, 95, 100, 0.35);
	border-radius: 0 5px 5px 0;
}



section.m6_quicknavigation.links {
	left: 23px;
}

section.m6_quicknavigation.links .quicknavigation_text_container {
	right: 100%;
	-webkit-transform-origin: right;
	-moz-transform-origin: right;
	-ms-transform-origin: right;
	-o-transform-origin: right;
	transform-origin: right;
}

/* section.m6_quicknavigation.links .quicknavigation_item_content {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
} */

section.m6_quicknavigation.links .quicknavigation_item_content:hover {
	-webkit-transform: translateX(200px);
	-moz-transform: translateX(200px);
	-ms-transform: translateX(200px);
	-o-transform: translateX(200px);
	transform: translateX(200px);
	border-color: rgba(70, 95, 100, 0.35);
	box-shadow: 0 0 6px 0px rgba(70, 95, 100, 0.0);
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}



section.m6_quicknavigation.rechts {
	right: 23px;
}

section.m6_quicknavigation.rechts .quicknavigation_text_container {
	left: 100%;
	-webkit-transform-origin: left;
	-moz-transform-origin: left;
	-ms-transform-origin: left;
	-o-transform-origin: left;
	transform-origin: left;
}

/* section.m6_quicknavigation.rechts .quicknavigation_item_content {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
} */

section.m6_quicknavigation.rechts .quicknavigation_item_content:hover {
	-webkit-transform: translateX(-200px);
	-moz-transform: translateX(-200px);
	-ms-transform: translateX(-200px);
	-o-transform: translateX(-200px);
	transform: translateX(-200px);
	border-color: rgba(70, 95, 100, 0.35);
	box-shadow: 0 0 6px 0px rgba(70, 95, 100, 0.0);
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

@media screen and (max-width: 650px) {
	section.m6_quicknavigation {
		display: none;
	}
}