/* Blinking red dot for menu item #2332 */
li#menu-item-2332 {
  position: relative; /* ensure positioning context */
}

li#menu-item-2332::before {
  content: "";
  position: absolute;
  top: 40px;   /* adjust as needed to fine-tune placement */
  left: 4px;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  animation: blinkDot 1s infinite;
  z-index: 10;
}

@keyframes blinkDot {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* Hide the dot on viewports narrower than 1240px */
@media screen and (max-width: 1239px) {
  li#menu-item-2332::before {
    display: none;
  }
}