
.tree-ul ol,
.tree-ul ul {
	margin-top: 30px;
	list-style-type: none;
	counter-reset: index;
}
.tree-ul li {
	position: relative;
	margin: -16px 0 0 20px;
    border-right: 1px solid #000;
    border-left: 0px;
	padding: 0 40px 22px 0px;
}
.tree-ul li:last-child {
	border-right: 0;
}
.tree-ul li:before {
	counter-increment: index;
	content: counter(index) ". ";
	position: absolute;
	top: 4px;
	right: 25px;
}
.tree-ul li:after {
	content: '';
	position: absolute;
	top: 15px;
	right: 0px;
	display: block;
	width: 18px;
	height: 1px;
	background: #000;
}


.toggle-next + * {
	display: none;
	padding-right: 30px;
}
h4.toggle-next {
	position: relative;
	border-bottom: 1px solid #000;
	padding: 0 30px 5px 0;
	cursor: pointer;
}
h4.toggle-next:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	margin-top: -5.5px;
	width: 20px;
	height: 11px;
	background: url(../img/icons/arrow-bot.svg) no-repeat;
	background-position: center;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
h4.toggle-next.-active:before {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}
.form-col-2 {
	text-align: right;
	width: 50%;
}