.tmn-field{
	margin:18px 0 8px;
	padding:0;
	box-sizing:border-box;
}
.tmn-field.tmn-after-images{margin-top:14px}
.tmn-choice{
	display:flex;
	align-items:flex-start;
	gap:12px;
	margin:0;
	padding:15px 16px;
	border:1px solid var(--line,#d9dde5);
	border-radius:16px;
	background:var(--surface,#f7f7f5);
	color:var(--text,#171717);
	cursor:pointer;
	transition:border-color .16s ease,background .16s ease,box-shadow .16s ease;
	box-sizing:border-box;
}
.tmn-choice:hover{
	border-color:#b9c4d6;
}
.tmn-field.is-checked .tmn-choice{
	border-color:#93b4ff;
	background:#f5f8ff;
	box-shadow:0 0 0 3px rgba(37,99,235,.07);
}
.tmn-choice input[type="checkbox"]{
	position:absolute;
	opacity:0;
	pointer-events:none;
	width:1px;
	height:1px;
}
.tmn-choice-ui{
	flex:0 0 42px;
	width:42px;
	height:42px;
	border:1px solid var(--line,#d9dde5);
	border-radius:12px;
	background:var(--bg,#fff);
	display:grid;
	place-items:center;
	position:relative;
	box-sizing:border-box;
}
.tmn-choice-ui::after{
	content:"";
	position:absolute;
	right:-3px;
	bottom:-3px;
	width:16px;
	height:16px;
	border:2px solid #fff;
	border-radius:999px;
	background:#cbd5e1;
	box-shadow:0 1px 4px rgba(15,23,42,.16);
	transition:background .16s ease,transform .16s ease;
}
.tmn-field.is-checked .tmn-choice-ui::after{
	background:#2563eb;
	transform:scale(1.04);
}
.tmn-bell{font-size:20px;line-height:1}
.tmn-choice-copy{display:block;min-width:0;padding-top:1px}
.tmn-choice-copy strong{
	display:block;
	font-size:14px;
	line-height:1.35;
	font-weight:750;
	color:var(--text,#171717);
}
.tmn-choice-copy small{
	display:block;
	margin-top:4px;
	font-size:12px;
	line-height:1.5;
	font-weight:500;
	color:var(--muted,#667085);
}
.tmn-choice:focus-within{
	outline:3px solid rgba(37,99,235,.22);
	outline-offset:2px;
}
.tmn-public-notice{
	margin-top:12px;
	padding:10px 12px;
	border:1px solid #bbf7d0;
	border-radius:10px;
	background:#f0fdf4;
	color:#166534;
	font-size:12px;
	font-weight:700;
}
@media(max-width:520px){
	.tmn-choice{padding:13px;border-radius:14px;gap:10px}
	.tmn-choice-ui{flex-basis:38px;width:38px;height:38px;border-radius:11px}
	.tmn-choice-copy strong{font-size:13px}
	.tmn-choice-copy small{font-size:11.5px}
}
@media(prefers-reduced-motion:reduce){
	.tmn-choice,.tmn-choice-ui::after{transition:none}
}
