.ceepos-product-field-wrapper div.woocommerce-input-wrapper input[type=radio]+label {
    display: inline !important;
}
.ceepos-product-field-wrapper {
    margin-right: 2px;
}
.ceepos-product-field-wrapper label.multicheck {
    display: inline !important;
}
.woocommerce-cart-form__contents td.product-name .ceepos_product_fields_edit_link {
    visibility: hidden;
}
.ceepos_product_fields_edit_container button {
    margin-top: 10px;
}
.ceepos-product-fields.spinner {
    width: 32px;
    height: 32px;
    border: 8px solid;
    border-color: #ccc transparent #ccc transparent;
    border-radius: 50%;
    animation: spin-anim 1.2s linear infinite;
}

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