.icon-cart .cart-count {
  width: 20px;
  height: 20px;
  background: black !important;
  font-size: 13px;
  position: absolute;
  top: -6px;
  left: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  box-shadow: 1px 2px 8px rgb(0 0 0 / 23%);
}
.mini-cart-dropdown {
  min-width: 300px !important;
}
.mini-cart-dropdown a:not(.uk-button) {
  font-size: 16px;
}
.mini-cart-dropdown p {
  margin-top: 0px;
}
.mini-cart-item {
  padding: 20px 5px;
}
.cart-wrap span {
  animation: 0.6s ease-in-out 0.12s normal both 1 bounce_in_animation;
  -webkit-animation: 0.6s ease-in-out 0.12s normal both 1 bounce_in_animation;
}
@keyframes bounce_in_animation {
  0% {
    transform: scale(0, 0);
  }
  20% {
    transform: scale(1.4, 1.4);
  }
  50% {
    transform: scale(0.8, 0.8);
  }
  85% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes bounce_in_animation {
  0% {
    -webkit-transform: scale(0, 0);
  }
  20% {
    -webkit-transform: scale(1.4, 1.4);
  }
  50% {
    -webkit-transform: scale(0.8, 0.8);
  }
  85% {
    -webkit-transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
  }
}
