#side-menu
{
    border-bottom-left-radius: 0;
    transition-duration: 0.3s;
    z-index: 1000;

    overflow-y: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -220px;
}

#side-menu.fixed
{
    -webkit-box-shadow: 4px 0 20px 0 #333;
    box-shadow: 4px 0 20px 0 #333;
    left: 0;
}

#side-menu .module-menu:last-child
{
    border-bottom-left-radius: 0;
}

#side-menu .module-menu
{
    overflow: hidden;
}

#side-menu .module-menu .module-label,
#side-menu .module-menu .sub-module-label
{
    overflow: hidden;
    white-space: nowrap;
}

.side-menu-toggler
{
    display: inline-block;
    float: left;
    margin: 7px 0 0 10px;
    padding: 5px 10px;
    border-radius: 2px;
    cursor: pointer;

    background: rgb(71,181,237); /* Old browsers */
    background: -moz-linear-gradient(-45deg,  rgba(71,181,237,1) 0%, rgba(13,79,150,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(71,181,237,1)), color-stop(100%,rgba(13,79,150,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(-45deg,  rgba(71,181,237,1) 0%,rgba(13,79,150,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(-45deg,  rgba(71,181,237,1) 0%,rgba(13,79,150,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(-45deg,  rgba(71,181,237,1) 0%,rgba(13,79,150,1) 100%); /* IE10+ */
    background: linear-gradient(135deg,  rgba(71,181,237,1) 0%,rgba(13,79,150,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47b5ed', endColorstr='#0d4f96',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.side-menu-overlay.active
{
    display: block;
}