.list{
    width: 100%;
    margin-top: 30px;
}

.list .col {
    margin-top: 0px;
    padding: 15px;
}

.list-element, .row.list-element {
    background-color: white;
    border: 1px solid #9e9e9e;
    display: flex;
    align-items: center;
    margin: 7px !important;
    -webkit-transition: background-color 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: background-color 2s ease-out;
}

.list-element .row{
    width: 100%;
}

.list-element label{
    color: #2196f3;
    margin-left: 0px !important;
}

.list-element .remove-list-element{
    height: 100%;
    text-align: right;
    align-self: flex-start;
}

.list-element .remove-list-element p{
    font-size: 20px;
    color:#b71c1c;
    cursor: pointer !important;
}

.list-element.highlighted{
    background-color: #e1f5fe !important; 
}

.list-element .list-item-title {
    font-weight: 400;
    margin: 0px !important;
    color: #000;
    font-size: 14px;
    font-family: 'Roboto';
}

.list-element .list-item-subcategory-title{
    margin-top: 10px;
    padding-left: 25px;
}

.list-element .list-item-label {
    font-weight: 600;
    margin: 0px !important;
    color: #000;
    font-size: 15px;
    margin-top: 5px;
}

.list-element .file-link{
    color: #01579b;
    font-size: 25px;
    cursor: pointer;
    margin-top: 5px;
}

.list-element .file-link:hover{
    color: #1a237e;
}

.list-element .boton-cancel{
    background-color: #b71c1c !important;
    float: right;
}

.list-element .boton-cancel:hover{
    background-color: #d50000 !important;
}

.list-element .boton-edit{
    background-color: #01579b !important;
    float: right;
}

.list-element .boton-edit:hover{
    background-color: #0277bd !important;
}

.list-element .boton-cancel i,.list-element .boton-edit i{
    color: #fff !important;
    font-size: 13px;
}

.list-element.clickable{
    cursor: pointer !important;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}

.list-element.clickable .col{
    cursor: pointer;
}

.list-element.clickable:hover{
    background-color: #bbdefb;
}

.list-element.clickable.clicked{
    background-color: #b2ebf2;
}


/*-------------------- MENU ------------------------------------ */

.menu p{
    cursor:pointer;
    color: #6c757d!important;
}

.menu p:hover{
    color: #000!important;
}

.menu p.active{
    color: #2196f3!important;
    cursor: default;
}

.menu.horizontal p{
    display: inline-block;
    margin-right: 20px;
}

.menu p i{
    font-size: 18px;
    margin-right: 10px;
}