.tag {
    position: absolute;
    top: 0px;
    letter-spacing: 1px;
    background-color: #aaa;
    padding: 4px;
    border: 1px solid #000;
    border-radius: 4px;
    transition: opacity 0.25s ease, margin 0.25s ease;
    opacity: 0;
    margin-bottom: 10px;
    z-index: 1000;
    max-width: 500px;
    line-height: 12px;
    pointer-events: none;
    font: 14px "Century Gothic";
    text-align: center;
}

.tag.show {
    opacity: 1;
    margin-bottom: 0px;
    pointer-events: initial;
}

.tag .lip {
    top: 100%;
    left: 50%;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.tag .lip2 {
    border-color: rgba(102, 51, 85, 0);
    border-top-color: #aaa;
    border-width: 6px;
    margin-left: -6px;
}

.tag .lip1 {
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #000;
    border-width: 7px;
    margin-left: -7px;
}

/* Reversed tag */
.tag.reverse {
    margin-top: -2px;
}

.tag.reverse.show {
    margin-top: 8px;
}

.tag.reverse .lip {
    top: initial;
    bottom: 100%;
}

.tag.reverse .lip2 {
    border-top-color: transparent;
    border-bottom-color: #aaa;
}

.tag.reverse .lip1 {
    border-top-color: transparent;
    border-bottom-color: #000;
}