/*--------------------------------------------------------------------------*\
    Row with url
\*--------------------------------------------------------------------------*/

.table__tr-action{
    /*box*/
    cursor:pointer;
}

.table__tr-action td{
    /*transition*/
    -webkit-transition: -webkit-background-color 0.3s;
    transition: background-color 0.3s;
}

.table__tr-action:hover td{
    /*background*/
    background-color: var(--c-cta-2) !important;
}

.table__tr-action:hover td,
.table__tr-action:hover td span{
    /*text*/
    color:var(--c-tertiary-4) !important;
}