.block.bigcommerce-cart-menu {
  position: relative;
}
.block.bigcommerce-cart-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}
.block.bigcommerce-cart-menu a svg {
  width: 25px;
  height: 25px;
}
.block.bigcommerce-cart-menu a:hover svg path {
  fill: var(--wp--preset--color--accent);
}

.block.bigcommerce-cart-menu:after {
  content: "0";
  display: none;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--wp--preset--color--accent);
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: #fff;
  font-size: 0.8rem;
  animation: pulse 2s infinite ease-in-out;
  transform-origin: center;
}

/* Keyframes for the pulsing effect */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}/*# sourceMappingURL=bigcommerce_cart_menu.css.map */