/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 04 2025 | 11:26:42 */
.menu-button {
  position: relative;
}
.menu-button:after {
  content: "";
  height: 14px;
  width: 14px;
  background-color: #4ACC80;
  animation: pulse 3s infinite;
  border-radius: 100%;
  position: absolute;
  top: -6px;
  right: -6px;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(75, 205, 129, 0.63);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(207, 57, 39, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(207, 57, 39, 0);
  }
}
