.notification {
  position: absolute;
  width: 2.25rem;
  height: 2.25rem;
  cursor: pointer;
  z-index:1049;
  top:0;
  left:0;
}

.notification svg {
  width: 2.25rem;
  height: 2.25rem;
}

.notification svg > path {
  fill: #006ab7;
}

.notification--bell-animate {
  animation: bell 2.2s linear infinite;
  transform-origin: 50% 0%;
}

.notification--bellClapper {
  animation: bellClapper 2.2s 0.1s linear infinite;
}

.notification--num {
  position: absolute;
  top: 0%;
  left: 55%;
  font-size: .78rem;
  border-radius: 50%;
  width: 1.75em;
  height: 1.75em;
  background-color: #EE1B2A;
  border: 1px solid transparent;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.7em;
  /*animation: notification 3.2s ease;*/
}

@keyframes bell {
  0%, 25%, 75%, 100% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(2deg);
  }
  45% {
    transform: rotate(-2deg);
  }
  55% {
    transform: rotate(1deg);
  }
  60% {
    transform: rotate(-1deg);
  }
}

@keyframes bellClapper {
  0%, 25%, 75%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-0.15em);
  }
  45% {
    transform: translateX(0.15em);
  }
  55% {
    transform: translateX(-0.1em);
  }
  60% {
    transform: translateX(0.1em);
  }
}

@keyframes notification {
  0%, 25%, 75%, 100% {
    opacity: 1;
  }
  30%, 70% {
    opacity: 0;
  }
}