Men's Casual Solid Color Faith Long Sleeve Lapel Shirt

$22.99
$43.10
Save $20.11
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
Description

Description

  • SPU:
    MSR502645
  • Material:
    Cotton Blends/Polyester
  • Style:
    Casual/Vintage/Sporty/Stylish
  • Pattern Type:
    Mixed Print
  • Element:
    Button Design
  • Size:
    XS/S/M/L/XL/XXL/XXXL/XXXXL/XXXXXL
  • Fit Type:
    Loose
  • Neckline:
    Turndown Collar
  • Clothing Length Type:
    Regular
*The item does not include any accessories in the picture, unless stated otherwise in the product description.

Size chart

Size ShoulderBustClothing Length
CM INCHCM INCHCM INCH
XS 44.0 17.3296.0 37.8071.0 27.95
S 46.0 18.11106.0 41.7373.0 28.74
M 48.0 18.90112.0 44.0975.0 29.53
L 50.0 19.68118.0 46.4678.0 30.71
XL 52.0 20.47126.0 49.6180.0 31.50
2XL 54.0 21.26132.0 51.9782.0 32.28
3XL 56.0 22.05138.0 54.3385.0 33.46
4XL 58.0 22.83144.0 56.6987.0 34.25
5XL 60.0 23.62150.0 59.0589.0 35.04
1
Select product
Selected 0 item(s)
As shown/ XS
As shown/ S
As shown/ M
As shown/ L
As shown/ XL
As shown/ 2XL
As shown/ 3XL
As shown/ 4XL
As shown/ 5XL
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)