.categoria label{
    
    padding: 15px 10px;
    background: #f6f6f6;
    margin-bottom: 10px;
    cursor: pointer;
    width: 100%;
}
.categoria label:hover{
    background: #ccc;
}
.categoria label::before {
    content: " > ";
    margin-right: 20px;
    border-radius: 50%;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    float: left;
    background-color: #172b4d;
    color: #fff;
}
.categoria ul {
    transition: all linear .6s;
    display: block;   
}
.categoria input { display: none ;}
.categoria input:checked ~ ul { 
    transform: all; 
    max-height: 0;
    display: none;
    transition: all linear .6s;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.align-end {
    align-items: flex-end;
}
#conteudo p {
    border-bottom: 1px solid #ccc;
    padding: 10px;
}

.login-img {
    width: 300px;
    margin: 0 auto;
}
.login-img img {
    display: block;
    width: 100%;
}
.actions {
    width: 180px;
}
.actions .left {
    float: left;
    margin: 0 2px;
}
.actions .right{
    float: right;
    margin: 0 2px;
}
.actions.users{
    width: 210px;
}

.nav-dropdown-text {
    padding-right: 10px;
}

.nav-dropdown-all-items {
    /* width: 70%; */
    padding-left: 20%;
    /* margin-bottom: 5px; */
    display: none;
    list-style-type: none;
}

.nav-dropdown-all-items li a {
    color: #555;
    /* text-decoration: underline; */
}

.nav-dropdown-item {
    /* display: none; */
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

a.active{
    background-color: #f6f9fc;
}