.order > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px 80px;
}
.list, .info {
	padding: 0 20px;
}
.list table {
	border-collapse: collapse;
	margin-bottom: 20px;
	width: 100%;
}
.info {
	font-size: 16px;
	text-align: center;
}	
@media (max-width: 450px) {
	.list table {
		width: 100%;
	} 
}

.list td > a, .list tr:last-of-type {
    font-weight: 600;
}
.list td {
	padding: 5px 10px 10px;
	vertical-align: middle;
}
.list td:first-child {
	padding-left: 0;
}
.list td:nth-child(n+2) {
	text-align: center;
}
.list td:last-child {
	padding-right: 0;
	text-align: right;
	white-space: nowrap;
}
.list td:last-child span {
	padding-left: 3px;
    font-size: 16px;
}
.list a.num {
	position: relative;
	font-weight: 300;
}	
.list a.num:before {
	content: '';
	width: 1.8em;
	height: 1.8em;
    border: 1px solid #daf5ff;
    border-radius: 50%;
    position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.list tr:last-child td {
	border-top: 1px solid #007ba7;
	padding-top: 10px;
}
.order h2 {
    margin: 0 10px 30px;
}
.list p {
	margin-bottom: 40px;
}
@media (max-width: 550px) { 
	.list p {
		text-align: center;
	}
}	