/*
 * ----------------
 * Styles for lists
 * ----------------
 */

ul > li {
	line-height: 1.6em;
}

ul:not(:last-child) {
	margin-bottom: 20px;
}

ul:last-child {
	margin-bottom: 0;
}

ul.horizontal {
	display: block;
    margin-bottom: 0px;
	padding-left: 0px;
}

ul.horizontal > li {
    line-height: 1.2em;
	display: inline-block;
}

ul.no-bullets {
	padding-left: 0;
}

ul.no-bullets, ul.horizontal, ul.primary, ul.dark, ul.light {
	list-style: none;
}

ul.primary > li:before, ul.dark > li:before, ul.light > li:before {
    content: "\2022";
    display: inline-block;
    font-weight: 700;
    line-height: inherit;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    width: 1em;
    margin-left: -1em;
}

ul.primary, ul.dark, ul.light {
	padding-left: 1.2em;
}

ul.primary > li:before {
	color: var( --color-orange );
}

ul > li.dark,
ul.dark > li:before {
	color: var( --color-panthagray );
}

ul > li.light,
ul.light > li:before {
	color: var( --color-pearlwhite );
}

dl {
	margin-bottom: 10px;
}

dl dd {
	margin-bottom: 0;
}