#firebase-notification {
    position: relative;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    min-width: 120px;
    margin-left: 20px;
    justify-content: center;
}

#firebase-notification .icon-circle {
    /* position: absolute; */
    left: 8px;
    width: 28px;
    height: 28px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}


#firebase-notification i {
  color: #fff;
  font-size: 12px;
  transition: all 0.3s ease;
}

#firebase-notification .text {
  /* margin-left: 36px; */
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

/* enabled state - icon circle expands to fill button */
#firebase-notification.enabled .icon-circle {
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 50px;
}

#firebase-notification.enabled {
  color: #fff;
  background-color: #000;
}

#firebase-notification.enabled .text {
  margin-left: 0;
  position: relative;
  z-index: 3;
}

/* Icon swap animation */
@keyframes iconSwap {
  0% {
    transform: rotateY(0deg) scale(1);
  }

  50% {
    transform: rotateY(90deg) scale(0.5);
  }

  100% {
    transform: rotateY(0deg) scale(1);
  }
}

#firebase-notification.swap i {
  animation: iconSwap 0.5s ease;
}

/* Particles effect */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  pointer-events: none;
}

@keyframes particleBurst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(var(--x), var(--y)) scale(0);
    opacity: 0;
  }
}

.particle.burst {
  animation: particleBurst 0.6s ease-out forwards;
}

/* Text morphing effect */
#firebase-notification .text {
  position: relative;
  display: inline-block;
}

@keyframes textMorph {

  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }

  50% {
    transform: scaleX(0.8);
    opacity: 0.5;
  }
}

#firebase-notification.morph .text {
  animation: textMorph 0.4s ease;
}

/* Magnetic hover effect */
#firebase-notification {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#firebase-notification-sm {

  padding: 9px 0px !important;
  font-size: 12px !important;
  min-width: 96px !important;
  margin-left: 15px !important;
}

#firebase-notification-sm i {
  font-size: 10px;
}