/*styles for #side-bar*/
#side-bar {
    display: none;
    width: 300px;
    height: 100%;
    overflow: hidden;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    font-size: 0;
    border-right: 1px solid #ddd;
    background: #222;
    transition: .2s linear;
}

#side-bar.visible {
    display: block;
}

#title {
    display: block;
    width: 100%;
    margin-bottom: 25px;
    padding: 40px 25px 25px 25px;
    outline: 0;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    background: #222;
    border-bottom: 1px solid #444;
    border-left: 2px solid transparent;
    transition: .2s linear;
}

#title:focus {
    border-left: 2px solid skyblue;
}

#title strong {
    display: block;
    width: 100%;
    line-height: 20px;
    font-size: 20px;
    font-family: Poppins-Bold, sans-serif;
    font-weight: bold;
    word-spacing: 5px;
    color: #ddd;
    text-align: left;
    text-transform: uppercase;
}

#title span {
    display: block;
    width: 100%;
    line-height: 15px;
    font-size: 12px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #bbb;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 7px;
    padding-right: 10px;
}

#side-bar nav {
    display: block;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    padding-top: 100px;
    padding-bottom: 50px;
}

.nav {
    display: block;
    width: 100%;
    line-height: 60px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    font-size: 14px;
    color: #ddd;
    border-left: 2px solid transparent;
    text-align: left;
    outline: 0;
    text-transform: uppercase;
    position: relative;
    padding: 0 25px;
    transition: .2s linear;
}

.nav.active,
.nav:hover {
    background: rgba(0,0,0,.2);
}

.nav:focus {
    border-left: 2px solid skyblue;
}

#hide-sidebar {
    display: none;
}

@media only screen and (max-width: 1000px){
    
    #side-bar {
        width: 250px;
        left: -250px;
    }
    
    .side-bar-visible #side-bar {
        left: 0;
    }
    
    #title {
        padding: 30px 20px 20px 20px;
    }
    
    #title strong {
        line-height: 18px;
        font-size: 18px;
    }
    
    #title span {
        line-height: 12px;
        font-size: 10px;
        letter-spacing: 6px;
    }
    
    #hide-sidebar {
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        z-index: 20;
        top: 30px;
        right: 15px;
        padding: 5px;
    }
    
    #hide-sidebar svg {
        display: block;
        width: 100%;
        height: 100%;
    }
    
    #hide-sidebar svg polyline {
        fill: none;
        stroke: #ddd;
        stroke-width: 2;
    }
    
    #side-bar nav {
        padding: 80px 0 40px 0;
    }
    
    .nav {
        padding: 0 20px;
        line-height: 50px;
        font-size: 12px;
    }
    
    @media only screen and (max-width: 500px){
        
        #side-bar {
            width: 100%;
            left: -100%;
        }
        
    }
    
}
























