.notificationIcon {
    @include flex-align(center, center);

    position: relative;
}

.newNotification {
    &::after {
        display: block;
        content: '';
        width: 0.5rem;
        height: 0.5rem;
        background: #fe4928;
        border-radius: 100px;
        position: absolute;
        right: 3px;
        top: -3px;
        transition: 0.5s ease;
    }
}

.notificationOuter{
    cursor: pointer;
}