.mod_cart {
  margin-left: 15px;
}
.mod_cart i {
  background-color: var(--main-color);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  color: var(--lb);
  min-width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.mod_cart i:has(#eshop-cart-total.active) {
  animation: bounceCart 0.6s ease-in-out 3;
}
.mod_cart i span {
  position: absolute;
  background-color: var(--main-color);
  height: 15px;
  width: 13px;
  bottom: 0;
  right: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 0;
  font-weight: 700;
}
.mod_cart .text {
  text-transform: uppercase;
  margin-left: 10px;
  font-weight: 800;
  color: var(--dark-text);
  font-size: 15px;
  margin-right: 20px;
}
@keyframes bounceCart {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.95);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=mod_cart.css.map */