/* CMP Download Button – v1.0.0 */

.cmp-dl-btn-wrapper {
	display: flex;
}

.cmp-dl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 2px 8px 2px 20px;
	background-color: #242526;
	border-radius: 30px;
	text-decoration: none !important;
	transition: background-color 0.25s ease, transform 0.15s ease;
	cursor: pointer;
	line-height: 1;
}

.cmp-dl-btn:hover {
	background-color: #3a3b3c;
	transform: translateY(-1px);
}

.cmp-dl-btn:active {
	transform: translateY(0);
}

.cmp-dl-btn__label {
	color: #F8F8F8;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 17.64px;
	white-space: nowrap;
}

.cmp-dl-btn__icon {
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}

.cmp-dl-btn__icon-circle {
	fill: #F8F8F8;
	transition: fill 0.25s ease;
}

.cmp-dl-btn__icon-path {
	fill: #242526;
	transition: fill 0.25s ease;
}
