.mogo-card-grid {
	margin-top: 22px;
}

.mogo-process {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: 22px;
}

.mogo-step-number {
	display: inline-grid;
	width: 34px;
	height: 34px;
	margin-bottom: 12px;
	place-items: center;
	border-radius: 50%;
	background: var(--mogo-blue, #005ee9);
	color: #fff;
	font-weight: 900;
}

.mogo-final-cta {
	background: #11345f;
	color: #fff;
}

.mogo-final-cta .mogo-h2 {
	color: #fff;
}

.mogo-booking-form {
	margin-top: 28px;
}

.mogo-booking-form > h2 {
	margin-top: 28px;
}

.mogo-booking-item {
	margin: 16px 0;
	padding: 18px;
	border: 1px solid var(--mogo-line, #d7e0ec);
	border-radius: var(--mogo-radius, 8px);
	background: #fff;
}

.mogo-booking-item + .mogo-booking-item {
	margin-top: 18px;
}

.mogo-wide {
	grid-column: 1 / -1;
}

.mogo-form-result {
	margin-top: 18px;
}

.mogo-estimate-result h3,
.mogo-tracking-result h3 {
	margin-top: 0;
}

.mogo-estimate-result ul {
	margin: 12px 0;
}

.mogo-tracking-result {
	margin-top: 18px;
}

.mogo-remove-item {
	margin-top: 12px;
}

@media (max-width: 980px) {
	.mogo-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.mogo-process {
		grid-template-columns: 1fr;
	}
}

