/** Head Bereich **/
.containerMenu {
	width: 100%;
	position: absolute;
	z-index: 99;
    background: #fff;
    height: 66px;
}
.containerMenu > div {
    float: right;
}
.containerMenu .gif {
    height: 44px;
	width: 130px;
    top: 7px;
    right: 50px;
    margin: 8px 20px 0 20px;
    border: 3px solid #ed1c24
}
.headerSpacer {
	height: 66px;
}

/** Logo **/
.logo {
    position: relative;
    z-index: 51;
    margin: 13px 13px;
    height: calc(80% - 20px);
}

/** Burger Button **/
.burgerButton {
    width: 40px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    position: relative;
    z-index: 1000;
    margin: 15px 50px 0 50px;
}
.burgerButton:hover .burger-line {
    background-color: #fff;
}
.burgerLine {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #ed1c24;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}
.burgerButton.is-active .top {
    transform: translateY(13px) rotate(45deg);
}
.burgerButton.is-active .middle {
    opacity: 0;
}
.burgerButton.is-active .bottom {
    transform: translateY(-13px) rotate(-45deg);
}

/** Mainmenü **/
.mainMenu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #eee;
    transform: translateX(100%);
    transition: transform 0.8s ease-in-out;
    z-index: 77;
    padding: 100px 50px 0 50px;
    min-width: 25%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}
.mainMenu.is-open {
    transform: translateX(0);
}
.mainMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    text-align: left;
    min-height: auto;
}
.mainMenu ul li {
    margin: 32px 0;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
}
.mainMenu > div ul li {
    margin: 5px 0;
    position: relative;
    display: block;
    width: 100%;
}
.mainMenu ul li a {
    color: #000;
    text-decoration: none;
    font-size: 2.8em;
    padding: 10px 20px;
    transition: color 0.2s ease-in-out;
    display: inline-block;
    vertical-align: middle;
}
.mainMenu ul li a.aktiv {
    font-weight: 600;
    color: #ed1c24;
}
.mainMenu ul li a:hover {
    color: #ed1c24;
}

/** Submenü **/
.subMenu {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-out;
    width: 100%;
    text-align: center;
}
.has-subMenu.subMenu-open .subMenu {
    max-height: 1500px;
}
.subMenu li {
    margin: 0;
    display: block;
}
ul.subMenu li a {
    font-size: 2em;
    padding: 8px 20px;
    color: #000;
    display: block;
}
ul.subMenu li a.active {
    font-weight: 600;
}
.subMenu li a:hover {
    color: #ed1c24;
}
span.subMenu-toggle {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    margin-left: 10px;
    cursor: pointer;
    color: #000;
    transition: color 0.5s ease-in-out;
    vertical-align: middle;
}
.has-subMenu.subMenu-open .subMenu-toggle {
    color: #ed1c24;
}