@import url('https://rsms.me/inter/inter.css');

.counter {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    border-radius: 4px;
    color: #ff3e00;
    background-color: #f6fafd;
    border: 1px solid #dae2e7;
    border-bottom-color: hsl(205, 22%, 68%);
    font: {
        family: "Inter", sans-serif;
        weight: 600;
        size: 16px;
    }
    span {
        border-left: 1px solid #dae2e7;
        border-right: 1px solid #dae2e7;
        padding: 0 12px;
        margin: 0 4px;
    }
    button {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        background-color: transparent;
        transition: 150ms ease all;
        color: #444;
        font: inherit;
        cursor: pointer;
        border: none;
        outline: none;
        &:hover {
            background-color: #e6f1f9;
        }
        &:focus {
            box-shadow: 0 0 0 3px rgba(255, 62, 0, 0.25);
        }
    }
}