/**
 * Alcli Product PDF - download button.
 */

.alcli-pdf-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 13px 20px;
	margin: 0 0 18px;
	border: 1px solid rgba(20, 17, 15, 0.16);
	border-radius: 6px;
	background: #fff;
	color: #14110f;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.alcli-pdf-btn:hover,
.alcli-pdf-btn:focus-visible {
	background: #cd4547;
	border-color: #cd4547;
	color: #fff;
	transform: translateY(-2px);
}

.alcli-pdf-btn__icon {
	width: 18px;
	height: 18px;
	fill: #cd4547;
	flex: 0 0 auto;
	transition: fill 0.25s ease;
}

.alcli-pdf-btn:hover .alcli-pdf-btn__icon,
.alcli-pdf-btn:focus-visible .alcli-pdf-btn__icon {
	fill: #fff;
}

/* The filename, shown so buyers know what they are getting. */
.alcli-pdf-btn small {
	font-size: 12px;
	font-weight: 500;
	color: #57514a;
	transition: color 0.25s ease;
}

.alcli-pdf-btn:hover small,
.alcli-pdf-btn:focus-visible small {
	color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 600px) {
	.alcli-pdf-btn small {
		flex: 1 1 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.alcli-pdf-btn,
	.alcli-pdf-btn__icon {
		transition: none !important;
		transform: none !important;
	}
}
