/*
Copyright (C) 2016 Apple Inc. All Rights Reserved.
See LICENSE.txt for this sample’s licensing information
 
Abstract:
Styles the example site, as well as the Apple Pay button using -webkit-named-image
*/

/* .apple-pay-button {
	display: none;
	width: 160px;
	min-height: 50px;
	border: 1px solid black;
	background-image: -webkit-named-image(apple-pay-logo-black);
	background-size: 100% calc(60% + 2px);
	background-repeat: no-repeat;
	background-color: white;
	background-position: 50% 50%;
	border-radius: 5px;
	padding: 0px;
	margin: 20px auto;
	transition: background-color .15s;
} */

.apple-pay-button {
	display: none;
	width: 200px;
	height: 50px;
	margin: 20px auto;
	background-image: url('/images/Apple_Pay_DonateBlack_50pt.png');
}

.apple-pay-button.visible {
	display: inline-block;
}

.apple-pay-button:active {
	background-color: rgb(152, 152, 152);
}

.apple-pay-mark {
	visibility: hidden;
}

.apple-pay-mark.visible {
	visibility: visible;
}
