Send It No Victory Without Sacrifice Men's Hoodie

Free Shipping Over $70
Hot Sale
$31.00
$56.00
-45%
Color:  White
Size:  S
Quantity
Shipping
In stock, ready to ship
 - Livereid

Yo, listen up! This ain't just a T - shirt; it's a badge of honor for the fearless. The 'SEND IT' tee is all about that no - holds - barred, go - for - broke attitude. That sick skeleton hand sign? It's like a middle finger to fear and doubt. And the words 'NO VICTORY WITHOUT SACRIFICE'? They're a reminder that if you wanna win in life, you gotta be willing to put in the work, take the hits, and keep pushing.

Whether you're tearing up the motocross track, crushing it at the gym, or just going all - in on your dreams, this shirt's got your back. It's made tough, just like you, to handle all the sweat, all the action, and all the adventures. Wear it proud, 'cause it's not just fabric; it's your battle cry. Limited stock, so don't sleep on it. Get yours and show the world you're a true badass.

Description

Product Name

Send It No Victory Without Sacrifice Printed Men's Hoodie

SPU SPU10292961
Gender Men
Occasion Casual
Material Cotton Blend
Please Note: All dimensions are measured manually with a deviation of 1 to 3CM     
SIZE BUST SHOULDER LENGTH SLEEVE
IN CM IN CM IN CM IN CM
S 44.9 114 21.5 54.5 29.1 74 23.0 58.5
M 46.5 118 22.1 56 29.1 74 23.6 60
L 48.0 122 22.6 57.5 29.9 76 24.2 61.5
XL 50.4 128 23.4 59.3 29.9 76 24.8 63
2XL 52.8 134 24.1 61.1 30.7 78 25.4 64.5
3XL 55.1 140 24.8 62.9 30.7 78 26.0 66
4XL 57.5 146 25.5 64.7 31.5 80 26.6 67.5

 

 

PURCHASING TIPS

Cotton is the best fabric to practice our sport. And if it is organic cotton, we will have a higher quality and ecological t-shirt.

We play our sport in boxes that are not outdoors, so it is better to wear a garment that soaks up and keeps us cool.

Polyester, although it is cheaper, is an ideal fabric for sports such as cycling, running, football or other sports where air allows the garment to dry. If we use polyester in a workout, we are going to feel the sweat running through the inside of the shirt as it cannot dry.

That's why polyester t-shirts smell like sweat quickly. Furthermore, the feel of polyester is not so soft and can sometimes cause skin irritation.

Always choose organic cotton t-shirts! Look at the % cotton before buying, there are times when t-shirts are partly cotton and partly polyester.

Note

Color difference description

Due to the differences in the display of various equipment screen materials, there will be a certain color difference, and we will try to reduce the errors as much as possible, but this problem does not belong to the product quality problem

Size deviation

Because the products are manually measured, there will be an error of about 1-3 cm. Different styles will cause different sizes. Please refer to the physical tank measurement to measure the size table so that you can choose more suitable clothes.

Customer Reviews
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.