[data-counter] {
    position: relative;
}

[data-counter]::before {
    content: attr(data-counter);
    transition: 0.3s ease-in-out opacity;
    pointer-events: none;

    text-align: center;
    background-color: rgb(51,97,233);
    color: #FFFFFF;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    text-transform: none;
    padding: 3px 3px 3px 2px;
    border-radius: 10px;
    min-width: 16px;
    width: auto;
    height: 16px;
    line-break: strict;
    white-space: nowrap;
    position: absolute;
    top: -5px;
    left: calc(100% - 5px);
    z-index: 1;
    transform: translateX(-50%);
}
