/* ///// NAVIGATION ///// */



#responsive-navigation ul.menu li {
    float: none;
    font-size: 22px;
}

#responsive-navigation ul.menu a, #responsive-navigation span.separator {
    font-size: 0.8em;
    display: flex;
    padding: 10px 10px 10px 10px;
	margin: 0;
    border-bottom: solid 1px #737373;
    color: #eeeeee;
    background: transparent;
    transition: all ease .5s;
}

#responsive-navigation ul.menu a:hover, #responsive-navigation span.separator:hover {
    background: #60605e;
    color: #fff;
    padding: 10px 0px 10px 10px;
}

#responsive-navigation ul.menu span.separator:before {
    transform: rotate(0deg);
}
    
#responsive-navigation ul.menu span.separator.aktiv:before {
    transform: rotate(180deg);
}

#responsive-navigation li.current.active a {
    color: #f6ec22;
}

#responsive-navigation li.active.divider.deeper.parent {
    background: #353535;
}

#responsive-navigation ul.nav-child.unstyled.small {
    position: relative;
}

#responsive-navigation ul.menu li ul.nav-child.unstyled.small li {
    border-bottom: 0px;
}

#responsive-navigation ul.menu li ul.nav-child.unstyled.small li:last-child {
    margin-bottom: 20px;
}

#responsive-navigation ul.menu li ul.nav-child.unstyled.small li span.separator:before {
	background-image: url(../images/menu-arrow-gelb.svg);
}


#navbar {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 80%;
    right: -80%;
    background: #414141;
    z-index: 10006;
    transition: right ease 0.5s;
    white-space: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

#navbar.rollout {
	right: 0;
    height: 100vh;
    -webkit-box-shadow: -10px 0px 20px -4px rgba(0,0,0,0.5);
    -moz-box-shadow: -10px 0px 20px -4px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 70px 9px rgba(0,0,0,0.5);
}

#navbar-fadein {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 80%;
    right: -90%;
    background: #414141;
    z-index: 10006;
    transition: right ease 0.5s;
}

#navbar-fadein.rollout {
	right: 0;
    height: 100vh;
    -webkit-box-shadow: -10px 0px 20px -4px rgba(0,0,0,0.5);
    -moz-box-shadow: -10px 0px 20px -4px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 70px 9px rgba(0,0,0,0.5);
}

#navbar-menu {
    position: relative;
    padding: 20% 8%;
    width: 84%;
}

.frame {
  display: flex;
  width: 100%;
  height: 100%;
}

.content {
  width: 75%;
  height: 100%;
}

.content.is-full-width {
  width: 100%;
}

#navbar h3 {
    font-family: "effra-bold";
    color: #fbba00;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* /// STICKY /// */

#sticky, #sticky-fadein {
    position: absolute;
    width: 50px;
    height: 30px;
    z-index: 100001;
    top: 13px;
    right: 2%;
    cursor: pointer;
	opacity: 1;
}

#sticky-fixed {
    position: fixed;
    width: 50px;
    height: 30px;
    z-index: 100001;
    top: 13px;
    right: 2%;
    cursor: pointer;
    transition: all .3s ease-out;
}

#sticky-fixed.rollout {
    right: 2%;
}

#sticky.rollout, #sticky-fadein.rollout {
	opacity: 0;
}

#hamburger, #hamburger-fadein {
    position: absolute;
    top: 0;
    right: 7px;
    margin-top: 0;
    transition: all ease .5s;
}

.hamburger .line1 {
    width: 30px;
    height: 3px;
    background-color: #f6ec22;
    display: block;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover .line1 {
    background-color: #f6ec22;
}

.hamburger .line2 {
    width: 30px;
    height: 3px;
    background-color: #f6ec22;
    display: block;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover .line2 {
    background-color: #f6ec22;
}

.hamburger:hover, .hamburger-home:hover {
  cursor: pointer;
}

#hamburger.is-active .line1:nth-child(2), #hamburger-fadein.is-active .line1:nth-child(2) {
  opacity: 0;
}

#hamburger.is-active .line1:nth-child(1), #hamburger-fadein.is-active .line1:nth-child(1) {
    background-color: #f6ec22;
    -webkit-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
    width: 30px;
    height: 3px;
    -webkit-animation: none;
    animation: none;
}

#hamburger.is-active .line1:nth-child(3), #hamburger-fadein.is-active .line1:nth-child(3) {
    background-color: #f6ec22;
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
    width: 30px;
    height: 3px;
    -webkit-animation: none;
    animation: none;
}

#hamburger.is-active .line2:nth-child(2), #hamburger-fadein.is-active .line2:nth-child(2) {
  opacity: 0;
}


