/*********** Fullscreen Menu Start ***********/

/*.dh_header_mobile_1{
	display:none;	
}*/


/* Slick Slider muss auf z-index: 0 sein, damit das Menü die Slider-Pfeile im überdeckt */
.slick-slider {
    z-index: 0;
}


.dh_header_bar_mobile{
	display:none;
}



.button_container {
	position: absolute;
	top: calc(18px + 4vw);
	left: 3.6%;
	height: 2.1em;
	width: 2.1em;
	cursor: pointer;
	z-index: 100;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
	background: transparent;
	box-sizing: border-box;
	border: none;
}
.button_container_fixed {
	position: fixed;
	top: 0.25em;
}

.button_container.active {
    z-index: 200;
	position: fixed;
	right: 4.5%;
}

.button_container.active.button_container_fixed {
	top: calc(18px + 4vw);
}


.button_container.active .top {
  -webkit-transform: translateY(0.35em) translateX(0) rotate(45deg);
		  transform: translateY(0.35em) translateX(0) rotate(45deg);
  background: var(--dh-color-dark-brown);
}
.button_container.active .middle {
  opacity: 0;
  background: var(--dh-color-dark-brown);
}
.button_container.active .bottom {
  -webkit-transform: translateY(-0.5em) translateX(0) rotate(-45deg);
		  transform: translateY(-0.5em) translateX(0) rotate(-45deg);
  background: var(--dh-color-dark-brown);
}
.button_container span {
  background: var(--dh-color-dark-brown);
  border: none;
  height: 0.1em;
  border-radius: 0px;
  width:70%;
  position: absolute;
  top: 0;
  left: 15%;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
  margin-top: 14px;
}
.button_container span:nth-of-type(2) {
  top: 0.44em;
}
.button_container span:nth-of-type(3) {
  top: 0.88em;
}

.dh_header_white .button_container span {
	background: var(--dh-color-light-grey);
}

.dh_header_white .button_container_fixed span {
  background: var(--dh-color-dark-brown);
}



.overlay {
	z-index:100;	
	position: fixed;
	background: var(--dh-color-grey-brown);
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .35s, visibility .35s, height .35s;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
}
.overlay.open {
	opacity: 1;
	visibility: visible;
	height: 100%;	
}	

.overlay.open .dh_menu_mobile_div li {
  -webkit-animation: fadeInRight .5s ease forwards;
		  animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
		  animation-delay: .35s;
}
.overlay.open .dh_menu_mobile_div li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
		  animation-delay: .4s;
}
.overlay.open .dh_menu_mobile_div li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
		  animation-delay: .45s;
}
.overlay.open .dh_menu_mobile_div li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
		  animation-delay: .50s;
}
.overlay.open .dh_menu_mobile_div li:nth-of-type(5) {
  -webkit-animation-delay: .55s;
		  animation-delay: .55s;
}
.overlay.open .dh_menu_mobile_div li:nth-of-type(6) {
  -webkit-animation-delay: .60s;
		  animation-delay: .60s;
}
.overlay.open .dh_menu_mobile_div li:nth-of-type(7) {
  -webkit-animation-delay: .65s;
		  animation-delay: .65s;
}
.overlay.open .dh_menu_mobile_div li:nth-of-type(8) {
  -webkit-animation-delay: .70s;
		  animation-delay: .70s;
}
.overlay.open .dh_menu_mobile_div li:nth-of-type(9) {
	-webkit-animation-delay: .75s;
			animation-delay: .75s;
}
.overlay.open .dh_menu_mobile_div li:nth-of-type(10) {
	-webkit-animation-delay: .75s;
			animation-delay: .75s;
}
  
.overlay nav {
	position: relative;
}

.overlay nav {
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
}

.overlay .dh_menu_mobile_div ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	position: absolute;
	width:100%;
	
	top: 65%;
	left:0;	
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	
}
.overlay .dh_menu_mobile_div ul li {
  display: block;
  position: relative;
  opacity: 0;
}





@-webkit-keyframes fadeInRight {
  0% {
	opacity: 0;
	left: 20%;
  }
  100% {
	opacity: 1;
	left: 0;
  }
}

@keyframes fadeInRight {
  0% {
	opacity: 0;
	left: 20%;
  }
  100% {
	opacity: 1;
	left: 0;
  }
}

/*********** Fullscreen Menu Ende ***********/


@media (max-width: 1100px) {

.button_container {
    top: calc(16px + 4vw);
}

.button_container_fixed {
	top: 0.05em;
}
}


@media (max-width: 700px) {

.button_container {
    height: 2.4em;
    width: 2.4em;
    top: calc(16px + 3.4vw);
	left: 6%;
}

.button_container_fixed {
    top: 0.2em;
}

.button_container span:nth-of-type(2) {
    top: 0.48em;
}

.button_container span:nth-of-type(3) {
    top: 0.96em;
}

.button_container.active .top {
    -webkit-transform: translateY(0.45em) translateX(0) rotate(45deg);
    transform: translateY(0.45em) translateX(0) rotate(45deg);
}
}



