.wk-feedback {
	--wk-feedback-accent: #7ab38b;
	--wk-feedback-accent-ink: #203a29;
	--wk-feedback-ink: #2f3437;
	--wk-feedback-muted: #687078;
	--wk-feedback-line: #d9dddf;
	--wk-feedback-surface: #fff;
	--wk-feedback-warm: #fbfaf8;
	position: relative;
	z-index: 400;
}

.wk-feedback *,
.wk-feedback *::before,
.wk-feedback *::after {
	box-sizing: border-box;
}

.wk-feedback button,
.wk-feedback input,
.wk-feedback textarea {
	font: inherit;
}

.wk-feedback .wk-feedback__launcher {
	align-items: center;
	background: var(--wk-feedback-accent) !important;
	border: 0;
	border-radius: 999px;
	bottom: 18px;
	box-shadow: 0 5px 16px rgba(48, 83, 59, .2);
	color: var(--wk-feedback-accent-ink);
	cursor: pointer;
	display: flex;
	font-family: Karla, Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	padding: 12px 17px;
	position: fixed !important;
	right: 18px;
	transition: box-shadow .15s ease;
	z-index: 400;
}

.wk-feedback .wk-feedback__launcher:hover {
	box-shadow: 0 7px 20px rgba(48, 83, 59, .28);
}

.wk-feedback__launcher:focus-visible,
.wk-feedback button:focus-visible,
.wk-feedback input:focus-visible,
.wk-feedback textarea:focus-visible {
	outline: 2px solid rgba(49, 93, 66, .55);
	outline-offset: 2px;
}

.wk-feedback__overlay {
	align-items: center;
	background: rgba(31, 37, 34, .34);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 16px;
	position: fixed;
	z-index: 99990;
}

.wk-feedback__overlay[hidden] {
	display: none;
}

.wk-feedback__sr-only {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.wk-feedback__dialog {
	background: var(--wk-feedback-surface);
	border-radius: 12px;
	box-shadow: 0 18px 50px rgba(22, 32, 26, .2);
	color: var(--wk-feedback-ink);
	font-family: Karla, Arial, sans-serif;
	max-height: min(88vh, 720px);
	max-width: 540px;
	overflow: auto;
	width: 100%;
}

.wk-feedback__header {
	align-items: center;
	border-bottom: 1px solid #edf0ee;
	display: flex;
	justify-content: space-between;
	padding: 18px 22px 15px;
}

.wk-feedback__header h2 {
	color: var(--wk-feedback-ink);
	font-family: Lora, Georgia, serif;
	font-size: 23px;
	line-height: 1.2;
	margin: 0;
}

.wk-feedback .wk-feedback__close {
	align-items: center;
	background: transparent !important;
	border: 0;
	color: #555f64;
	cursor: pointer;
	display: flex;
	height: 34px;
	justify-content: center;
	margin: -5px -5px -5px 0;
	padding: 6px;
	position: relative;
	width: 34px;
}

.wk-feedback__close svg {
	display: none;
}

.wk-feedback__close::before,
.wk-feedback__close::after {
	background: currentColor;
	border-radius: 1px;
	content: "";
	height: 2px;
	left: 7px;
	position: absolute;
	top: 16px;
	width: 20px;
}

.wk-feedback__close::before {
	transform: rotate(45deg);
}

.wk-feedback__close::after {
	transform: rotate(-45deg);
}

.wk-feedback__form {
	padding: 20px 22px;
}

.wk-feedback fieldset {
	border: 0;
	margin: 0;
	min-width: 0;
	padding: 0;
}

.wk-feedback__types {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, 1fr);
}

.wk-feedback__types label,
.wk-feedback__rating-options label {
	cursor: pointer;
	margin: 0;
	position: relative;
}

.wk-feedback__types input,
.wk-feedback__rating-options input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.wk-feedback__types span {
	align-items: center;
	background: #fff;
	border: 1px solid var(--wk-feedback-line);
	border-radius: 7px;
	color: #555d62;
	display: flex;
	font-size: 14px;
	font-weight: 600;
	justify-content: center;
	min-height: 42px;
	padding: 8px 10px;
	transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.wk-feedback__types input:checked + span {
	background: var(--wk-feedback-accent);
	border-color: var(--wk-feedback-accent);
	color: var(--wk-feedback-accent-ink);
}

.wk-feedback__types input:focus-visible + span,
.wk-feedback__rating-options input:focus-visible + span {
	outline: 2px solid rgba(49, 93, 66, .55);
	outline-offset: 2px;
}

.wk-feedback__rating {
	margin-top: 19px !important;
}

.wk-feedback__rating legend,
.wk-feedback__field > span {
	color: #42494d;
	display: block;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 8px;
}

.wk-feedback__rating-options {
	display: grid;
	gap: 6px;
	grid-template-columns: repeat(5, 1fr);
}

.wk-feedback__rating-options span {
	align-items: center;
	background: var(--wk-feedback-warm);
	border: 1px solid var(--wk-feedback-line);
	border-radius: 7px;
	display: flex;
	font-size: 24px;
	justify-content: center;
	min-height: 52px;
	transition: border-color .15s ease, background .15s ease;
}

.wk-feedback__rating-options input:checked + span {
	background: #eef6f0;
	border-color: var(--wk-feedback-accent);
	box-shadow: inset 0 0 0 1px var(--wk-feedback-accent);
}

.wk-feedback__field {
	display: block;
	margin-top: 18px;
}

.wk-feedback .wk-feedback__field textarea,
.wk-feedback .wk-feedback__field input {
	background: var(--wk-feedback-warm);
	border: 1px solid var(--wk-feedback-line);
	border-radius: 7px;
	color: var(--wk-feedback-ink);
	display: block;
	font-size: 15px;
	line-height: 1.5;
	margin: 0;
	padding: 11px 13px;
	width: 100%;
}

.wk-feedback .wk-feedback__field textarea {
	min-height: 100px;
	resize: vertical;
}

.wk-feedback .wk-feedback__field input {
	height: 46px;
}

.wk-feedback .wk-feedback__field textarea::placeholder,
.wk-feedback .wk-feedback__field input::placeholder {
	color: #969da1;
}

.wk-feedback__field small {
	color: var(--wk-feedback-muted);
	display: block;
	font-size: 12px;
	margin-top: 5px;
}

.wk-feedback__counter {
	text-align: right;
}

.wk-feedback__honeypot {
	height: 0;
	left: -9999px;
	overflow: hidden;
	position: absolute;
	width: 0;
}

.wk-feedback__notice {
	color: #b32d2e;
	font-size: 14px;
	font-weight: 600;
	margin-top: 12px;
	min-height: 18px;
}

.wk-feedback .wk-feedback__submit,
.wk-feedback .wk-feedback__done {
	align-items: center;
	background: var(--wk-feedback-accent);
	border: 0;
	border-radius: 7px;
	color: var(--wk-feedback-accent-ink);
	cursor: pointer;
	display: flex;
	font-size: 15px;
	font-weight: 600;
	justify-content: center;
	min-height: 46px;
	padding: 11px 18px;
	width: 100%;
}

.wk-feedback .wk-feedback__submit:disabled {
	background: #d8ded9;
	color: #687078;
	cursor: not-allowed;
	opacity: .72;
}

.wk-feedback__submit svg {
	fill: none;
	height: 21px;
	margin-right: 9px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 21px;
}

.wk-feedback__privacy {
	color: var(--wk-feedback-muted);
	font-size: 12px;
	margin: 10px 0 0;
	text-align: center;
}

.wk-feedback__privacy a {
	color: var(--wk-feedback-accent);
	text-decoration: underline;
}

.wk-feedback__success {
	padding: 40px 28px;
	text-align: center;
}

.wk-feedback__success[hidden] {
	display: none;
}

.wk-feedback__success > div {
	align-items: center;
	background: #e9f4ec;
	border-radius: 50%;
	color: var(--wk-feedback-accent);
	display: flex;
	font-size: 28px;
	height: 58px;
	justify-content: center;
	margin: 0 auto 16px;
	width: 58px;
}

.wk-feedback__success h3 {
	font-family: Lora, Georgia, serif;
	font-size: 24px;
	margin: 0 0 8px;
}

.wk-feedback__success p {
	color: var(--wk-feedback-muted);
	font-size: 15px;
	margin: 0 0 20px;
}

.wk-feedback .wk-feedback__done {
	margin: 0 auto;
	max-width: 260px;
}

body.wk-feedback-open {
	overflow: hidden;
}

@media (max-width: 1024px) {
	.wk-feedback .wk-feedback__launcher {
		bottom: calc(82px + env(safe-area-inset-bottom, 0px));
		right: 16px;
	}
}

body:has(.wd-sticky-btn-shown.wd-sticky-btn) .wk-feedback__launcher {
	bottom: calc(var(--wd-sticky-btn-height, 90px) + 18px);
}

@media (max-width: 1024px) {
	body.sticky-toolbar-on:has(.wd-sticky-btn-shown.wd-sticky-btn) .wk-feedback__launcher {
		bottom: calc(var(--wd-sticky-btn-height, 90px) + 79px + env(safe-area-inset-bottom, 0px));
	}
}

@media (max-width: 600px) {
	.wk-feedback .wk-feedback__launcher {
		font-size: 14px;
		padding: 11px 14px;
	}

	.wk-feedback__overlay {
		align-items: flex-end;
		padding: 0;
	}

	.wk-feedback__dialog {
		border-radius: 12px 12px 0 0;
		max-height: 92vh;
		max-width: none;
	}

	.wk-feedback__header {
		padding: 16px 18px 13px;
	}

	.wk-feedback__header h2 {
		font-size: 21px;
	}

	.wk-feedback__form {
		padding: 17px 18px;
	}

	.wk-feedback__types {
		gap: 7px;
	}

	.wk-feedback__types span {
		font-size: 13px;
		min-height: 40px;
		padding: 7px 5px;
	}

	.wk-feedback__rating {
		margin-top: 17px !important;
	}

	.wk-feedback__rating-options {
		gap: 6px;
	}

	.wk-feedback__rating-options span {
		font-size: 22px;
		min-height: 48px;
	}

	.wk-feedback__field {
		margin-top: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wk-feedback__launcher,
	.wk-feedback__types span,
	.wk-feedback__rating-options span {
		transition: none;
	}

	.wk-feedback .wk-feedback__launcher:hover,
	.wk-feedback__rating-options label:hover span {
		transform: none;
	}
}

@media print {
	.wk-feedback {
		display: none !important;
	}
}
