/* ACTS Process Timeline */
.cew-pt{
	width:100%;
	max-width:100%;
	margin:0;
	padding:0;
	background:#fff;
	font-family:"PP Neue Montreal",Arial,sans-serif;
}

.cew-pt,
.cew-pt *{
	box-sizing:border-box;
}

.cew-pt-track{
	position:relative;
	width:100%;
}

.cew-pt-line{
	--cew-pt-line-width:2px;
	position:absolute;
	z-index:0;
	top:7px;
	bottom:0;
	left:6px;
	width:2px;
	background:#d6d6d6;
	pointer-events:none;
}

.cew-pt-step{
	--cew-pt-step-marker:initial;
	--cew-pt-step-number:initial;
	--cew-pt-step-title:initial;
	--cew-pt-step-description:initial;

	position:relative;
	z-index:1;
	display:block;
	width:100%;
	min-width:0;
	margin:0;
	padding:0 0 0 34px;
	color:inherit;
	text-decoration:none;
}

.cew-pt-step:not(:last-child){
	margin-bottom:26px;
}

.cew-pt-step:hover,
.cew-pt-step:focus{
	color:inherit;
	text-decoration:none;
}

.cew-pt-step:focus-visible{
	outline:2px solid currentColor;
	outline-offset:4px;
}

.cew-pt-marker{
	position:absolute;
	z-index:2;
	top:1px;
	left:calc(6px + (2px / 2));
	width:12px;
	height:12px;
	background:var(--cew-pt-step-marker,#a8a8a8);
	transform:translateX(-50%);
}

.cew-pt-step.is-active .cew-pt-marker{
	background:var(--cew-pt-step-marker,#6a26e8);
}

.cew-pt-content{
	width:100%;
	min-width:0;
	text-align:left;
}

.cew-pt-number{
	margin:0 0 12px;
	color:var(--cew-pt-step-number,#555555);
	font-size:20px;
	line-height:1.2;
	font-weight:400;
}

.cew-pt-title{
	margin:0 0 22px;
	padding:0;
	color:var(--cew-pt-step-title,#111111);
	font-size:30px;
	line-height:1.12;
	font-weight:400;
	letter-spacing:-.025em;
}

.cew-pt-description{
	max-width:100%;
	margin:0;
	color:var(--cew-pt-step-description,#777777);
	font-size:16px;
	line-height:1.45;
	font-weight:400;
}

@media(max-width:1024px){
	.cew-pt-step{
		padding-left:32px;
	}

	.cew-pt-title{
		font-size:28px;
	}
}

@media(max-width:767px){
	.cew-pt-step{
		padding-left:28px;
	}

	.cew-pt-step:not(:last-child){
		margin-bottom:22px;
	}

	.cew-pt-title{
		font-size:26px;
		margin-bottom:16px;
	}

	.cew-pt-description{
		font-size:15px;
	}
}
