.notification-pulse{
    background: #fd9309;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 25px;
    right: 4px;
    z-index: 10;
    text-align: center;
    cursor: pointer;
    line-height: 12px;
    border-radius: 100%;
    display: inline-block;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
}
.notification-pulse:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fd9309;
    border-radius: 100%;
    z-index: -1;
    animation: pulse 2s infinite;
    will-change: transform;
}
.notification-pulse:hover {
  animation: none !important;
}
.notification-pulse:before:hover {
  animation: none !important;
}
 @keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
 }