Very soft and comfortable sweater made of Alpaca yarn.
Sleeve : long.
Sleeve length: about 63 cm.
Jacket length: 60 cm.
Stretch: very good
Dear and beloved clients
All clothes produced by the factory, including knitted suits and dresses, strictly comply with the dimensional grid.
You can easily find the size grid on each product page. The size on the tag is indicated according to the Euro system.
Knitted suits and dresses do not shrink or shed when washed.
They do not need to be ironed after washing if you washed them properly.
Knitted things stretch well in width, but at the same time they can become shorter.
You are always welcome!
/en/cart/ajax_cart_minus/' + key,
type: 'post',
data: '',
dataType: 'json',
success: function (data) {
apply_cart_to_page(key, data);
}
});
}
// AJAX - Увеличение количества выбранного товара в корзине на единицу
function cart_plus(key) {
$.ajax({
url: '/en/cart/ajax_cart_plus/' + key,
type: 'post',
data: '',
dataType: 'json',
success: function (data) {
apply_cart_to_page(key, data);
}
});
}
// AJAX - Удаление товара из корзины
function cart_delete(key, el) {
$.ajax({
url: '/en/cart/ajax_cart_del/' + key,
type: 'post',
data: '',
dataType: 'json',
success: function (data) {
$(el).closest('.cng_cart-item').animate({opacity: 0}, 300, function () {
$(this).slideUp(150);
});
apply_cart_to_page(key, data);
}
});
}
jQuery('document').ready(function () {
var sliders = {};
jQuery('div[id^=gallery_holder_]').each(function () {
var _this_id = jQuery(this).attr('data-id');
var _width = 250;
var _infiniteLoop = true;
var _maxSlides = 7;
var _slideMargin = 2;
var _autoslide = true;
var _startSlide = 0;
if (_this_id == 1) {
var _infiniteLoop = false;
if (jQuery(this).width() < 1200) {
_maxSlides = 5;
}
if (jQuery(this).width() < 1000) {
_maxSlides = 4;
}
if (jQuery(this).width() < 750) {
_maxSlides = 3;
}
if (jQuery(this).width() < 500) {
_maxSlides = 2;
}
_width = jQuery(this).width() / _maxSlides - 1;
}
if (_this_id == 4) {
_width = "auto";
}
if (_this_id == 5) {
_infiniteLoop = false;
}
if (_this_id == 6) {
_maxSlides = 2;
_width = 300;
_slideMargin = 20;
_infiniteLoop = false;
}
if (_this_id == 7) {
_maxSlides = 2;
_width = 280;
_slideMargin = 20;
_infiniteLoop = true;
}
if (strstr(_this_id, 'tp_')) {
_autoslide = false;
_maxSlides = 1;
_width = 250;
_slideMargin = 0;
_infiniteLoop = false;
_startSlide = 0;
}
sliders[_this_id] = jQuery(this).bxSlider({
auto: _autoslide,
infiniteLoop: _infiniteLoop,
slideWidth: _width,
minSlides: 1,
maxSlides: _maxSlides,
moveSlides: 1,
slideMargin: _slideMargin,
speed: 1000,
startSlide: _startSlide,
hideControlOnEnd: true,
nextSelector: '#slider-next_' + _this_id,
prevSelector: '#slider-prev_' + _this_id
});
});
});