.submit-buttons {
    display: flex;
    justify-content: space-around;
    width: 100%;
    box-sizing: border-box;
}

.count-buttons {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr minmax(0, 16fr) 1fr;
    gap: var(--s0);
}
.count-button {
    background-color: black;
    text-align: center;
    cursor: pointer;
    border: solid white var(--s-5);
    line-height: var(--s4);
    &:hover,
    &:focus,
    &:active {
        border: solid var(--color-primary) var(--s-5);
        color: var(--color-primary);
    }
}
