/* notifications component (partials/_notifications.html§.twig) */

.notification-sticker.active {
    position: relative;
    top: -0.5rem;
    right: 0.5rem;
    background-color: #eb0909;
    height: 1.2rem;
    width: 1.2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#notification-counter {
    font-size: x-small;
    font-weight: bold;
    color: white;
}

.notification-item {
    min-height: 70px;
    padding: 15px 20px;
    line-height: 1rem;
    background-color: #e0edff;
    color: #4e524f;
    font-size: 13px;
    font-family: "Montserrat",sans-serif;
    border-bottom: 1px solid #efeff3;
}

.notification-item.read {
    background-color: white;
}