/*!
 * Css do menumenu-toggle lateral toggle
 * Gustavo Perenciolo - 15/02/2016 - 21h46
 */

/* Toggle Styles */

#wrapper {
    padding-left: 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-left: 20em;

}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 20em;
    width: 0;
    height: 100%;
    margin-left: -20em;
    overflow-y: auto;
    background: #00273e;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: inset -8px 5px 40px rgba(2,22,20,.15);
}

#wrapper.toggled #sidebar-wrapper {
    width: 20em;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding: 0px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -20em;
}

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 20em;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
    border-bottom: 1px solid white;
    border-top: 0;
}
.sidebar-nav li:nth-child(1){
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
}
.sidebar-nav li:nth-child(2){
}
.sidebar-nav li:nth-child(13){
    border-bottom: 1px solid transparent;
}
.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #fff;
}

.sidebar-nav li a:hover, .sidebar-nav li a:active {
    text-decoration: none;
    color: #fff;
    font-weight: bolder;
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
    color: #fff;
    font-weight: bolder;
}

.sidebar-nav > .sidebar-brand {
    height: 43px;
    font-size: 13px;
    font-weight: bold;
    line-height: 60px;
}

.sidebar-nav > .sidebar-brand a {
    color: #999999;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

/*Menu animado*/

a#menu-toggle{
    display: block;
    width: 36px;
    height: 30px;
}
@media(min-width:1024px) {
    a#menu-toggle{
        display: none;
    }
}
#icon{
    width: 36px;
    height: 30px;
    margin: 1em 0;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
#icon span{
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: #00273e;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#icon span:nth-child(1){
    top: 0;
}
#icon span:nth-child(2),#menu-toggle span:nth-child(3){
    top: 12px;
}
#icon span:nth-child(4){
    top: 24px;
}
#icon.open span:nth-child(1){
    top: 2px;
    width: 0;
    left: 50%;
}
#icon.open span:nth-child(2){
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#icon.open span:nth-child(3){
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#icon.open span:nth-child(4){
    top: 12px;
    width: 0%;
    left: 50%;
}
@media(min-width:768px) {
    #wrapper {
        padding-left: 20em;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 20em;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        padding:0 1em;
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}
.btn-info {
    color: #fff;
    background-color: #00273e;
    border-color: #00273e;
}
.btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover, .open>.dropdown-toggle.btn-info.focus, .open>.dropdown-toggle.btn-info:focus, .open>.dropdown-toggle.btn-info:hover, .btn-info:hover {
    background-color: #00273e;
    border-color: #00273e;
}

.logo{
    margin-top: 2rem;
}