.label {
    display: inline-block;
    padding: 2px 0.35em;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 80%;
    line-height: 1.26;
    text-decoration: none;
}

.label.label--red {
    color: #fff;
    background: red;
    border-color: #214cce;
}

.label.label--green {
    color: #fff;
    background: green;
    border-color: #214cce;
}

.label.label--blue {
    color: #fff;
    background: blue;
    border-color: #214cce;
}

.label.label--orange {
    color: #fff;
    background: orange;
    border-color: #214cce;
}

.label.label--darkpurple {
    color: #fff;
    background: #8B008B;
    border-color: #214cce;
}

.label.label {
    border: 1.5px solid #282828;
    border-radius: 15px;
    background-image: linear-gradient(to right, transparent 33%, rgba(255,255,255,0.3) 50%, transparent 66%);
    background-size: 300% 100%;
    animation: shine 2s infinite;
}



@keyframes shine{0%{background-position:right;}}