.badge {
    font-size: 0.75rem;
    line-height: 16px;
    font-weight: 100;
    border-radius: 0;
    padding: 0 0.75rem;
    color: #fff;
}

.badge.badge-success {
    background-color: #00B140;
}

.badge.badge-warning {
    background-color: #F2A900;
}

.badge.badge-info {
    background-color: #0072CE;
}

.badge.badge-primary {
    background-color: #002D72;
}

.badge.badge-default {
    background-color: #666666;
}

.badge.badge-danger {
    background-color: #B7153A;
}

.badge-custom {
    display: inline-block;
    padding: 0.5rem 0.5rem 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0;
    border: 1px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.badge-custom-essential {
    color: #fff;
    background-color: #009CA6;
}

.badge-custom-new {
    color: #0046AD;
    background-color: #fff;
    border: 1px solid #0046AD;
}

.badge-custom-inverted {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
}