/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 28 jun 2020, 18:37:51
    Author     : Angel
*/

.white_color{
    color: rgba(255, 255, 255, 0.5)
}
.white_color:hover{
    color: #FFF;
    text-decoration: none;
}

.icon{
    cursor: pointer;
}

.icon-edit{
    background: url("/src/assets/icon/feather/edit-2.svg") no-repeat;  
}

.icon-edit:hover{
    background: url("/src/assets/icon/feather/edit-3.svg") no-repeat;  
}

.icon-search{
    background: url("/src/assets/icon/feather/search.svg") no-repeat;
}

.icon-new{
    background: url("/src/assets/icon/feather/plus.svg") no-repeat;
}

.icon-new:hover{
    background: url("/src/assets/icon/feather/plus-square.svg") no-repeat;
}

.icon-trash{
    background: url("/src/assets/icon/feather/trash.svg") no-repeat;
}

.icon-trash:hover{
    background: url("/src/assets/icon/feather/trash-2.svg") no-repeat;
}