.mwf-widget {
	--mwf-green: #25d366;
	--mwf-wa-1: #55eb6f;
	--mwf-wa-2: #25d366;
	--mwf-wa-bg: linear-gradient(135deg, var(--mwf-wa-1) 0%, var(--mwf-wa-2) 100%);
	--mwf-teal: #007769;
	--nwf-teal: var(--mwf-teal);
	--mwf-gray: #a6a6a6;
	--mwf-link: #23b6da;
	--mwf-text: #1b1b1b;
	--mwf-border: #d2d2d2;
	bottom: 24px;
	position: fixed;
	right: 24px;
	z-index: 99999;
	height: 56px;
	width: 56px;
}

.mwf-fab {
	align-items: center;
	background: var(--mwf-wa-bg);
	border: 0;
	border-radius: 10px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	display: inline-flex;
	height: 56px;
	justify-content: center;
	outline: none;
	padding: 0;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
	width: 56px;
}

.mwf-fab:active {
	transform: translateY(1px);
}

.mwf-fab-icon {
	height: 30px;
	width: 30px;
	filter: brightness(0) invert(1);
	transition: transform 220ms ease;
}

.mwf-panel {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 68px;
	bottom: 0;
	transform: translateY(10px);
	transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
	visibility: hidden;
	width: min(340px, 88vw);
}

.mwf-panel.mwf-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 0s;
	visibility: visible;
}

.mwf-dialog {
	background: #ffffff;
	border-radius: 26px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	overflow: hidden;
	width: 100%;
}

.mwf-header {
	background: var(--mwf-teal);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
}

.mwf-title {
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
}

.mwf-close {
	appearance: none;
	background: transparent;
	border: 0;
	color: #ffffff;
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
	padding: 0 2px;
}

.mwf-body {
	padding: 14px 16px 16px;
}

.mwf-text {
	color: var(--mwf-text);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
}

.mwf-field {
	margin-bottom: 12px;
}

#mwf-step-2 .mwf-field {
	margin-bottom: 8px;
}

.mwf-input,
.mwf-select {
	background: #ffffff;
	border: 1px solid var(--mwf-border);
	border-radius: 6px;
	color: var(--mwf-text);
	font-size: 16px;
	padding: 12px 12px;
	transition: border-color 160ms ease, box-shadow 160ms ease;
	width: 100%;
}

.mwf-input:focus,
.mwf-select:focus {
	border-color: var(--mwf-teal);
	outline: none;
}

.mwf-readonly {
	background: #d1d1d1;
	border: 1px solid #8a8a8a;
	border-radius: 6px;
	color: #444444;
	font-size: 16px;
	padding: 10px 12px;
	transition: opacity 180ms ease;
	word-break: break-word;
}

.mwf-row {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
}

#mwf-step-2 .mwf-row {
	gap: 8px;
}

.mwf-consent {
	margin: 6px 0 12px;
}

.mwf-consent-label {
	color: #6a6a6a;
	cursor: pointer;
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 10px;
	line-height: 1.25;
	font-size: 13px;
}

.mwf-consent-label input[type="checkbox"] {
	margin-top: 2px;
}

.mwf-consent-label a {
	color: var(--mwf-link);
	text-decoration: underline;
}

.mwf-continue {
	background: #adadad;
	border: 0;
	border-radius: 10px;
	color: #ffffff;
	cursor: not-allowed;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.6px;
	outline: none;
	padding: 12px 14px;
	text-transform: uppercase;
	transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
	width: 100%;
}

.mwf-continue.mwf-enabled {
	background: var(--nwf-teal);
	cursor: pointer;
}

.mwf-continue:active {
	transform: translateY(1px);
}

.mwf-continue:disabled {
	opacity: 1;
}

.mwf-submit {
	align-items: center;
	background: var(--mwf-wa-bg);
	border: 0;
	border-radius: 10px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	gap: 10px;
	justify-content: center;
	outline: none;
	padding: 12px 14px;
	transition: transform 180ms ease, filter 180ms ease;
	width: 100%;
}

.mwf-submit:active {
	transform: translateY(1px);
}

.mwf-icon-inline {
	height: 20px;
	width: 20px;
	filter: brightness(0) invert(1);
	transition: transform 220ms ease;
}

.mwf-error {
	color: #c62828;
	font-size: 12px;
	margin-top: 6px;
	min-height: 14px;
}

.mwf-hidden {
	display: none;
}

.mwf-anim-in {
	animation: mwfFadeInUp 240ms ease both;
}

.mwf-pop {
	animation: mwfPop 360ms ease both;
}

@keyframes mwfFadeInUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mwfPop {
	0% {
		transform: scale(0.92);
	}
	55% {
		transform: scale(1.08);
	}
	100% {
		transform: scale(1);
	}
}

.mwf-invalid {
	border-color: #c62828 !important;
}

@media (max-width: 520px) {
	.mwf-widget {
		height: 56px;
		width: 56px;
	}

	.mwf-panel {
		right: 0;
		bottom: 68px;
	}
}

@media (max-width: 420px) {
	.mwf-widget {
		right: 16px;
		bottom: 16px;
	}

	.mwf-panel {
		width: min(360px, 92vw);
	}

	.mwf-row {
		grid-template-columns: 1fr 1fr;
	}
}
