/*!
 * Checkout
 *
 * The Portishead Print styles for the checkout items 
 * Written 14/03/2023 by RW
 */
.btnCheckout {
	background-color: #4CAF50; /* Green */
	border: 1px solid #000000; /* Black */
	border-radius: 5px;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 18px;
	font-weight : bold;
	margin: 4px 2px;
	cursor: pointer;
	width: 40%;
	text-transform: uppercase;
	transition: all 0.2s ease-in-out;
}
.btnAdd {
	/*background-color: #4CAF50; /* Green */
	border: 1px solid #000000; /* Black */
	border-radius: 5px;
	color: black;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 18px;
	font-weight : bold;
	margin: 4px 2px;
	cursor: pointer;
	width: 40%;
	text-transform: uppercase;
	transition: all 0.2s ease-in-out;
}
.btnCheckout:hover {
	color: rgba(255, 255, 255, 1);
	box-shadow: 0 5px 15px rgba(145, 92, 182, .4);
}
.btnAdd:hover {
	color: rgba(0, 0, 0, 1);
	box-shadow: 0 5px 15px rgba(145, 92, 182, .4);
}
