.sidebar {
    position: absolute;
    transition: all 0.2s ease;
    z-index: 10;
} 

.sidebarElement {
    position: relative;
    display: inline-block;
}


.sidebar a {
    display: block;
    padding-left: 10px;
    padding-top: 20px;
    text-decoration: none;
    font-size: 20px;
    color: #000000;
    transition: 0.3s ease;
}

.sidebar a:hover {
    color: #FFFFFF;
    text-shadow: 0px 0px 15px #FFFFFF;
}


#linkPanel {
    background-color: #7cc09e;
    z-index: 12;
    overflow-x: hidden;
    padding-top: 0px;
    padding-bottom: 20px;
    max-width: 150px;
    border-radius: 0px 10px 10px 0px;
    transition: all .4s ease;
}


#linkPanel, #toggleButton {
    box-shadow: 
        inset 0 0 2px 0 rgba(255,255,255,.4),
        inset 0 0 3px 0 rgba(0,0,0,.4),
        inset 0 0 3px 5px rgba(0,0,0,.05),
        0px 0px 10px 5px rgba(0,0,0,.25);
}

#linkPanel:before, #linkPanel:after, #toggleButton:before, #toggleButton:after {
    content: '';
    display: block;
    position: absolute;
    left: 2px;
    right: 2px;
    height: 3px;
}


#linkPanel:before, #toggleButton:before {
    top: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background: rgba(255,255,255,.6);
    box-shadow: 0 1px 2px 0 rgba(255,255,255,.6);
}

#linkPanel:after, #toggleButton:after {
    bottom: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background: rgba(0,0,0,.15);
    box-shadow: 0 -1px 2px 0 rgba(0,0,0,.15);
}

#toggleButton {
    vertical-align: top;
    z-index: 11;
    position: relative;
    top: 20px;
    background-color: #000000;
	height: 60px;
    width: 50px;
    border-radius: 0 10px 10px 0;
    transition: all .2s ease;
}

#toggleButton:hover {
    display: inline-block;
    cursor: pointer;
}

#toggleButtonIcon {
    position: relative;
    margin: 16px 7px;
}


.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #F0F0F0;
    margin: 6px 0;
    transition: 0.4s;
}

  
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}
  
.change .bar2 {opacity: 0;}
  
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}