
.cl-widget {
	font-family: Arial, Helvetica, sans-serif !important;
}

/* Progress bar */
.cl-progress-track {
	height: 5px;
	border-radius: 9999px;
	background: rgba(0, 154, 196, .11);
	overflow: hidden;
	margin-bottom: 30px;
}

.cl-progress-bar {
	height: 100%;
	background: #009ac4;
	border-radius: 9999px;
	transition: width 320ms cubic-bezier(.22, 1, .36, 1);
	width: 0%;
}

/* Counter */
.cl-counter {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #009ac4;
	margin-bottom: 12px;
	display: block;
}

/* Question */
.cl-question {
	font-weight: 800;
	font-size: clamp(20px, 2.2vw, 26px);
	line-height: 1.25;
	color: #009ac4;
	margin: 0 0 24px;
	min-height: 64px;
}

/* Options */
.cl-options {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.cl-opt-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	text-align: left;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(127, 208, 229, .82);
	color: #009ac4;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	padding: 15px 20px;
	border-radius: 12px;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease;
}

.cl-opt-btn:hover, .cl-opt-btn.selected {
	background: rgba(0, 154, 196, .16);
	border-color: #009ac4;
	color: #009ac4;
}

.cl-opt-check {
	flex: none;
	display: none;
}

.cl-opt-btn.selected .cl-opt-check {
	display: block;
}

/* Back button */
.cl-back-btn {
	margin-top: 22px;
	background: none;
	border: none;
	color: #009ac4;
	font-family: inherit;
	font-size: 14.5px;
	font-weight: 600;
	cursor: pointer;
	display: none;
	padding: 15px 28px;
	border-radius: 100px;
}

.cl-back-btn:hover {
	background-color: #009ac4;
	color: white;
}

/* Result view */
.cl-result-icon {
	width: 52px;
	height: 52px;
	border-radius: 9999px;
	background: rgba(0, 154, 196, .2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}

.cl-result h3 {
	font-weight: 600;
	font-size: clamp(22px, 2.4vw, 28px);
	line-height: 1.2;
	color: #009ac4;
	margin: 0 0 16px;
}

.cl-result p {
	font-size: 16.5px;
	line-height: 1.6;
	color: #040404;
	margin: 0 0 22px;
}

.cl-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.cl-chip {
	font-size: 13px;
	color: #009ac4;
	background: rgba(127, 208, 229, .12);
	border-radius: 9999px;
	padding: 7px 14px;
}

.cl-chip span {
	opacity: .7;
}

.cl-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: #009ac4;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 15px 28px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background 180ms ease;
}

.cl-cta-btn:hover {
	background: #009ac4;
	color: white;
}

.cl-restart-btn {
	display: block;
	margin-top: 18px;
	background: none;
	border: none;
	color: #009ac4;
	font-family: inherit;
	font-size: 14.5px;
	font-weight: 600;
	cursor: pointer;
	padding: 15px 28px;
	border-radius: 100px;
}

.cl-restart-btn:hover {
	background-color: #009ac4;
	color: white;
}
