.product{
	background-color: #fff;
}

.product__item{
	padding: 1rem;
}

.product__item > .section{
	padding: 0;
}

.product .price,
.product .old-price{
	font-size: 2em;
}

.product .price{
	display: inline-block;
	padding: .25em;
	background: #f5e300;
}

.product .button_submit{
	display: block;
	width: 100%;
	text-align: center;
}

@media (min-width: 768px){

	.product{		
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: flex-start;
		align-items: flex-start;
	}

	.product__item{
		width: 50%;
		/*padding: 1rem;*/
	}
/*
	.product__item > .section{
		padding: 0;
	}
*/
	.product .button_submit{
		display: inline-block;
		width: auto;
	}

}