.wcpt-instant-cart-action .wcpt-quantity:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 20%;
  height: 3px;
  background: #7cb342;
  pointer-events: none;
  opacity: 0;
  transform-origin: left center;
}

.wcpt-instant-cart-action .wcpt-adding-product .wcpt-quantity:after,
.wcpt-instant-cart-action .wcpt-removing-product .wcpt-quantity:after {
  opacity: 1;
  animation: wcpt_quantity_instant_cart_action_loading 1.2s infinite linear;
}

@keyframes wcpt_quantity_instant_cart_action_loading {
  0% {
    left: 0%;
    transform: translateX(0%);
  }
  50% {
    left: 100%;
    transform: translateX(-100%);
  }
  100% {
    left: 0%;
    transform: translateX(0%);
  }
}

.wcpt-instant-cart-action .wcpt-adding-product .wcpt-quantity,
.wcpt-instant-cart-action .wcpt-removing-product .wcpt-quantity {
  animation: wcpt_acq_pulse_1 0.5s linear infinite;
}

@keyframes wcpt_acq_pulse_1 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.wcpt-instant-cart-action
  .wcpt-adding-product
  .wcpt-select-variation-dropdown-wrapper,
.wcpt-instant-cart-action
  .wcpt-removing-product
  .wcpt-select-variation-dropdown-wrapper {
  pointer-events: none;
  animation: wcpt_acq_pulse_2 0.5s linear infinite;
}

@keyframes wcpt_acq_pulse_2 {
  0% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.4;
  }
}

.wcpt-instant-cart-action .wcpt-add-selected__add {
  display: none !important;
}

.wcpt-instant-cart-action .wcpt-add-selected__select-all,
.wcpt-instant-cart-action .wcpt-add-selected__clear-all {
  display: inline-block !important;
}

.wcpt-instant-cart-action .wcpt-add-selected__select-all {
  margin-right: 5px;
}
