.tag {
    font-size: 0.75rem;
    color: #242e4c;
    background-color: #e3e7f5;
    border-radius: 3px;
    padding: 0.5rem 0.5rem;
    line-height: 2.5em;
    cursor: default;
    font-weight: 400;
}

.tag .icon-view {
    display: inline-block;
    padding: 0 0.5rem;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -0.5rem 0 0.5rem;
    text-align: center;
    min-width: 1.5rem;
    cursor: pointer;
}

.tag .icon-view svg {
    @apply w-3 h-2 inline-block align-middle;
}

.tag.tag-bg-default {
    @apply bg-grayDark text-dark
}

.tag.tag-bg-default .icon-view svg {
    @apply fill-dark
}

.tag.tag-bg-primary {
    @apply bg-primary text-white
}

.tag.tag-bg-primary .icon-view svg , .tag.tag-bg-secondary .icon-view svg {
    @apply fill-white
}

.tag.tag-bg-secondary {
    @apply bg-secondary text-white
}

.tag.tag-size-default {
    font-size: 0.75rem;
    line-height: 2.5em;
}

.tag.tag-size-small {
    font-size: 0.6rem;
    line-height: 1.7rem;
}

.tag.tag-size-medium {
    font-size: 0.8rem;
    line-height: 1.9rem;
}

.tag.tag-size-large {
    font-size: 1rem;
    line-height: 2.2rem;
}

.tag.tag-rounded {
    border-radius: 50px;
    padding: 10px;
}

.tag.tag-rounded .icon-view {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0;
}
