/*!
 * Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */
@import "http://webfonts.ru/import/lato.css";
/* Toggle Styles */

.wrapper {
    padding-right: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.wrapper.toggled {
    padding-right: 0;
    top: 50%;
    right: 50%;
}

#sidebar-wrapper {
    z-index: 1000;
    position: absolute;
    right: 40px;
    width: 0;
    height: 300px;
    margin-right: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
    
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
@media (max-width: 800px) { 
    #sidebar-wrapper {
        margin-top: 30px;
        right: 40px;
    }
}
.wrapper.toggled #sidebar-wrapper {
    width: 130px;
    top: 50%;
    right: 50%;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding: 15px;
}

.wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-left: -250px;
}

/* Sidebar Styles */

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

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
}

.sidebar-nav li a {
    font-family: 'Lato';
    text-decoration: none;
    color: #fff;
    border-bottom: 2px solid transparent;
    padding: 10px 0;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    border-bottom: 2px solid red;
}

.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 {
    font-family: 'Lato';
    color: #fff;
    font-size: 13px;
}

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

@media(min-width:768px) {
    .wrapper {
        padding-right: 0;
    }

    .wrapper.toggled {
        padding-right: 0;
    }

    .wrapper.toggled #sidebar-wrapper {
        width: 130px;
    }

    #page-content-wrapper {
        padding: 20px;
        position: relative;
    }

    .wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-left: 0;
    }
}