/* Ensure custom prices are displayed correctly */

.brxe-product-price .price {
	display: none;
}
.volume-discount-buttons {
    margin-bottom: 10px;
}
.volume-discount-buttons .button {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 10px 15px;
    background-color: #007cba;
    color: #fff;
    border: none;
    cursor: pointer;
}

.volume-discount-buttons .button:hover {
    background-color: #005a87;
}

.volume-discount-buttons .button.selected {
    background-color: #005a87; /* Change this to the color you want for the selected buttons */
}



.price .original-price {
    margin-right: 10px;
    color: red;
    text-decoration: none; /* Ensure no strike-through initially */
	font-size: 21px;
	font-weight: 700;
	display: inline-block; /* Ensure the element is inline-block */
    vertical-align: middle; /* Align vertically in the middle */
}

.price .discounted-price {
    font-size: 25px;
    color: green;
	display: inline-block;
	font-weight: 700;
	position: absolute;
    left: 75px;
    top: -4px;
	width: max-content;
}

.newPrice {
    height: 50px;
	position: relative;
    display: inline-block;
    vertical-align: middle;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 0.5s ease-in-out;
}