/* Hay Bundle Estimate — download button, styled to sit under the calculator's Reset button */

.hay-calc-download-btn {
	display: block;
	width: 100%;
	margin-top: 10px;
	padding: 12px 16px;
	background: #deb408;
	color: #1a1a1a;
	border: none;
	border-radius: 4px;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.2;
	cursor: pointer;
	transition: background .15s ease;
}

.hay-calc-download-btn:hover,
.hay-calc-download-btn:focus {
	background: #c9a207;
}

.hay-calc-download-btn:disabled {
	opacity: .6;
	cursor: default;
}

.hay-calc-download-msg {
	margin-top: 8px;
	min-height: 1em;
	font-size: 13px;
	line-height: 1.3;
	text-align: center;
	color: #b00000;
}

/* Never show the button on a printed page */
@media print {
	.hay-calc-download-btn,
	.hay-calc-download-msg {
		display: none !important;
	}
}
