/* Minimal black-on-white download button inspired by the supplied reference. */
.vpda-button-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 24px 0;
	flex-wrap: wrap;
}

.vpda-button {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #000 !important;
	background: #fff !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	padding: 12px 18px !important;
	margin: 0;
	color: #000 !important;
	font-family: inherit;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.2 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

.vpda-button:hover {
	background: #f2f2f2 !important;
	color: #000 !important;
	opacity: 1;
}

.vpda-button:active {
	opacity: .75;
}

.vpda-button:focus-visible {
	outline: 1px solid #000;
	outline-offset: 4px;
}

.vpda-button:disabled {
	cursor: wait;
	opacity: .55;
}

.vpda-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	display: block;
}

.vpda-label {
	display: inline-block;
	color: inherit;
}

.vpda-status {
	width: 100%;
	margin-top: 8px;
	font-size: 12px;
	color: #000;
	text-align: center;
	opacity: .65;
}

@media (max-width: 600px) {
	.vpda-button {
		font-size: 14px !important;
		padding: 11px 16px !important;
	}

	.vpda-icon {
		width: 21px;
		height: 21px;
		flex-basis: 21px;
	}
}
