.tag {
    display: inline-block;
    border-radius: 5px 0 0 5px;
    display: inline-block;
    font-size: 0.875rem;
    height: 24px;
    line-height: 24px;
    padding: 0 0.666rem;
    position: relative;
    text-align: center;
    z-index: 2;
    margin-right: 14px;
    cursor: pointer;
}
.tag:hover {
    text-decoration: underline;
}
.tag:after {
    background: inherit;
    border-radius: 5px;
    display: block;
    content: "";
    position: absolute;
    right: -17px;
    top: -2px;
    transform-origin: top left;
    transform: rotate(45deg);
    width: 20px;
    height: 19px;
    z-index: -1;
}
.tag-disable {
    cursor: default;
}
.tag, .tag a {
    text-decoration: none;
}