.skyspy-button-wrap {
	display: flex;
}

.skyspy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	height: 50px;
	padding: 0 30px;
	background-color: var(--color-white);
	color: var(--color-text);
	font-family: var(--font-primary);
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.skyspy-button:hover {
	opacity: 0.8;
}

.skyspy-button__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 0;
}

.skyspy-button__icon svg {
	width: 15px;
	height: 15px;
	display: block;
	fill: currentColor;
}

.skyspy-button__icon img {
	width: 15px;
	height: 15px;
	display: block;
	object-fit: contain;
}
