.fes-steps-widget *{
	box-sizing:border-box;
}

.fes-steps{
	display:flex;
	flex-direction:column;
	min-width:0;
}

.fes-step{
	position:relative;
	transition:margin .35s ease;
	min-width:0;
}

.fes-card{
	transition:background-color .35s ease;
	overflow:hidden;
	min-width:0;
}

.fes-toggle{
	all:unset;
	display:block;
	box-sizing:border-box;
	width:100%;
	max-width:100%;
	min-width:0;
	padding:22px 40px 22px 116px;
	cursor:pointer;
	min-height:64px;
	background:transparent !important;
	border:0 !important;
	box-shadow:none !important;
	border-radius:0 !important;
	font:inherit;
	text-align:left !important;
	white-space:normal;
}

.fes-toggle:focus-visible{
	outline:2px solid rgba(255,255,255,.65);
	outline-offset:-2px;
}

.fes-open .fes-toggle{
	padding-top:34px;
	padding-bottom:6px;
}

.fes-badge{
	position:absolute;
	top:50%;
	left:24px;
	transform:translateY(-50%);
	width:64px;
	height:64px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-weight:700;
	font-size:20px;
	z-index:2;
	transition:top .35s ease, background-color .35s ease, color .35s ease;
}

.fes-open .fes-badge{
	top:0;
}

.fes-title{
	display:block;
	transition:font-size .35s ease;
	white-space:normal;
	overflow-wrap:break-word;
	word-break:break-word;
	hyphens:auto;
}

.fes-body{
	display:grid;
	grid-template-rows:0fr;
	opacity:0;
	transition:grid-template-rows .35s ease, opacity .3s ease;
}

.fes-open .fes-body{
	grid-template-rows:1fr;
	opacity:1;
}

.fes-body-inner{
	overflow:hidden;
}

.fes-desc{
	margin:0;
	padding:0 40px 36px 116px;
	max-width:520px;
}

@media(max-width:767px){
	.fes-toggle{
		padding-right:24px;
	}
	.fes-desc{
		padding-right:24px;
	}
}
