.custom-addtocart-wrapper {
    margin-bottom: 10px;
    display: inline-block;
}
.has-buy-now .product-quantity {
    flex-wrap: wrap;
    gap: 5px;
}
.custom-addtocart {
    width: 100%;
    position: relative;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}
button.custom-addtocart i.shopping-cart {
    margin: 0;
}
button.custom-addtocart.addcarting i.shopping-cart {
    opacity: 0;
}
button.custom-addtocart.addcarting:before {
    content: "";
    border-left: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    border-top: 1.5px solid transparent;
    border-bottom: 1.5px solid transparent;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: 50%;
    margin-top: -9px;
    left: 23px;
    animation: checkoutspin 0.6s linear infinite;
}
@keyframes checkoutspin {
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes checkoutspin {
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}