.page-payment{
	display:block;
	width:100%;
}
.page-payment-block{
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	padding: 0px 20px;
	box-sizing: border-box;
}
h1{
	font-size: 28px;
	margin: 0px;
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
	padding: 50px 0px;
}
h2{
	font-size: 24px;
	margin: 0px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 50px 0px;
}
ol{
	list-style-type: none;
	counter-reset: num;
	margin: 0px 0px 0px 40px;
	padding: 0px;
	box-sizing: border-box;
}
ol li{
	position: relative;
	margin: 0px;
	padding: 0px 0px 20px 0px;
	font-weight: 300;
}
ol li:before{
	content: counter(num);
	counter-increment: num;
	display: inline-block;
	position: absolute;
	top: -3px;
	left: -40px;
	width: 30px;
	height: 30px;
	background: #8dbf41;
	color: #fff;
	text-align: center;
	line-height: 30px;
	font-size: 20px;
	font-weight: 800;
}
ol li span{
	font-weight: 700;
	text-transform: uppercase;
	font-size: 15px;
}
.page-payment-info{
	display: block;
	width: 100%;
	text-align: center;
	border: 1px solid #ddd;
	padding: 30px 20px;
	box-sizing: border-box;
	background: #eee;
	margin-top: 30px;
}