.gift-notice {
	font-size: 14px;
	background: #2ab7b9;
	color: #FFF;
	padding: 14px;
}

.gift-notice a {
	color: #000;
}

.gift-notice a:hover {
	color: #FFF;
}

.discount-select-product div.title h2 {
	margin: 0 0 30px 0;
	font-size: 26px;
}

.discount-select-product div.title h4 {
	font-size: 16px;
	font-style: italic;
}

.discount-select-product .products {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: stretch;
	    align-items: stretch;
}

.discount-select-product .products .product {
	max-width: 250px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-align: center;
	    align-items: center;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	margin: 7px;
	padding: 10px;
	transition: box-shadow 0.3s ease-in-out;
}

.discount-select-product .products .product:hover {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.discount-select-product .products .product .title {
	padding: 5px 0;
	font-weight: 700;
	text-align: center;
	-ms-flex: 1;
	    flex: 1;
}

.discount-select-product .products .product .button {
	transition: background 0.2s ease;
	border-radius: 0;
	float: none;
	width: 100%;
	height: 46px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
	color: white;
	letter-spacing: 1px;
	background: linear-gradient(to left, #29b8ba 50%, #9e9e9e 50%);
	background-size: 300% 100%;
	background-position: right bottom;
	border: 2px solid #11a1a3;
	text-align: center;
	line-height: 46px;
	margin: 5px 0;
	padding: 0;
}

.discount-select-product .products .product .button:focus {
	outline: none;
}

.discount-select-product .products .product .button:hover {
	background-position: left bottom;
	border: 2px solid #959595;
}

.discount-select-product .products .product img {
	max-height: 200px;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 2px solid #d7d7d7;
}

@media (max-width: 560px) {
	.discount-select-product div.title h2 {
		font-size: 18px;
	}
	.discount-select-product div.title h4 {
		font-size: 14px;
	}
}

.discount-select-product.view-only .products .product .add_to_cart_button {
	display: none;
}