.bloom-timed-accordion {
	--bta-ink: #06251a;
	--bta-muted: #5f5f5f;
	--bta-rule: #cfcfcf;
	--bta-progress: #202020;
	--bta-dot: #202020;
	--bta-duration: 5000ms;
	--bta-icon-color: #111;
	--bta-icon-size: 44px;
	--bta-icon-column: 68px;
	--bta-icon-stroke: 1.7;
	--bta-line-width: 2px;
	--bta-dot-size: 8px;
	--bta-title-description-gap: 24px;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	color: var(--bta-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bloom-timed-accordion,
.bloom-timed-accordion * {
	font-style: normal !important;
}

.bloom-timed-accordion span {
	color: inherit !important;
	font-family: inherit !important;
	font-style: normal !important;
}

.bloom-timed-accordion .bta-step__icon,
.bloom-timed-accordion .bta-step__icon span,
.bloom-timed-accordion .bta-step__icon svg {
	color: var(--bta-icon-color) !important;
	font-style: normal !important;
}

.bloom-timed-accordion .bta-step__title,
.bloom-timed-accordion .bta-step__copy {
	font-style: normal !important;
}

.bta-step {
	position: relative;
	margin-top: 0 !important;
	border-bottom: var(--bta-line-width) solid var(--bta-rule);
}

.bta-step:first-child {
	border-top: var(--bta-line-width) solid var(--bta-rule);
}

.bta-step__trigger {
	width: 100%;
	height: 170px;
	padding: 34px 0;
	display: grid;
	grid-template-columns: var(--bta-icon-column) 1fr;
	align-items: start;
	gap: 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
	font: inherit;
	transition: padding 420ms ease;
}

.bta-step__trigger:focus-visible {
	outline: 2px solid var(--bta-progress);
	outline-offset: 4px;
}

.bta-step__trigger::before,
.bta-step__trigger::after {
	content: none !important;
	display: none !important;
}

.bta-step__icon {
	width: var(--bta-icon-size);
	min-height: var(--bta-icon-size);
	display: grid;
	place-items: center;
	color: var(--bta-icon-color);
}

.bta-step__icon svg,
.bta-step__icon i {
	width: var(--bta-icon-size);
	height: var(--bta-icon-size);
	font-size: var(--bta-icon-size);
	line-height: 1;
	color: currentColor;
}

.bta-step__icon svg {
	fill: currentColor;
}

.bta-step__icon .bta-step__icon-svg {
	stroke: currentColor;
	stroke-width: var(--bta-icon-stroke);
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bta-step__content {
	min-height: 56px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}

.bta-step:not(.is-active) .bta-step__trigger {
	align-items: center;
}

.bta-step:not(.is-active) .bta-step__content {
	justify-content: center;
}

.bta-step__title {
	margin: 0;
	color: var(--bta-ink);
	font-size: clamp(30px, 4.2vw, 41px);
	line-height: 1.05;
	letter-spacing: 0;
	font-weight: 650;
	text-align: left;
	transition: transform 420ms ease;
}

.bta-step__panel {
	width: 100%;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateY(-8px);
	transition: max-height 520ms ease, opacity 320ms ease, margin-top 520ms ease, transform 520ms ease;
}

.bta-step.is-active .bta-step__panel {
	max-height: 120px;
	opacity: 1;
	margin-top: var(--bta-title-description-gap);
	transform: translateY(0);
}

.bta-step__copy {
	margin: 0;
	color: var(--bta-muted);
	font-size: clamp(24px, 3vw, 31px);
	line-height: 1.2;
	font-weight: 300;
	letter-spacing: 0;
}

.bta-step__progress {
	position: absolute;
	top: calc(var(--bta-line-width) * -1);
	left: 0;
	display: none;
	width: 100%;
	height: var(--bta-line-width);
	background: var(--bta-rule);
	z-index: 1;
}

.bta-step.is-active .bta-step__progress {
	display: block;
}

.bta-step__progress::before,
.bta-step__progress::after {
	content: "";
	position: absolute;
	top: 0;
	height: var(--bta-line-width);
	background: var(--bta-progress);
}

.bta-step__progress::before {
	left: 0;
	width: 0;
}

.bta-step__progress::after {
	width: var(--bta-dot-size);
	height: var(--bta-dot-size);
	top: calc((var(--bta-dot-size) - var(--bta-line-width)) / -2);
	left: 0;
	border-radius: 999px;
	background: var(--bta-dot);
	transform: translateX(-50%);
	opacity: 0;
}

.bta-step.is-active .bta-step__progress::before {
	animation: bta-fill var(--bta-duration) linear forwards;
}

.bta-step.is-active .bta-step__progress::after {
	animation: bta-dot var(--bta-duration) linear forwards;
	opacity: 1;
}

.bta-step.is-paused .bta-step__progress::before,
.bta-step.is-paused .bta-step__progress::after {
	animation-play-state: paused;
}

@keyframes bta-fill {
	to {
		width: 100%;
	}
}

@keyframes bta-dot {
	to {
		left: 100%;
	}
}

@media (max-width: 640px) {
	.bloom-timed-accordion {
		--bta-icon-column: 54px;
		--bta-icon-size: 34px;
		--bta-title-description-gap: 16px;
	}

	.bta-step__trigger {
		height: 150px;
		padding: 26px 0;
	}

	.bta-step.is-active .bta-step__panel {
		margin-top: var(--bta-title-description-gap);
	}
}

@media (prefers-reduced-motion: reduce) {
	.bta-step__panel {
		transition: none;
	}

	.bta-step.is-active .bta-step__progress::before,
	.bta-step.is-active .bta-step__progress::after {
		animation: none;
	}
}
