ui-chip {
    display: inline-flex;
    position: relative;
    align-items: center;
    max-height: 22px;
    min-width: 10px;
    min-height: 16px;
    padding: 4px 12px;
    gap: 6px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins';
    line-height: 16px;
    cursor: pointer;
    transition: background-color 150ms ease-out;
}

ui-chip label {
    display: flex;
    justify-content: center;
    align-items: center;
}

ui-chip input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

ui-chip.tiny {
    padding: 2px 6px
}