/********************* html menu *****************/
#menu {
	position: absolute;
	top: 22px;
	left: 180px;
	/* max-width: 800px; */
	max-width: 80%;
}
/* For width 900px and smaller: */
@media only screen and (max-width: 900px) {
	#menu{
        display: none;
    }
}	

/************* start hamburg menu *****************/
/* menu lengte=height & hidden-height==translateY */
#sidebarMenu {
    height: 255px;
    position: relative;
    right: 13px;
    float: right;
    width: 200px;
    margin-top: 0px;
    transform: translateY(-270px);
    transition: transform 250ms ease-in-out;
    background: linear-gradient(180deg, #FFF 0%, rgb(99, 99, 99) 100%);
    z-index: 80;
}
.sidebarMenuInner{
    margin:0;
    padding:0;
    right: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li{
    list-style: none;
    color: rgb(61, 244, 10);
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 30px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li a{
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}
input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}

/*************************************************/	
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    width: 100%;
    top: 7px;
    right: 15px;
    height: 22px;
    width: 22px;
}
/* For width 900px and larger: */
@media only screen and (min-width: 900px) {
	.sidebarIconToggle {
        display: none;
    }
}
/*************************************************/
.spinner { /* dé Hamburger icoon */
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #000;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: right;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: right;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: right;
    margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}
