V-neck Single Button Long Sleeve Waisted Blazer

$29.99
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
Description

Our distinctive clothing will add instant style to your wardrobe.

 

  • Length: Thigh-Length
  • Material: Polyester
  • Sleeve Type: Long Sleeve
  • Neckline: V-neck
  • Style: Party / Casual Wear
  • Fit Style: Loose Fit


@Note:
Size: please check measurements carefully
Please allow 0.5-1" difference due to manual measurement
Different monitor settings means colors may differ slightly
1" = 2.54cm

Size Bust Length Waist
cm inch cm inch cm inch
S 100 39.4  75 29.5  66 26.0 
M 104 40.9  76 29.9  70 27.6 
L 110 43.3  77 30.3  76 29.9 
XL 116 45.7  78 30.7  82 32.3 

1
Select product
Selected 0 item(s)
Black top/ S
Black top/ M
Black top/ L
Black top/ XL
White top/ S
White top/ M
White top/ L
White top/ XL
Black skirt/ S
Black skirt/ M
Black skirt/ L
Black skirt/ XL
White skirt/ S
White skirt/ M
White skirt/ L
White skirt/ XL
class SpzCheckoutNotificationHandler extends SPZ.BaseElement { constructor(element) { super(element); this.timer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } sendVariantListUpdateEvent_(data) { const messageData = { type: "theme_variant_list_update", data: { orderToken: data.order_token || data.order_id } }; clearInterval(this.timer_); if(!window.CheckoutAPI) { this.timer_ = setInterval(() => { if(window.CheckoutAPI) { clearInterval(this.timer_); postMessage && postMessage(messageData); } }, 500); } else { postMessage && postMessage(messageData); } } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction('sendVariantListUpdateEvent', (param) => { this.sendVariantListUpdateEvent_(param.args.data); }); } } SPZ.defineElement('spz-custom-checkout-notification-handler', SpzCheckoutNotificationHandler); function handleGetOrderInfo(data) { if (data.order_id) { let api = `/api/checkout/order/info?order_id=${data.order_id}`; return Promise.resolve(api); } return Promise.reject({}); } function addEventListenerKickItems(data) { if (data.type === 'checkout_kick_items') { return Promise.resolve(data); } return Promise.reject({}); } exportFunction('handleGetOrderInfo', handleGetOrderInfo) exportFunction('addEventListenerKickItems', addEventListenerKickItems)