.fme-cacu-upsell-product {
    padding: 15px;
    border-radius: 5px;
    display: flex!important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.fme-cacu-upsell-container .added_to_cart.wc-forward,
.fme-cacu-upsell-container-block .added_to_cart.wc-forward {
    display: none !important;
}
.fme-cacu-upsell-container, .fme-cacu-upsell-container-block {
    /* padding: 20px; */
    margin-top: 10px;
    margin-bottom: 10px;
    width: 90%!important;
    margin-left: auto;
    margin-right: auto;
}
.remove-item-checkout, .product-info .product-title {
    color: #e74c3c;
    text-decoration: none!important;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e74c3c;
    border-radius: 4px;
    margin-top:4px;
    font-size: 0.85rem;
    width: fit-content;
    padding-left: 4px;
    padding-right: 4px;
}

.remove-item-checkout:hover {
    background: #e74c3c;
    color: white;
    text-decoration: none;
}

.woocommerce-checkout-review-order.processing {
    opacity: 0.6;
    pointer-events: none;
}

.woocommerce-checkout-review-order.processing::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}