.button.button_item {
	max-width: 199px;
	line-height: 54px;
	position: absolute;
	bottom: -60px;
	transition: 0.4s;
	left: calc(50% - 99.5px);
}

.product_item {
	position: relative;
	display: block;
	border: 2px solid #FFFFFF;
	padding-bottom: 27px;
	height: 440px;

}

.new-product {
	position: absolute;
	font-weight: 700;
	font-size: 12px;
	line-height: 27px;
	color: #FFFFFF;
	width: 81px;
	height: 28px;
	background: var(--color-v2);
	display: flex;
	align-items: center;
	justify-content: center;
	top: 13px;
	left: 13px;

}

.product_item:hover {
	border: 2px solid #DFDFDF;
}

.product_item:hover .button.button_item {
	bottom: 27px;
}

.product_item_image {
	min-height: 247px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product_item_text_container {
	margin-top: 57px;
	text-align: center;
	position: relative;
	transition: 0.4s;
	padding: 0 13px 0;
}

.product_item:hover .product_item_text_container {
	margin-top: 15px;
}

.product_item_name {
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: var(--color-default_v1);
}

.product_item_price {
	font-family: 'Source Sans Pro';
	font-weight: 700;
	font-size: 20px;
	line-height: 25px;
	text-align: center;

	color: #000;
	margin-top: 10px;
}

.product_item_price_old {
	color: #ababab;
	text-decoration: line-through;
	line-height: 22px;
	font-size: 15px;
	margin: 5px 0 -15px 0
}

@media(max-width:991px) {
	.product_item {
		border: 2px solid #DFDFDF;
	}

	.product_item .button.button_item {
		bottom: 27px;
	}


	.product_item .product_item_text_container {
		margin-top: 15px;
	}
}