.bdw-quantity-buttons{
	display: flex;
    padding:5px 0px;
		border: 1px solid black;
    margin-right: 5px;
    white-space: nowrap;
}
.bdw-quantity-button{
    padding: 5px 10px !important;
}

.bdw-fly-effect {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	transition: transform 1s ease-out, opacity 1s ease-out;
	opacity: 1;
}

.bdw-fly-effect.end {
	transform: scale(0.5);
	opacity: 0;
}
.bdw-quantity-button.bdw-fly-effect{
	padding:0px;
}
.bdw-fly-effect .quantity_amount, .bdw-fly-effect .bdw-discount-percentage, .bdw-fly-effect .bdw-discount-text{
	display:none;
}
.bdw-pulse {
  animation: bdw-pulse-animation 2s 2;
}

@keyframes bdw-pulse-animation {
	  0% {
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	  }
	100% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  
}