.tcontainer {
    display: flex;
    flex-direction: column;
}

.tcontainer .trow {
    display: flex;
    flex-direction: row;
    border-bottom: #eee 1px solid;
    justify-content: space-around;
}

.tcontainer .trow:last-child {
    border-bottom: none;
}

.tcontainer .trow .tcell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tcell .list-group {
    min-width: 350px;
}

@media (max-width: 768px) {
    .tcontainer .trow {
        flex-direction: column;
    }
}