/* ===========================================================
 * CloneMyKey Custom Feedback v1.1
 * Floating tab + Need Help? modal + Issue/Contact form
 * =========================================================== */

/* ---------- Floating tab (vertical, right-edge) ---------- */
.cmk-fb-tab {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99998;
	background: #2271b1;
	color: #fff;
	border-radius: 6px 0 0 6px;
	box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.15);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.4px;
	user-select: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}

.cmk-fb-tab__btn {
	background: transparent;
	color: inherit;
	border: 0;
	padding: 14px 8px;
	cursor: pointer;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font: inherit;
	letter-spacing: 0.6px;
	line-height: 1;
}

.cmk-fb-tab__btn:hover {
	background: rgba(255, 255, 255, 0.08);
}

.cmk-fb-tab__close {
	background: rgba(0, 0, 0, 0.18);
	color: #fff;
	border: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	margin: 6px 0 8px 0;
	padding: 0;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Arial, sans-serif;
	transition: background-color 0.15s ease;
}

.cmk-fb-tab__close:hover {
	background: rgba(0, 0, 0, 0.35);
}

/* Mobile: horizontal pill at bottom-right */
@media (max-width: 600px) {
	.cmk-fb-tab {
		top: auto;
		bottom: 16px;
		right: 12px;
		transform: none;
		flex-direction: row;
		border-radius: 999px;
		padding: 0;
	}

	.cmk-fb-tab__btn {
		writing-mode: horizontal-tb;
		transform: none;
		padding: 10px 14px;
	}

	.cmk-fb-tab__close {
		margin: 0 8px 0 0;
		order: 2;
	}
}

/* ---------- Modal scaffold ---------- */
.cmk-fb-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: cmk-fb-fade 0.18s ease-out;
}

@keyframes cmk-fb-fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.cmk-fb-modal {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow: auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	color: #1f1f1f;
}

.cmk-fb-modal__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 20px 22px 12px 22px;
	border-bottom: 1px solid #eee;
}

.cmk-fb-modal__title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #111;
}

.cmk-fb-modal__sub {
	margin: 4px 0 0 0;
	font-size: 13px;
	color: #555;
}

.cmk-fb-modal__close {
	background: #f1f1f1;
	border: 0;
	width: 28px;
	height: 28px;
	min-width: 28px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Arial, sans-serif;
	margin-left: 12px;
	transition: background-color 0.15s ease;
}

.cmk-fb-modal__close:hover {
	background: #e3e3e3;
}

.cmk-fb-modal__body {
	padding: 18px 22px 22px 22px;
}

/* ---------- Need Help? choice screen ---------- */
.cmk-fb-choices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 4px;
}

@media (max-width: 480px) {
	.cmk-fb-choices {
		grid-template-columns: 1fr;
	}
}

.cmk-fb-choice {
	background: #fff;
	border: 1.5px solid #d8d8d8;
	border-radius: 8px;
	padding: 16px 14px;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
	transition: all 0.15s ease;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 110px;
}

.cmk-fb-choice:hover {
	border-color: #2271b1;
	background: #f6fbff;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(34, 113, 177, 0.12);
}

.cmk-fb-choice__title {
	font-size: 15px;
	font-weight: 700;
	color: #111;
}

.cmk-fb-choice__desc {
	font-size: 12.5px;
	color: #555;
	line-height: 1.4;
}

.cmk-fb-optout {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid #eee;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #555;
}

.cmk-fb-optout input[type="checkbox"] {
	margin: 0;
}

/* ---------- Form ---------- */
.cmk-fb-form label {
	display: block;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 600;
	color: #333;
}

.cmk-fb-form .cmk-fb-required {
	color: #d63638;
}

.cmk-fb-form input[type="text"],
.cmk-fb-form input[type="email"],
.cmk-fb-form textarea,
.cmk-fb-form select {
	width: 100%;
	box-sizing: border-box;
	padding: 9px 11px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
	font-family: inherit;
	margin-top: 5px;
	background: #fff;
	color: #1f1f1f;
}

.cmk-fb-form textarea {
	min-height: 110px;
	resize: vertical;
}

.cmk-fb-form input:focus,
.cmk-fb-form textarea:focus,
.cmk-fb-form select:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.18);
}

.cmk-fb-note {
	margin-top: 14px;
	padding: 10px 12px;
	background: #fff8e1;
	border: 1px solid #ffe1a8;
	border-radius: 5px;
	font-size: 12.5px;
	color: #5a4a1c;
	line-height: 1.5;
}

.cmk-fb-actions {
	margin-top: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.cmk-fb-back {
	background: transparent;
	border: 0;
	color: #2271b1;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	padding: 6px 4px;
}

.cmk-fb-back:hover {
	text-decoration: underline;
}

.cmk-fb-submit {
	background: #2271b1;
	color: #fff;
	border: 0;
	padding: 10px 20px;
	border-radius: 5px;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.cmk-fb-submit:hover {
	background: #135e96;
}

.cmk-fb-submit:disabled {
	background: #8aaecb;
	cursor: not-allowed;
}

.cmk-fb-error {
	margin-top: 12px;
	padding: 9px 12px;
	background: #fdecea;
	border: 1px solid #f5c2c0;
	border-radius: 5px;
	font-size: 13px;
	color: #8a1f1c;
}

.cmk-fb-success {
	padding: 26px 8px 8px 8px;
	text-align: center;
}

.cmk-fb-success__icon {
	font-size: 44px;
	color: #2e7d32;
	line-height: 1;
}

.cmk-fb-success__title {
	margin: 12px 0 6px 0;
	font-size: 17px;
	font-weight: 700;
	color: #111;
}

.cmk-fb-success__msg {
	font-size: 13.5px;
	color: #444;
	line-height: 1.5;
}

/* utility */
.cmk-fb-hidden {
	display: none !important;
}

/* ===========================================================
 * Order-received feedback shortcode: [cmk_order_feedback]
 * =========================================================== */
.cmk-ofb {
	width: 100%;
	box-sizing: border-box;
	margin: 20px 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	color: #1f2933;
}

.cmk-ofb * {
	box-sizing: border-box;
}

.cmk-ofb__inner {
	width: 100%;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid #dbe7f3;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(15, 49, 84, 0.08);
	padding: 18px;
}

.cmk-ofb__header {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	align-items: flex-start;
	padding-bottom: 12px;
	border-bottom: 1px solid #e7eef6;
}

.cmk-ofb__title {
	margin: 0;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 750;
	color: #102a43;
}

.cmk-ofb__intro {
	margin: 5px 0 0 0;
	font-size: 13.5px;
	line-height: 1.45;
	color: #52606d;
}

.cmk-ofb__badge {
	flex: 0 0 auto;
	background: #edf7ff;
	color: #135e96;
	border: 1px solid #c8e4fa;
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 700;
}

.cmk-ofb__section {
	margin-top: 12px;
	background: #fff;
	border: 1px solid #e1e8f0;
	border-radius: 10px;
	padding: 14px;
}

.cmk-ofb__section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.cmk-ofb__section-head h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 750;
	color: #102a43;
}

.cmk-ofb__section-head span {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #718096;
}

.cmk-ofb__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.cmk-ofb__check {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 8px 10px;
	border: 1px solid #e4ebf3;
	border-radius: 8px;
	background: #fbfdff;
	font-size: 13px;
	font-weight: 600;
	color: #334e68;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.cmk-ofb__check:hover,
.cmk-ofb__check:focus-within {
	border-color: #9fcbec;
	background: #f4faff;
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.08);
}

.cmk-ofb__check input,
.cmk-ofb__review-card input {
	margin: 0;
	accent-color: #2271b1;
}

.cmk-ofb__other {
	margin-top: 10px;
}

.cmk-ofb__other label,
.cmk-ofb__general-body label {
	display: block;
	font-size: 13px;
	font-weight: 650;
	color: #334e68;
}

.cmk-ofb__other input,
.cmk-ofb__general-body textarea {
	width: 100%;
	margin-top: 6px;
	border: 1px solid #cfd9e5;
	border-radius: 8px;
	padding: 9px 10px;
	font: inherit;
	font-size: 14px;
	background: #fff;
	color: #1f2933;
}

.cmk-ofb__other input:focus,
.cmk-ofb__general-body textarea:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.14);
}

.cmk-ofb__review-card {
	margin-top: 12px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 13px;
	border: 1px solid #c8e4fa;
	border-left: 4px solid #2271b1;
	border-radius: 9px;
	background: #f2f8fd;
	cursor: pointer;
}

.cmk-ofb__review-card strong {
	display: block;
	font-size: 13.5px;
	color: #102a43;
}

.cmk-ofb__review-card em {
	display: block;
	margin-top: 2px;
	font-style: normal;
	font-size: 12.5px;
	color: #52606d;
}

.cmk-ofb__section--general {
	padding: 0;
	overflow: hidden;
}

.cmk-ofb__toggle {
	width: 100%;
	border: 0;
	background: #fff;
	padding: 13px 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	text-align: left;
	cursor: pointer;
	font: inherit;
	color: #102a43;
}

.cmk-ofb__toggle strong {
	display: block;
	font-size: 15px;
	font-weight: 750;
}

.cmk-ofb__toggle small {
	display: block;
	margin-top: 2px;
	font-size: 12.5px;
	color: #64748b;
}

.cmk-ofb__toggle b {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #edf7ff;
	color: #2271b1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	line-height: 1;
}

.cmk-ofb__general-body {
	border-top: 1px solid #e7eef6;
	padding: 13px 14px 14px;
	background: #fbfdff;
}

.cmk-ofb__general-body textarea {
	min-height: 82px;
	resize: vertical;
}

.cmk-ofb__footer {
	margin-top: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.cmk-ofb__message {
	font-size: 13px;
	font-weight: 650;
	color: #52606d;
}

.cmk-ofb__message--error {
	color: #b42318;
}

.cmk-ofb__message--success {
	color: #1f7a3f;
}

.cmk-ofb__submit {
	flex: 0 0 auto;
	border: 0;
	border-radius: 8px;
	background: #2271b1;
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 750;
	padding: 10px 18px;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(34, 113, 177, 0.22);
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.cmk-ofb__submit:hover {
	background: #135e96;
	transform: translateY(-1px);
}

.cmk-ofb__submit:disabled {
	background: #8aaecb;
	cursor: not-allowed;
	transform: none;
}

.cmk-ofb--submitted .cmk-ofb__form {
	opacity: 0.72;
}

@media (max-width: 760px) {
	.cmk-ofb__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.cmk-ofb__inner {
		padding: 14px;
	}
	.cmk-ofb__header,
	.cmk-ofb__section-head,
	.cmk-ofb__footer {
		flex-direction: column;
		align-items: stretch;
	}
	.cmk-ofb__grid {
		grid-template-columns: 1fr;
	}
	.cmk-ofb__submit {
		width: 100%;
	}
}

/* ===========================================================
 * v1.2.1 visual refresh for order-received feedback
 * =========================================================== */
.cmk-ofb__inner {
	background: #ffffff;
	border: 1px solid #d4dbe4;
	box-shadow: 0 8px 24px rgba(16, 42, 67, 0.12);
	padding: 0;
	overflow: hidden;
}

.cmk-ofb__header {
	background: linear-gradient(135deg, #d0272f 0%, #a91d24 100%);
	color: #fff;
	padding: 15px 18px 13px;
	border-bottom: 0;
	align-items: center;
}

.cmk-ofb__header > div {
	width: 100%;
}

.cmk-ofb__title {
	color: #fff;
	font-size: 20px;
	letter-spacing: 0.01em;
	text-transform: none;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.cmk-ofb__intro {
	color: rgba(255, 255, 255, 0.9);
	margin-top: 3px;
	font-size: 13px;
}

.cmk-ofb__badge {
	display: none !important;
}

.cmk-ofb__form {
	padding: 14px 16px 16px;
	background: #f7f8fa;
}

.cmk-ofb__section {
	margin-top: 0;
	background: #fff;
	border-color: #cfd8e3;
	box-shadow: 0 1px 0 rgba(16, 42, 67, 0.03);
}

.cmk-ofb__section + .cmk-ofb__section {
	margin-top: 10px;
}

.cmk-ofb__section-head h3 {
	font-size: 15.5px;
	color: #182b3a;
}

.cmk-ofb__section-head span {
	color: #5e6c7a;
}

.cmk-ofb__check {
	background: #ffffff;
	border-color: #ccd7e2;
	color: #263b4f;
	box-shadow: none;
}

.cmk-ofb__check:hover,
.cmk-ofb__check:focus-within {
	border-color: #d0272f;
	background: #fff8f8;
	box-shadow: 0 2px 8px rgba(208, 39, 47, 0.08);
}

.cmk-ofb__check input,
.cmk-ofb__review-card input {
	accent-color: #d0272f;
}

.cmk-ofb__review-card {
	margin-top: 12px;
	padding: 11px 12px;
	border-color: #efc3c6;
	border-left-color: #d0272f;
	background: #fff6f6;
	align-items: center;
}

.cmk-ofb__review-card input {
	flex: 0 0 auto;
	margin-top: 0;
}

.cmk-ofb__review-card span {
	display: block;
	line-height: 1.25;
}

.cmk-ofb__review-card strong {
	font-size: 13.5px;
	color: #2d1d1f;
}

.cmk-ofb__review-card em {
	font-size: 12.25px;
	color: #6d4c4f;
}

.cmk-ofb__section--general {
	background: #fff;
}

.cmk-ofb__toggle:hover {
	background: #fff8f8;
}

.cmk-ofb__toggle b {
	background: #d0272f;
	color: #fff;
}

.cmk-ofb__footer {
	margin-top: 11px;
}

.cmk-ofb__submit {
	background: #d0272f;
	box-shadow: 0 3px 10px rgba(208, 39, 47, 0.22);
}

.cmk-ofb__submit:hover {
	background: #a91d24;
}

.cmk-ofb__message--success {
	color: #176b35;
}

/* ===========================================================
 * v1.2.2 compact/professional order-feedback refresh
 * =========================================================== */
.cmk-ofb__inner {
	border-radius: 3px !important;
	box-shadow: 0 2px 10px rgba(16, 42, 67, 0.10) !important;
	border-color: #c8d0da !important;
}

.cmk-ofb__header {
	padding: 8px 14px 7px !important;
	min-height: 0 !important;
	background: #d0272f !important;
}

.cmk-ofb__title {
	font-size: 18px !important;
	line-height: 1.05 !important;
	margin: 0 !important;
	font-weight: 800 !important;
}

.cmk-ofb__intro {
	margin: 1px 0 0 !important;
	font-size: 12.5px !important;
	line-height: 1.15 !important;
}

.cmk-ofb__form {
	padding: 12px 14px 13px !important;
	background: #f4f5f7 !important;
}

.cmk-ofb__section {
	border-radius: 3px !important;
	padding: 11px 12px !important;
}

.cmk-ofb__check {
	border-radius: 2px !important;
	min-height: 34px !important;
	padding: 7px 9px !important;
}

.cmk-ofb__review-card {
	border-radius: 2px !important;
	padding: 9px 10px !important;
	gap: 7px !important;
	align-items: flex-start !important;
	margin-left: 0 !important;
}

.cmk-ofb__review-card input {
	margin: 1px 0 0 0 !important;
	padding: 0 !important;
}

.cmk-ofb__review-card span {
	margin: 0 !important;
	padding: 0 !important;
}

.cmk-ofb__section--general {
	padding: 0 !important;
}

.cmk-ofb__general-open {
	width: 100%;
	border: 0;
	background: #fff;
	padding: 10px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	text-align: left;
	cursor: pointer;
	font: inherit;
	color: #182b3a;
}

.cmk-ofb__general-open:hover,
.cmk-ofb__general-open:focus {
	background: #fff7f7;
	outline: 2px solid rgba(208, 39, 47, 0.18);
	outline-offset: -2px;
}

.cmk-ofb__general-open strong {
	display: block;
	font-size: 14px;
	font-weight: 800;
}

.cmk-ofb__general-open small {
	display: block;
	font-size: 12px;
	line-height: 1.25;
	color: #5d6875;
}

.cmk-ofb__general-open b {
	background: #d0272f;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	padding: 7px 10px;
	border-radius: 2px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.cmk-ofb__general-preview {
	border-top: 1px solid #e0e5eb;
	padding: 8px 12px;
	background: #fffaf0;
	font-size: 12.5px;
	color: #57420f;
}

.cmk-ofb__submit {
	border-radius: 2px !important;
	box-shadow: none !important;
	padding: 9px 16px !important;
}

.cmk-ofb-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(0, 0, 0, 0.52);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
}

.cmk-ofb-modal__box {
	width: min(560px, 100%);
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cmk-ofb-modal__head {
	background: #d0272f;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
}

.cmk-ofb-modal__head h3 {
	margin: 0;
	font-size: 17px;
	line-height: 1.1;
	color: #fff;
}

.cmk-ofb-modal__x {
	border: 0;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	width: 26px;
	height: 26px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.cmk-ofb-modal__body {
	padding: 14px;
}

.cmk-ofb-modal__body label {
	display: block;
	font-size: 13.5px;
	font-weight: 650;
	color: #263b4f;
	margin-bottom: 7px;
}

.cmk-ofb-modal__text {
	width: 100%;
	min-height: 120px;
	border: 1px solid #c7d0dc;
	border-radius: 2px;
	padding: 10px;
	font: inherit;
	font-size: 14px;
	resize: vertical;
}

.cmk-ofb-modal__text:focus {
	outline: none;
	border-color: #d0272f;
	box-shadow: 0 0 0 3px rgba(208, 39, 47, 0.14);
}

.cmk-ofb-modal__foot {
	padding: 10px 14px 14px;
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	background: #f5f6f8;
}

.cmk-ofb-modal__cancel,
.cmk-ofb-modal__save {
	border-radius: 2px;
	padding: 8px 13px;
	font: inherit;
	font-size: 13px;
	font-weight: 750;
	cursor: pointer;
}

.cmk-ofb-modal__cancel {
	border: 1px solid #c7d0dc;
	background: #fff;
	color: #263b4f;
}

.cmk-ofb-modal__save {
	border: 1px solid #d0272f;
	background: #d0272f;
	color: #fff;
}

/* ===========================================================
 * v1.2.3 checkout feedback refinements
 * =========================================================== */
.cmk-ofb__header {
	padding-top: 7px !important;
	padding-bottom: 6px !important;
}

.cmk-ofb__title {
	margin: 0 0 0 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
}

.cmk-ofb__intro {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.05 !important;
}

.cmk-ofb__title + .cmk-ofb__intro {
	margin-top: 0 !important;
}

.cmk-ofb__review-card {
	display: grid !important;
	grid-template-columns: 18px minmax(0, 1fr) !important;
	column-gap: 6px !important;
	align-items: start !important;
	padding-left: 9px !important;
}

.cmk-ofb__review-card input {
	grid-column: 1 !important;
	justify-self: start !important;
	align-self: start !important;
	margin: 2px 0 0 0 !important;
	width: 14px !important;
	height: 14px !important;
}

.cmk-ofb__review-card span {
	grid-column: 2 !important;
	margin: 0 !important;
	padding: 0 !important;
	min-width: 0 !important;
}

.cmk-ofb__section--source {
	position: relative;
}

.cmk-ofb--source-saved .cmk-ofb__section--source > *:not(.cmk-ofb__complete-layer) {
	opacity: 0.32;
	filter: grayscale(0.25);
}

.cmk-ofb__complete-layer {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.62);
	pointer-events: none;
	z-index: 4;
}

.cmk-ofb__complete-box {
	background: #17823b;
	color: #fff;
	border-radius: 3px;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 6px 18px rgba(23, 130, 59, 0.25);
	font-weight: 800;
}

.cmk-ofb__complete-box span {
	font-size: 24px;
	line-height: 1;
}

.cmk-ofb--general-saved .cmk-ofb__section--general {
	background: linear-gradient(90deg, rgba(23,130,59,0.08), #fff);
	border-color: rgba(23,130,59,0.35);
}

.cmk-ofb--general-saved .cmk-ofb__general-open b {
	background: #17823b;
}

@media (max-width: 520px) {
	.cmk-ofb__title {
		font-size: clamp(15px, 4.25vw, 18px) !important;
		white-space: nowrap !important;
		letter-spacing: -0.02em !important;
	}
	.cmk-ofb__intro {
		font-size: 11.5px !important;
	}
	.cmk-ofb__header {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
}

/* ===========================================================
 * v1.2.4 review card alignment fix
 * =========================================================== */
.cmk-ofb__review-card {
	display: grid !important;
	grid-template-columns: 16px 1fr !important;
	align-items: start !important;
	justify-items: stretch !important;
	text-align: left !important;
	column-gap: 8px !important;
}

.cmk-ofb__review-card input[type="checkbox"] {
	grid-column: 1 !important;
	grid-row: 1 !important;
	justify-self: start !important;
	align-self: start !important;
	margin: 2px 0 0 0 !important;
}

.cmk-ofb__review-card > span {
	grid-column: 2 !important;
	grid-row: 1 !important;
	display: block !important;
	text-align: left !important;
	justify-self: stretch !important;
	align-self: start !important;
	margin: 0 !important;
	padding: 0 !important;
}

.cmk-ofb__review-card strong,
.cmk-ofb__review-card em {
	text-align: left !important;
	margin-left: 0 !important;
	padding-left: 0 !important;
}

/* ===========================================================
 * v1.2.5 readability, modal header centering, and mobile spacing
 * =========================================================== */
.cmk-ofb__section-head {
	margin: 0 0 6px 0 !important;
	padding: 0 !important;
}

.cmk-ofb__section-head h3 {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.05 !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	letter-spacing: 0.01em !important;
	color: #20252c !important;
	text-transform: none !important;
}

.cmk-ofb__section-head span {
	display: block !important;
	margin: 1px 0 0 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
	font-size: 10.5px !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em !important;
	color: #5c6672 !important;
	text-transform: uppercase !important;
}

.cmk-ofb__section--source {
	padding-top: 10px !important;
}

.cmk-ofb__review-card strong,
.cmk-ofb__general-open strong {
	font-size: 13.5px !important;
	line-height: 1.18 !important;
	font-weight: 800 !important;
	color: #242a31 !important;
}

.cmk-ofb__review-card em,
.cmk-ofb__general-open small,
.cmk-ofb__general-preview,
.cmk-ofb-modal__body label {
	font-size: 12.5px !important;
	line-height: 1.32 !important;
	font-weight: 600 !important;
	color: #4c5561 !important;
}

.cmk-ofb__check span,
.cmk-ofb__other label {
	font-size: 13px !important;
	line-height: 1.2 !important;
	font-weight: 650 !important;
	color: #313943 !important;
}

.cmk-ofb-modal__head {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	min-height: 42px !important;
	padding: 0 13px !important;
	line-height: 1 !important;
}

.cmk-ofb-modal__head h3,
#cmk-ofb-modal-title {
	display: flex !important;
	align-items: center !important;
	align-self: stretch !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	color: #fff !important;
}

.cmk-ofb-modal__x {
	align-self: center !important;
	line-height: 1 !important;
}

@media (max-width: 520px) {
	.cmk-ofb__form {
		padding-top: 0 !important;
	}

	.cmk-ofb__section--source {
		margin-top: 0 !important;
		padding-top: 5px !important;
	}

	.cmk-ofb__section-head {
		margin-top: 0 !important;
		margin-bottom: 4px !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.cmk-ofb__section-head h3 {
		margin-bottom: 0 !important;
		line-height: 1 !important;
		font-size: 15px !important;
	}

	.cmk-ofb__section-head span {
		margin-top: 0 !important;
		line-height: 1 !important;
		font-size: 10px !important;
	}

	.cmk-ofb__grid {
		margin-top: 0 !important;
		padding-top: 0 !important;
		row-gap: 5px !important;
	}

	.cmk-ofb__check span,
	.cmk-ofb__review-card strong,
	.cmk-ofb__general-open strong {
		font-size: 13px !important;
	}

	.cmk-ofb__review-card em,
	.cmk-ofb__general-open small,
	.cmk-ofb-modal__body label {
		font-size: 12px !important;
	}
}

/* ===========================================================
 * v1.2.6 aggressive modal title vertical centering
 * =========================================================== */
.cmk-ofb-modal__head {
	position: relative !important;
	display: block !important;
	height: 46px !important;
	min-height: 46px !important;
	max-height: 46px !important;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 46px !important;
	overflow: hidden !important;
}

.cmk-ofb-modal__head h3,
.cmk-ofb-modal__head #cmk-ofb-modal-title,
#cmk-ofb-modal-title {
	position: absolute !important;
	left: 14px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	display: block !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	color: #fff !important;
	vertical-align: middle !important;
}

.cmk-ofb-modal__x {
	position: absolute !important;
	right: 10px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 30px !important;
	height: 30px !important;
	min-height: 30px !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
}

/* ===========================================================
 * v1.2.7 exact checkout feedback polish overrides
 * =========================================================== */
.cmk-ofb-modal__head h3,
.cmk-ofb-modal__head #cmk-ofb-modal-title,
#cmk-ofb-modal-title {
	position: static !important;
	transform: none !important;
	display: block !important;
	margin: 0 !important;
	margin-top: 15px !important;
	margin-left: 14px !important;
	padding: 0 !important;
	font-size: 20px !important;
	line-height: 1.1 !important;
	color: #fff !important;
	font-weight: 800 !important;
}

.cmk-ofb-modal__body label {
	display: block !important;
	font-size: 13.5px !important;
	font-weight: 650 !important;
	color: #000000d1 !important;
	margin-bottom: 7px !important;
	line-height: 1.4 !important;
}

@media (min-width: 521px) {
	.cmk-ofb__footer {
		justify-content: center !important;
		text-align: center !important;
	}

	.cmk-ofb__submit {
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.cmk-ofb__section-head span {
		font-size: 12px !important;
		font-weight: 700 !important;
		text-transform: uppercase !important;
		letter-spacing: 0.02em !important;
		color: #4c5159 !important;
		padding-top: 5px !important;
	}
}

@media (max-width: 520px) {
	.cmk-ofb__section-head span {
		font-size: 12px !important;
		font-weight: 700 !important;
		text-transform: uppercase !important;
		letter-spacing: 0.02em !important;
		color: #4c5159 !important;
		margin-top: -15px !important;
	}

	.cmk-ofb__section {
		border-radius: 3px !important;
		padding: 11px 12px !important;
		margin-top: -15px !important;
	}
}

/* ===========================================================
 * v1.2.8 exact mobile section heading spacing + source update
 * =========================================================== */
@media (max-width: 520px) {
	.cmk-ofb__section-head h3 {
		margin-bottom: 5px !important;
		line-height: 1 !important;
		font-size: 15px !important;
	}

	.cmk-ofb__section-head span {
		font-size: 12px !important;
		font-weight: 700 !important;
		text-transform: uppercase !important;
		letter-spacing: 0.02em !important;
		color: #4c5159 !important;
		margin-top: -15px !important;
		margin-bottom: 5px !important;
	}
}
