/* ==================================================
   Ordered Steps Widget
================================================== */
.ordered-steps-section {
	--ordered-step-number-width: 16px;
	--ordered-step-number-gap: 19px;
	--ordered-step-card-pad-x: 11px;
	--ordered-step-card-pad-y: 40px;
	position: relative;
	overflow: hidden;
	padding: 80px 40px;
	border-radius: 16px;
	box-sizing: border-box;
	background-color: var(--ordered-steps-bg-color, transparent);
	isolation: isolate;
	width: 100%;
}
.ordered-steps-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--ordered-steps-background, none);
	background-position: var(--ordered-steps-background-position, center center);
	background-size: var(--ordered-steps-background-size, cover);
	background-repeat: no-repeat;
	z-index: 0;
	pointer-events: none;
}
.ordered-steps-section>* {
	position: relative;
	z-index: 1;
}
.ordered-steps-title {
	margin: 0 0 24px;
}
.ordered-steps-description {
	margin: 0 0 48px;
}
.ordered-steps-items {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: visible;
}
.ordered-steps-row {
	display: grid;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px solid var(--grey-border-20);
	align-items: stretch;
}
.ordered-steps-row:last-child {
	border-bottom: none;
}
.ordered-steps-cell {
	min-width: 0;
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	width: 100%;
	justify-content: flex-start;
	position: relative;
}
.ordered-step-cell {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	display: flex;
	flex-direction: column;
}
.ordered-steps-cell--empty {
	pointer-events: none;
	visibility: hidden;
}
.ordered-step-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	height: 100%;
	box-sizing: border-box;
	padding: var(--ordered-step-card-pad-y) var(--ordered-step-card-pad-x);
	min-width: 0;
	width: 100%;
}
.ordered-step-card--first-row {
	padding-top: 0 !important;
}
.ordered-step-card--last-row {
	padding-bottom: 0 !important;
}
.ordered-step-heading {
	display: grid;
	grid-template-columns: var(--ordered-step-number-width) minmax(0, 1fr);
	align-items: center;
	column-gap: var(--ordered-step-number-gap);
	min-width: 0;
}
.ordered-step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--ordered-step-number-width);
	flex: none;
	position: relative;
	z-index: 2;
	line-height: 1;
	white-space: nowrap;
	color: var(--blue-light);
	font-variant-numeric: tabular-nums;
	-webkit-font-feature-settings: "tnum" 1;
	font-feature-settings: "tnum" 1;
	transform: none;
}
.ordered-step-title {
	margin: 0;
	min-width: 0;
	word-break: break-word;
	transform: none;
}
.ordered-step-title a {
	color: inherit;
	text-decoration: none;
}
.ordered-step-title a:hover,
.ordered-step-title a:focus {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}
.ordered-step-text {
	font-size: 14px;
	line-height: 1.5;
	min-width: 0;
	word-break: break-word;
}
.ordered-step-text p {
	margin: 0 0 10px;
}
.ordered-step-text p:last-child {
	margin-bottom: 0;
}
.ordered-step-image {
	max-width: 100%;
}
.ordered-step-image img {
	display: block;
	width: 100%;
	height: auto;
}
/* ==================================================
   Button base
================================================== */
.ordered-step-card .ordered-step-button,
.ordered-steps-cta .ordered-step-button {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: auto !important;
	max-width: max-content !important;
	flex: 0 0 auto;
	border: 0;
	background: transparent;
	box-shadow: none;
	text-decoration: none;
	color: inherit;
	gap: 10px;
	line-height: 1;
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box;
}
.ordered-step-card .ordered-step-button.button,
.ordered-step-card .ordered-step-button.button-with-icon,
.ordered-step-card a.ordered-step-button,
.ordered-steps-cta .ordered-step-button.button,
.ordered-steps-cta .ordered-step-button.button-with-icon,
.ordered-steps-cta a.ordered-step-button {
	width: auto !important;
	max-width: max-content !important;
	display: inline-flex !important;
}
.ordered-step-button__text {
	display: inline-block;
	white-space: nowrap;
}
.ordered-step-button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	line-height: 1;
}
.ordered-step-button:hover,
.ordered-step-button:focus-visible {
	text-decoration: none;
	color: inherit;
}
/* ==================================================
   Columns
================================================== */
.ordered-steps--cols-1 .ordered-steps-row {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.ordered-steps--cols-2 .ordered-steps-row {
	grid-template-columns: calc(50% - 22px) calc(50% + 22px);
}
.ordered-steps--cols-3 .ordered-steps-row {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ordered-steps--cols-4 .ordered-steps-row {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ordered-steps--cols-5 .ordered-steps-row {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
.ordered-steps--cols-6 .ordered-steps-row {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}
/* ==================================================
   Vertical borders
================================================== */
.ordered-steps--vertical-borders .ordered-steps-cell {
	border-right: 1px solid var(--grey-border-20);
}
.ordered-steps--vertical-borders .ordered-steps-cell:last-child,
.ordered-steps--vertical-borders .ordered-steps-cell.is-line-last-cell,
.ordered-steps--vertical-borders .ordered-steps-cell--empty {
	border-right: 0;
}
/* ==================================================
   Two columns tuning
================================================== */
.ordered-steps--cols-2 {
	--ordered-step-number-width: 16px;
	--ordered-step-number-gap: 19px;
}
.ordered-steps--cols-2 .ordered-step-heading {
	grid-template-columns: var(--ordered-step-number-width) minmax(0, 1fr);
	column-gap: var(--ordered-step-number-gap);
}
.ordered-steps--cols-2 .ordered-steps-row>.ordered-steps-cell .ordered-step-card {
	padding-left: 0;
	padding-right: 0;
}
.ordered-steps--cols-2 .ordered-steps-row>.ordered-steps-cell .ordered-step-number {
	transform: none;
	width: var(--ordered-step-number-width);
	margin: 0;
}
.ordered-steps--cols-2 .ordered-steps-row>.ordered-steps-cell .ordered-step-title {
	transform: none;
	margin-left: 0;
}
.ordered-steps--cols-2.ordered-steps--vertical-borders .ordered-steps-row>.ordered-steps-cell .ordered-step-card {
	padding-left: 10px;
}
/* ==================================================
   Three+ columns tuning
================================================== */
.ordered-steps--cols-3 .ordered-step-card,
.ordered-steps--cols-4 .ordered-step-card,
.ordered-steps--cols-5 .ordered-step-card,
.ordered-steps--cols-6 .ordered-step-card {
	padding: 32px 11px;
}
/* ==================================================
   CTA containers
================================================== */
.ordered-steps-cta {
	display: none;
	width: 100%;
	box-sizing: border-box;
	align-items: center;
}
.ordered-steps-cta.is-active {
	display: flex;
}
.ordered-steps-cta--outside-grid {
	margin-top: 40px;
	padding-top: 0;
	border-top: 1px solid var(--grey-border-20);
}
.ordered-steps-cta--outside-block {
	display: none;
	margin-top: 40px;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}
.is-last-row .ordered-step-card{
	padding-bottom: 0px;
}
.ordered-steps-cta--outside-block.is-active {
	display: flex;
}
.ordered-steps-cell--button.is-line-last-cell .ordered-step-card.ordered-step-card--button {
	padding-left: 36px;
}
.ordered-steps-cta--outside-grid .ordered-step-card.ordered-step-card--button {
	padding-inline: 0px;
	padding-bottom: 0px;
}
.ordered-steps-button-template {
	display: none;
}
/* ==================================================
   Layout safety
================================================== */
.ordered-steps-items,
.ordered-steps-row,
.ordered-steps-cell,
.ordered-step-cell,
.ordered-step-card {
	min-width: 0;
}
.ordered-steps-row * {
	box-sizing: border-box;
}
.ordered-step-card .ordered-step-button {
	flex: none;
	max-width: max-content;
}
.ordered-step-card--button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}
.ordered-step-card--button .ordered-step-button {
	width: auto !important;
	max-width: max-content !important;
}
/* ==================================================
   Desktop
================================================== */
@media (min-width: 1024px) {
	.ordered-steps-section {
		padding: 80px 40px;
	}
	.ordered-steps--cols-3 .ordered-step-card,
	.ordered-steps--cols-4 .ordered-step-card,
	.ordered-steps--cols-5 .ordered-step-card,
	.ordered-steps--cols-6 .ordered-step-card {
		padding: 32px 11px;
	}
}
/* ==================================================
   Tablet
================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
	.ordered-steps-section {
		padding: 60px 30px;
		--ordered-step-number-gap: 19px;
		--ordered-step-number-width: 16px;
		--ordered-step-card-pad-x: 12px;
		--ordered-step-card-pad-y: 40px;
	}
	.ordered-step-card {
		padding: var(--ordered-step-card-pad-y) var(--ordered-step-card-pad-x);
	}
	.ordered-steps--cols-tablet-1 .ordered-steps-row {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.ordered-steps--cols-tablet-2 .ordered-steps-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ordered-steps--cols-tablet-3 .ordered-steps-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.ordered-steps--cols-tablet-4 .ordered-steps-row {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.ordered-steps--cols-tablet-5 .ordered-steps-row {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
	.ordered-steps--cols-tablet-6 .ordered-steps-row {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
	.ordered-steps--cols-tablet-2 {
		--ordered-step-number-gap: 19px;
		--ordered-step-number-width: 16px;
	}
	.ordered-steps--cols-tablet-2 .ordered-step-heading {
		grid-template-columns: var(--ordered-step-number-width) minmax(0, 1fr);
		column-gap: var(--ordered-step-number-gap);
	}
	.ordered-steps--cols-tablet-2 .ordered-steps-row>.ordered-steps-cell .ordered-step-card {
		padding-left: 0 !important;
		padding-right: 0;
	}
	.ordered-steps--cols-tablet-2 .ordered-steps-row>.ordered-steps-cell .ordered-step-number {
		transform: none;
		width: var(--ordered-step-number-width);
		margin: 0;
	}
	.ordered-steps--cols-tablet-2 .ordered-steps-row>.ordered-steps-cell .ordered-step-title {
		transform: none;
	}
}
/* ==================================================
   Mobile
================================================== */
@media (max-width: 767px) {
	.ordered-steps-section {
		padding: 40px 20px;
		border-radius: 16px;
		--ordered-step-number-gap: 3px;
		--ordered-step-number-width: 16px;
		--ordered-step-card-pad-x: 0px;
		--ordered-step-card-pad-y: 20px;
	}
	.ordered-steps-items {
		display: block;
	}
	.ordered-steps-row {
		display: contents;
		border-bottom: none;
	}
	.ordered-steps-cell {
		display: block;
		width: 100%;
		max-width: 100%;
		flex: 0 0 100%;
		border-bottom: 1px solid var(--grey-border-20);
	}
	.ordered-steps-cell--empty {
		display: none !important;
		border-bottom: 0;
	}
	.ordered-step-cell {
		width: 100%;
	}
	.ordered-step-heading {
		column-gap: var(--ordered-step-number-gap);
		grid-template-columns: var(--ordered-step-number-width) minmax(0, 1fr);
	}
	.ordered-step-card {
		padding: var(--ordered-step-card-pad-y) var(--ordered-step-card-pad-x);
		gap: 20px;
		margin-left: -10px;
	}
	.ordered-step-card--first-row {
		padding-top: 0 !important;
	}
	.ordered-step-card--last-row {
		padding-bottom: 20px !important;
	}
	.ordered-steps--cols-mobile-1 .ordered-steps-row {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.ordered-steps--cols-mobile-2 .ordered-steps-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ordered-steps--cols-mobile-3 .ordered-steps-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.ordered-steps--cols-mobile-4 .ordered-steps-row {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.ordered-steps--cols-mobile-5 .ordered-steps-row {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
	.ordered-steps--cols-mobile-6 .ordered-steps-row {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
	.ordered-steps--cols-mobile-2 {
		--ordered-step-number-gap: 19px;
		--ordered-step-number-width: 16px;
	}
	.ordered-steps--cols-mobile-2 .ordered-step-heading {
		grid-template-columns: var(--ordered-step-number-width) minmax(0, 1fr);
		column-gap: var(--ordered-step-number-gap);
	}
	.ordered-steps--cols-mobile-2 .ordered-steps-row>.ordered-steps-cell .ordered-step-card {
		padding-left: 0;
		padding-right: 0;
	}
	.ordered-steps--cols-mobile-2 .ordered-steps-row>.ordered-steps-cell .ordered-step-number {
		transform: none;
		width: var(--ordered-step-number-width);
		margin: 0;
	}
	.ordered-steps--cols-mobile-2 .ordered-steps-row>.ordered-steps-cell .ordered-step-title {
		transform: none;
	}
	.ordered-steps-cta--outside-grid.is-active {
		display: flex;
	}
	.ordered-steps-cta--outside-block.is-active {
		display: flex;
		padding: 0 20px;
		margin-top: 30px;
	}
	.ordered-steps-cell.ordered-steps-cell--button.is-line-last-cell {
		border-bottom: 0;
	}
	.ordered-steps-cell--button .ordered-step-card.ordered-step-card--button.ordered-step-card--last-row {
		padding-inline: 0px;
	}
	.ordered-steps-cell.ordered-steps-cell--button.is-line-last-cell .ordered-step-card--button {
		padding-top: 30px;
		margin-left: 0;
	}
	.ordered-steps-cta--outside-grid.is-active {
		border-top: 0;
		margin-top: 20px;
	}
	.ordered-steps-cta--outside-block .ordered-step-card.ordered-step-card--button {
		margin-left: 0px;
	}
	.ordered-steps--cols-3 .ordered-step-card,
	.ordered-steps--cols-4 .ordered-step-card,
	.ordered-steps--cols-5 .ordered-step-card,
	.ordered-steps--cols-6 .ordered-step-card {
		padding: 10px 11px;
	}
}
.ordered-steps-section .ordered-step-card,
.ordered-steps-section .ordered-step-heading,
.ordered-steps-section .ordered-step-text,
.ordered-steps-section .ordered-step-image {
	min-width: 0;
}
.ordered-steps-section .ordered-step-card a,
.ordered-steps-section .ordered-step-card button {
	max-width: 100%;
}