/*@import "http://designmodo.github.io/Flat-UI/dist/css/flat-ui.min.css";
@import "https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css";*/
/*@import "https://daneden.github.io/animate.css/animate.min.css";*/
@import "https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css";

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/
#wrapper {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    padding-left: 0;
    transition: all 0.5s ease;
}

    #wrapper.toggled #sidebar-wrapper {
        width: 220px;
    }

nav .mainrow {
    margin: 10px 20px 0 20px;
}

#sidebar-wrapper {
    color: white;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    background: #1a1a1a;
    height: 100%;
    left: 220px;
    margin-left: -220px;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.5s ease;
    width: 0;
    z-index: 1000;
}

    #sidebar-wrapper::-webkit-scrollbar {
        display: none;
    }

    #sidebar-wrapper ul{
        list-style-type: none;
    }

#page-content-wrapper {
    width: 100%;
}
/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
.sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 220px;
}

    .sidebar-nav .dropdown-menu {
        background-color: #222222;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        position: relative;
        width: 100%;
    }


    .sidebar-nav > .sidebar-brand {
        font-size: 20px;
        height: 65px;
        line-height: 44px;
    }
/*--------------------------------------*/
/*  Open / Close sidebar buttons        */
/*--------------------------------------*/

.btn-close-sidebar {
    margin-top: 10px;
    margin-right: 10px;
    background: transparent;
    border: none;
    outline: none;
}

    .btn-close-sidebar,
    .btn-close-sidebar:hover,
    .btn-close-sidebar:active,
    .btn-close-sidebar:visited,
    .btn-close-sidebar:focus {
        color: #fff;
        border:none;
        outline:none;
    }

        .btn-close-sidebar:hover,
        .btn-close-sidebar:focus, 
        .btn-close-sidebar:active {
            background-color: #212121;
        }

/*-------------------------------*/
/*          Dark Overlay         */
/*-------------------------------*/

/* TODO LK: when is it used? 
    I think it was used at some point when side bar was inflating, but I can't reproduce it now. */
.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}