article {
	display: flex;
	flex-direction: column;
}

.rows {
	border-bottom: 1px dashed Grey;
	padding: 20px 10px;
}

.journeys {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: 18px;
}

.cars {
	display: flex;
	justify-content: space-between;
}
.cars > span {
	font-size: 20px;
	padding: 10px;
	background: var(--main-color);
	color: White;
	width: calc(25% - 10px);
	border-radius: 0 0 10px 10px;
	text-align: center;
	cursor: pointer;
}
