button.fa-trash-alt{
    border: 0;
}
.row-items{
    justify-content: space-between;
    padding: 10px 30px;
    background-color: #e2e2e2;
    position: relative;
    margin-top: 10px;
    border-radius: 5px;

}
.recipients_info{
    font-size: 20px;
    z-index: 2;
}
.action_recipients{
    font-size: 20px;
    z-index: 2;
}
.action_recipients > button{
    background-color: transparent;
    color: #898989;
}
.action_recipients > button:first-of-type{
    margin-right: 15px;
}
@media (hover:hover){
    .row-items:after{
        content: "";
        position:absolute;
        background-color: #ffffff;
        opacity: 0;
        width: 50%;
        top: 0;
        right: 0;
        z-index: 1;
        border-radius: 5px;
        height: 100%;
        transition: .3s ease-in-out;
    }
    .row-items:hover:after{
        width: 100%;
        opacity: 1;
    }
}
.action_recipients > button{
    transition: .2s ease;
}
.action_recipients > button:hover{
    color: #129500;
    transform: scale(1.1);
}
.add_recipient, .add_new_card{
    margin: 20px 0 0 15px;
    padding: 15px 25px;
    border: 2px solid #75AF26;
    border-radius: 90px;
    box-shadow: 0 0 5px #d9d9d9;
    font-weight: bold;
    transition: .2s ease;
}
.add_recipient:before,.add_new_card:before{
    content: "+";
    padding-right: 10px;
}
.add_recipient:hover,.add_new_card:hover{
    box-shadow: 0 0 10px #d9d9d9;
    transform: scale(1.025);
    background: linear-gradient(90deg, #26AF65 0%, #75AF26 100%);
    color: black;
}
.page-link:focus{
    box-shadow: 0 0 0 0.2rem rgb(0 255 8 / 25%);
}
.page-link:hover{
    color: #00b316;
    background-color: #efefe9;
}
.pagination-recipient{
    margin-top: 20px;
    justify-content: center;
}
@media (max-width:340px) {
    .row-items{
        flex-direction: column;
        align-items: center;
    }
}