@font-face{
	font-family: "Roboto";
	src: url("/fonts/roboto-regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Roboto";
	src: url("/fonts/roboto-medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Roboto";
	src: url("/fonts/roboto-bold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
.title {
	text-align:center;
	margin: 18px 0 10px;
	font-size: clamp(44px, 6vw, 84px);
	letter-spacing:-0.02em;
	font-weight:900;
}
.divider { 
	height:1px; 
	background: var(--stroke); 
	margin: 14px 0; 
}
.row {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	min-width:0;
}
.stack { 
	display:flex; 
	flex-direction:column; 
	gap:10px; 
	min-width:0; 
}
.label {
	font-weight:900;
	font-size: 24px;
	letter-spacing:-0.02em;
	display:flex;
	align-items:center;
	gap:10px;
}
.muted { 
	color: var(--muted); 
}
.small { 
	font-size: 14px; 
	margin:0px 4px;
}
.btn:hover { 
	box-shadow: 0 8px 18px rgba(16,32,39,.08); 
}
.btn:active { 
	transform: translateY(1px); 
}
.btn.primary .ico path,
.btn.primary .ico circle,
.btn.primary .ico line,
.btn.primary .ico polyline {
	stroke:#fff !important;
}
.input:focus { 
	border-color:#cfc7bb; 
}
.tog-0-5 { background-color: #fdecea; color: #9f3a38; }
.tog-1-0 { background-color: #fff2e0; color: #8a5a1f; }
.tog-1-5 { background-color: #fff6cc; color: #7a5b00; }
.tog-2-0 { background-color: #eaf4ee; color: #1e6b3a; }
.tog-2-5 { background-color: #e6f4f1; color: #1b6b63; }
.tog-3-0 { background-color: #e8f0fb; color: #2b5c9a; }
.tog-3-5 { background-color: #eef1f6; color: #3a4a5a; }
.roomLayout{
	display:grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items:start;
	margin-top: 12px;
}
.rangeRow { 
	display:flex; 
	align-items:center; 
	justify-content:space-between; 
	gap:12px; 
}
input[type="range"] { 
	width:100%; 
}
.tempLabel {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	width:100%;
	padding:10px 14px;
	border-radius:16px;
	background:#2674CA;
	border:1px solid #a3d4fd;
	font-weight:600;
	font-size:15px;
	text-align:center;
	color:#ffffff;
}
.tempLabel .ico path,
.tempLabel .ico circle,
.tempLabel .ico line,
.tempLabel .ico polyline {
	stroke:#fff !important;
}
.note {
	font-size: 20px;
	letter-spacing:-0.01em;
	margin: 18px 0 0;
	color:#20323a;
	line-height:1.25;
}
.affiliateLine {
	margin-top: 20px;
	margin-bottom:18px;
	padding-top: 20px;
	border-top: 1px solid var(--stroke);
	line-height:1.5;
	color: #20323a;
	font-size: 16px;
}
a {
	font-size: 16px;
	font-weight: 900;
	color: var(--text);
	text-decoration:none;
	border-bottom: 1px solid rgba(16,32,39,.22);
}
.affiliateLine a {
	font-size: 16px;
	font-weight: 900;
	color: var(--text);
	text-decoration:none;
	border-bottom: 1px solid rgba(16,32,39,.22);
}
.affiliateLine a:hover { 
	border-bottom-color: rgba(16,32,39,.45); 
}
.affiliateDisclosure {
	margin-top:8px;
	font-size: 13px;
	color: var(--muted);
}
.footer {
	display: flex;
	color: var(--muted);
	font-size: 13px;
	line-height:1.35;
	align-items: center;
	justify-content: center;
}
.contentBlockTransparent {
	margin-top: 18px;
	padding: 8px 2px 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	border-radius: 0;
}
.contentBlockTransparent h2 {
	margin: 18px 0 8px;
	font-size: 18px;
	letter-spacing:-0.01em;
	display:flex;
	align-items:center;
	gap:10px;
}
.contentBlockTransparent p {
	margin:0 0 24px;
	color:#20323a;
	line-height:1.45;
}
.faqItem {
	border:1px solid var(--stroke);
	border-radius: 18px;
	background: rgba(255,255,255,.7);
	backdrop-filter: blur(4px);
	overflow:hidden;
	margin-top: 10px;
}
.faqQ {
	width:100%;
	text-align:left;
	padding: 14px 14px;
	border:0;
	cursor:pointer;
	font-weight:600;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	font-size: 16px;
	color:#2674CA;
}
.faqA {
	padding: 0 14px 14px;
	color:#20323a;
	line-height:1.45;
	display:none;
}
.faqItem.open .faqA { 
	display:block; 
}
.chev { 
	transition: transform .15s ease; 
}
.faqItem.open .chev { 
	transform: rotate(180deg); 
}
.ico {
	width:22px;height:22px;
	display:inline-block;
	vertical-align:middle;
	flex:0 0 auto;
}
.ico path, .ico circle, .ico line, .ico polyline { 
	stroke: #20323a; 
}
.inlineLink {
	font-weight:900;
	color:#102027;
	text-decoration:none;
	border-bottom:1px solid rgba(16,32,39,.22);
}
.inlineLink:hover { 
	border-bottom-color: rgba(16,32,39,.45); 
}
.sr-only {
	position:absolute;
	width:1px;
	height:1px;
	padding:0;
	margin:-1px;
	overflow:hidden;
	clip:rect(0,0,0,0);
	white-space:nowrap;
	border:0;
}
.bottomfooter {
  margin: 32px 0 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.35;
}

.bottomfooter a {
  color: inherit;
  font-size: 13px;
  text-decoration: underline;
}
