.dot_notification {
    color: #c00;
    padding-left: 1em;
    position: absolute
}

.dot_notification:after, .dot_notification:before {
    background-color: currentColor;
    border-radius: 50%;
    content: "";
    height: .75em;
    left: 0;
    position: absolute;
    top: .25em;
    width: .75em
}

.dot_notification:before {
    animation: ping 1.7s ease 3;
    opacity: .25
}

@keyframes ping {
    0% {
        opacity: .5;
        transform: scale(1)
    }
    to {
        opacity: 0;
        transform: scale(2)
    }
}

.nd-tags-detail-base {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    line-height: 27px;
    list-style: none;
    margin: 25px 0 18px;
    padding: 0
}

.nd-tags-detail-base__icon {
    margin-right: 10px
}

.nd-tags-detail-base__title {
    color: #b10b1f;
    font-family: var(--font-source-sans-pro);
    font-size: 19px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 17px
}

.nd-tags-detail-base__tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 25px
}

.nd-tags-detail-base__tag {
    border: 1px solid #555;
    border-radius: 20px;
    color: #555;
    font-family: var(--font-source-serif-pro);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0 10px 10px 0;
    min-width: 80px;
    padding: 5px 8px;
    text-align: center
}