
.summary__label {
	color: #243A5B;
	margin-bottom: 2rem;
	width: 100%;
}

.summary__label,
.summary__title {
	font-size: 18px;
	font-weight: 600;
	opacity: 1;
	padding-top: 20px;
	position: relative;
	text-transform: uppercase;
	transition: opacity .5s ease;
	z-index: 1;
}

.blog-post-progress {
	--progress-value: 0%;
	--offset-value: 0%;
	background-color: #edf0fd;
	height: 5px;
	margin-bottom: 0;
	position: relative;
	transition: background-position .2s ease;
	width: 100%;
	z-index: 3;
}



.summary__list {
	background-color: #fff;
	counter-reset: summary-counter;
	display: flex;
	margin-bottom: 0;
	opacity: 1;
	padding-bottom: 20px;
	padding-top: 20px;
	position: relative;
	transition: transform .5s ease,opacity .5s ease,visibility .5s ease,max-height .5s ease,padding .5s ease;
	visibility: visible;
}

	.summary__list {
		box-shadow: 0 2px 8px 0 transparent;
		flex-direction: column;
		left: 50%;
		margin-bottom: 0;
		max-height: 0;
		overflow-y: hidden;
		padding: 0 20px;
		position: absolute;
		transform: translateX(-50vw);
		transition: overflow-y 0s linear .2s,max-height .2s ease,box-shadow .2s ease;
		width: 100vw;
		z-index: 2;
	}

.summary__input:checked ~ .summary__list {
	box-shadow: 0 2px 8px 0 rgba(0,0,0,.04);
	max-height: 100vh;
	overflow-y: auto;
	transition: overflow-y 0s linear .2s,max-height .5s ease,box-shadow .2s ease;
}

.summary__current-active {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	border: 0;
	border-radius: 0;
	color: #04ab9e;
	display: block;
	font-size: 14px;
	font-weight: var(--button_font_weight);
	line-height: 1.5;
	opacity: 1;
	padding-bottom: 20px;
	padding-top: 15px;
	transition: opacity .5s ease,visibility .5s ease,transform .5s ease;
	visibility: visible;
	width: 100%;
}

.summary__current-active::after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 100vw;
	height: 100%;
	transform: translateX(-50vw);
	background-color: #FFF;
	z-index: -1;
}

.summary--attached.scrolled--down .summary__current-active {
	opacity: 0;
	visibility: hidden;
}

.summary::after {
	background: #fff;
	content: "";
	height: calc(67px + 2px);
	left: 50%;
	position: absolute;
	top: -1px;
	transform: translateX(-50vw);
	width: 100vw;
	z-index: -1;
}

.summary__item:first-of-type {
	padding-top: 1.5rem;
}

.summary__item:not(:first-of-type) {
	padding-top: 2rem;
}

.summary__item:last-of-type {
	padding-bottom: 2rem;
}

.summary__item {
	counter-increment: summary-counter;
	flex: 1 0 0;
}

.summary__button {
	font-weight: 600;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	color: #8c939b;
	padding: 0;
	text-align: left;
	width: 100%;
	font-size: 14px;
}

.summary__button::before {
	background: unset;
	border: 0;
	border-radius: 0;
	content: counter(summary-counter) ". ";
	height: auto;
	left: auto;
	opacity: 1;
	position: relative;
	top: auto;
	transition: unset;
	width: auto;
	z-index: unset;
}

.blog-post-progress__cursor {
	background-color: #04ab9e;
	height: 100%;
	left: var(--offset-value);
	position: absolute;
	top: 0;
	transition: left .5s ease;
	width: var(--progress-value);
}