.wcpt-instant-cart-action .wcpt-quantity:after,
.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;
}

.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% {
    transform: translateX(0);
  }    
  50% {
    transform: translateX(calc(400%));
  }
}

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

@keyframes wcpt_acq_pulse_1 {
  0% {
    opacity: 1;
  }
    
  50% {
    opacity: .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 .5s linear infinite;
}

@keyframes wcpt_acq_pulse_2 {
  0% {
    opacity: .8;
  }
    
  50% {
    opacity: .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;
}