.chat-cat{
    color: grey;
}
.chat-cat input[type=radio] + label{
    color: grey;
    border-bottom: 3px solid transparent;
    padding-bottom: 12px;
    transition-duration: 0.1s;
}
.chat-cat input[type=radio]:checked + label{
    color: black;
    font-weight: 600;
    border-bottom: 3px solid var(--bs-primary-color);
}
.__process-grid{
    grid-template-columns: auto 1fr auto 1fr auto;
    min-width: 425px;
}
.__border-after::after{
    content: '';
    display: inline-block;
    width: 3px;
    color: var(--bs-primary-color);
    background-color: var(--bs-primary-color);
    position: absolute;
    right: -2px;
    bottom: 14px;
    top: 14px;
}

.light-grey-border{
    border: 1px solid var(--bs-grey-100);
}