/**
 * SolusiProperti WA Button - Frontend Styles
 *
 * Loaded only on pages where the Elementor widget is actually present
 * (see Widget::get_style_depends() and Loader::register_frontend_assets()).
 */

.spwa-wrapper {
	display: flex;
	width: 100%;
}

.spwa-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: #25D366;
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	border-radius: 8px;
	padding: 16px 30px;
	transition-property: background-color, color, box-shadow, border-color;
	transition-duration: 300ms;
	transition-timing-function: ease;
	cursor: pointer;
	box-sizing: border-box;
}

.spwa-button:visited {
	color: inherit;
}

.spwa-button:focus-visible {
	outline: 2px solid #128C4A;
	outline-offset: 2px;
}

.spwa-button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.1em;
	height: 1.1em;
	flex-shrink: 0;
}

.spwa-button__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.spwa-button__text {
	white-space: nowrap;
}

.spwa-wrapper--notice {
	padding: 12px 16px;
	border: 1px dashed #d63638;
	border-radius: 4px;
	background: #fcf0f1;
}

.spwa-admin-notice {
	margin: 0;
	color: #d63638;
	font-size: 13px;
}

@media (max-width: 767px) {
	.spwa-button__text {
		white-space: normal;
	}
}
