 body {
    overflow-x: hidden;
 }

/* 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: 250px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    right: 250px;
    width: 0;
    height: 100%;
    margin-right: -250px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f0f0f0;
    -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 #sidebar-wrapper {
    width: 250px;
    border-left:1px solid grey;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding: 15px;
    -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 #page-content-wrapper {
    position: absolute;
    margin-left: -250px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;

}

/* Sidebar Styles */

.sidebar-nav {
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom:20px;
}

.sidebar-nav li {
    padding:0px 10px;
    line-height: 40px;
    border-bottom: 1px solid #f0f0f0;
    background:white;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #000;
    text-align:left;
}

.sidebar-nav li p {
    display: block;
    text-decoration: none;
    color: white;
    line-height:40px;
    font-size:16px;
    font-weight:400;
    text-align:left;
}

.sidebar-nav li a:nth-child(-n+1)::after {
    content: ">";
    float:right;
    margin-right:12px;
}

.sidebar-nav li span {
    float: right;
    margin-right: 5%;
    color: white;
}

.sidebar-nav .info {
    background: #449b44;
}

.sidebar-nav .logout a i {
    color:#da2121;
}


.sidebar-nav li a:hover {
    text-decoration: none;
    color: #999;
    background: rgba(255,255,255,0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    color: #999;

    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    background:url('/assets/img/fondolocal.jpg');
    font-size: 18px;
    line-height: 60px;
    text-align:center;
    padding:23px 0px;
}

.sidebar-nav > .sidebar-brand img {
    margin:0 auto;

}

.sidebar-nav > .sidebar-brand p {
    text-align:center;
    font-size:20px;
}


.sidebar-nav > .sidebar-brand a {
    display: inline-block;
    text-decoration: none;
    color: white;
    text-align: left;
    margin-top:10px;
    white-space:inherit;
}

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

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

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 0px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

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

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