.gs-steps {
	display: flex;
	margin-bottom: 20px;
	align-items: center;
	justify-content: center;
	flex-flow: row nowrap;
	box-shadow: 0 0 10px 0 #02020212;
	counter-reset: ordered;
}

.gs-step {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	padding: 22px;
	border: 1px solid #dfe3e7;
	border-left-width: 0;
	background: #f9f9f9;
	color: #353a40;

	&::before {
		content: counter(ordered);
		counter-increment: ordered;
		display: block;
		margin-right: 15px;
		position: static;
		text-align: center;
		font-size: 30px;
		font-weight: 600;
	}

	&:first-child {
		border-left-width: 1px;
		border-top-left-radius: 6px;
		border-bottom-left-radius: 6px;
	}

	&:last-child {
		border-top-right-radius: 6px;
		border-bottom-right-radius: 6px;
	}

	.dashicon {
		display: none;
		margin: -10px 10px -10px 0;
		color: #1aa871;
	}

	&--active {
		background-color: #fff;
	}

	&--completed {
		.dashicon {
			display: block;
		}

		&::before {
			visibility: hidden;
			margin: 0;
			font-size: 0;
		}
	}

	&__title {
		display: block;
		line-height: 1.2;
		font-size: 14px;
		font-weight: 600;
	}

	&__text {
		color: #696f77;
		font-size: 12px;
	}
}
