/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 25 2025 | 04:17:20 */
.column-step {
	border-left: 1px solid #999999;
	position: relative;
}
.column-step:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 1px solid #999999;
	background-color: #fff;
	position: absolute;
	top: 0px;
	left: -8px;
	border-radius: 50%;
}
.column-step:after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 60px;
	background-color: #999999;
	position: absolute;
	bottom: -60px;
	left: -1px;
}

.column-step.column-last:after {
	display: none;
}

@media (max-width: 700px) {
	.columns-steps {
		gap: 24px !important;
	}
	.column-step {
		padding-left: 20px !important;
		padding-right: 0px !important;
	}
	.column-step.column-last:after {
		width: 25px;
		height: 30px;
		bottom: 0px;
		left: -13px;
		z-index: 3;
	}

}
