/*!
 * Start Bootstrap - Simple Sidebar (http://startbootstrap.com/)
 * Copyright 2013-2016 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
 */

/* prevent window scrollbar which scrolls behind the navbar
 * not the best option, because scrollbar inside page-content-wrapper now only appear
 * when vertical scrollbar is on bottom
 */
 body {
     overflow-x: hidden;
 }
 .page-content-wrapper {
     overflow-x: auto;
 }

/* Toggle Styles */

.sidebar-main-wrapper {
    padding-left: 0;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.sidebar-main-wrapper.visible {
    padding-left: 150px;
}

.sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 150px;
    width: 0;
    height: 100%;
    margin-left: -150px;
	background: #F5F5F5;
    overflow-y: auto;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.sidebar-main-wrapper.visible .sidebar-wrapper {
    width: 150px;
}

.page-content-wrapper {
    width: 100%;
    position: relative;
}

.sidebar-main-wrapper.visible .page-content-wrapper {
    position: absolute;
    margin-right: -150px;
}

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 150px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
}

.sidebar-nav li a:hover {
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

.sidebar-nav > .sidebar-brand a {
    color: #999999;
}

.sidebar-nav > .sidebar-brand a:hover {
    background: none;
}

@media(min-width:840px) {
    .sidebar-main-wrapper {
        padding-left: 150px;
    }

    .sidebar-main-wrapper.visible {
        padding-left: 150px;
    }

    .sidebar-wrapper {
        width: 150px;
    }

    .sidebar-main-wrapper.visible .sidebar-wrapper {
        width: 150px;
    }

    .page-content-wrapper {
        position: relative;
    }

    .sidebar-main-wrapper.visible .page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}