button.colored_abc {
    display: block;
    cursor: pointer;
    min-width: 18rem;
    padding: .8rem .8rem;
    text-align: center;
    line-height: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 6px;
    background-image: linear-gradient(#fff, #d4d4d5);
    box-shadow: -0.09375rem -0.09375rem 0 0.09375rem #7f8691, 0 0 0 0.1875rem #7f8691;
}

button.colored_abc:hover, button.colored_abc:active {
    background-image: linear-gradient(#fff, #b9b9c2);
}


.accounting_staff {
    display: grid;
    grid-template-columns: 3.2rem 1fr 1fr;
    grid-column-gap: 1rem;
    padding: 0.8rem;
    border-radius: 6px;
    color: #444;
    align-items: center;
    background-color: #f0f2f3;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 2px 3px rgba(0,0,0,.15);
}

.accounting_staff .avt {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background-size: cover;
    background-color: #b0c0d9;
    background-repeat: no-repeat;
    background-position: center center;
}

.accounting_staff .name {
    font-weight: 500;
    font-size: 1.2rem;
}