.action_link {
    color: #fff ;
    text-decoration: none!important;
    margin: auto 5px;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1) ;
}

.action_link .fa-trash-alt{
    color: #ff3333;
}

.action_link:hover .fa-trash-alt{
    color: #bd1313;
}

.action_link .fa-edit{
    color: #03c92e;
}

.action_link:hover .fa-edit{
    color: #039222;
}

.tr_animation_hover{
    transition: all .3s ease-in-out;
}

.tr_animation_hover:hover{
    transform: translateY(-5px);
}


/* .table-loading{
    animation: tableloader 2s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

.table-loading .list-group-item:nth-child(1){
    animation: tableloader 1s infinite cubic-bezier(0.23, 1, 0.320, 1);
}
.table-loading .list-group-item:nth-child(2){
    animation: tableloader 2s infinite cubic-bezier(0.23, 1, 0.320, 1);
}
.table-loading .list-group-item:nth-child(3){
    animation: tableloader 3s infinite cubic-bezier(0.23, 1, 0.320, 1);
}
.table-loading .list-group-item:nth-child(4){
    animation: tableloader 2s infinite cubic-bezier(0.23, 1, 0.320, 1);
}
.table-loading .list-group-item:nth-child(5){
    animation: tableloader 1s infinite cubic-bezier(0.23, 1, 0.320, 1);
}
.table-loading .list-group-item:nth-child(6){
    animation: tableloader 3s infinite cubic-bezier(0.23, 1, 0.320, 1);
}


@keyframes tableloader {
    0%,100%{
        opacity: 1;
    }
    50%{
        opacity: .5;
    }
}
