.step-sequence {
	--circle-color: var(--ast-global-color-0);
	--bar-color: #002c34; /* used elsewhere in the theme */
	--selected-color: rgb(225, 225, 225); /* gray */
	--step-count: var(--number-of-steps,3);
	--number-size:1.2rem;
	--number-color: var(--bar-color);

	grid-area: PROGRESS; /* for page-layout purposes */

    display: flex;
	justify-content: center;
	gap: 1rem;
	position:relative;
	isolation: isolate;
	width: 100%;
	padding-inline: 1rem;
	margin-inline: auto;
}

.step-sequence::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: var(--bar-color);
	top: var(--number-size);
	z-index: -1;
}

.step-item {
	width: calc(100% / (var(--step-count) + 1));
	display: flex;
	gap: 1rem;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.step-number {
	--size: calc( 2 * var(--number-size));
	font-size: var(--number-size);
	color: var(--number-color);
	font-weight: bold;
	width: var(--size);
	height: var(--size);
	outline: 2px solid var(--circle-color);
	background-color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-current .step-number {
	background-color: var(--selected-color);
}

/* Forms */
/* Eligibility */

article.page .wp-block-cwp-block-gutenberg-forms .cwp-form .cwp-field.cwp-yes-no .cwp-field-set .cwp-switch .cwp-slider::before {
	background-color: transparent;
	 content: 'no';
}
.wp-block-cwp-block-gutenberg-forms .cwp-form .cwp-field.cwp-yes-no .cwp-field-set .cwp-switch input:checked+.cwp-slider:before {
 content: 'yes';
}

.qq-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.qq-yesno {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: row-reverse;
	gap: 1rem;
	justify-content: flex-end;
	align-items: center;
}
.qq-yesno label {
	width: 100%;
}
.qq-yesno input {
	width: 4rem;
	height: 2rem;
}
