ul, ol {
	margin: 0 0 1.5em 0;
	padding-left:0;
}

ul {
	list-style: none;
}
main {
	ul {
		li {
			padding-bottom: 11px;
			&::before {
				content: '';
				display: inline-block;
				width: .675em;
				height: .675em;
				margin-right: 1em;
				border-radius: 50%;
			}
		}
	}
}

ol {
	counter-reset: li;
	margin-left: 0;
	li {
		display: block;
		padding-bottom: 5px;
		&::before {
			content: counter(li, decimal);
			counter-increment: li;
			font-size: 1.143em;
			font-weight: 700;
			margin-right: 19px;
			vertical-align: baseline;
		}
	}
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Inline list */
.inline-list {
	@include reset-list;
	li {
		display: inline-block;
		vertical-align: top;
	}
}