.data-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.data-list .list-item {
	line-height: 50px;
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	box-sizing: border-box;
	width: 100%;
	height: 50px;
	-webkit-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-moz-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-ms-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-o-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	border-right: 1px solid rgba(0, 0, 0, 0.15);
	border-left: 1px solid rgba(0, 0, 0, 0.15);
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: space-between;
}
.data-list .list-item:nth-of-type(even):not(:last-child)::before,
.data-list .list-item:nth-of-type(even):not(:last-child)::after {
	position: absolute;
	z-index: 1;
	right: 0;
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	background: rgba(0, 0, 0, 0.15);
}
.data-list .list-item:nth-of-type(even):not(:last-child)::before {
	top: 0;
}
.data-list .list-item:nth-of-type(even):not(:last-child)::after {
	bottom: 0;
}
.data-list .list-item:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, 0.05);
}
.data-list .list-item:hover {
	background-color: rgba(0, 102, 102, 0.1);
}
.data-list .list-item:first-of-type {
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.data-list .list-item:last-of-type {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.data-list .list-item > * {
	line-height: 50px;
	box-sizing: border-box;
	height: 50px;
	margin-right: 0.5rem;
}
.data-list .number {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	text-align: center;
}
.data-list .name {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.data-list .link {
	font-size: 1.25rem;
	display: block;
	color: var(--blue);
}
.data-list .link:hover,
.data-list .link:focus,
.data-list .link:active,
.data-list .link:visited {
	text-decoration: none;
}
.data-list .link:target {
	text-shadow: 0 0 10px var(--blue);
}
.data-list .actions button {
	padding: 0;
	cursor: pointer;
	-webkit-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-moz-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-ms-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-o-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	border: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background-color: transparent;
	speak: none;
	-webkit-font-smoothing: antialiased;
	-webkit-appearance: none;
	-ms-touch-action: inherit;
	-moz-appearance: none;
	-moz-outline: 0;
	-o-link: inherit;
}
.data-list .actions .action {
	line-height: 50px;
	display: block;
	float: left;
	width: 30px;
	height: 50px;
	padding: 0;
	cursor: pointer;
	-webkit-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-webkit-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-moz-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-moz-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-ms-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-ms-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-o-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-o-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	border: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background-color: transparent;
	background-size: 30px;
	speak: none;
	-webkit-font-smoothing: antialiased;
	-webkit-appearance: none;
	-ms-touch-action: inherit;
	-moz-appearance: none;
	-moz-outline: 0;
	-o-link: inherit;
}
.data-list .actions .action:hover,
.data-list .actions .action:focus,
.data-list .actions .action:active,
.data-list .actions .action:visited {
	text-decoration: none;
	color: inherit;
}
.data-list.small-list > .list-item,
.data-list.small-list > .list-item > * {
	line-height: 30px;
	height: 30px;
}
.data-list.small-list > .list-item .action,
.data-list.small-list > .list-item > * .action {
	line-height: 30px;
	width: 30px;
	height: 30px;
}
@media all and (min-width: 768px) {
	.list-data .list-switcher {
		margin-top: 10%;
	}
}
.list-data .list-switcher hr {
	margin-top: 0;
}
.list-data .list-switcher-inner {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: space-between;
}
.list-data .list-header {
	margin-bottom: 0;
}
@media all and (min-width: 640px) {
	.list-data .list-header {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		-moz-justify-content: space-between;
		-ms-justify-content: space-between;
		justify-content: space-between;
		-ms-flex-pack: space-between;
	}
}
.list-data .list-header > :last-of-type {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.list-data .list-header > :last-of-type > button {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.list-data .list-header hr {
	margin-top: 0;
}
.list-data .list-toggle {
	font: normal 12px var(--font-sans);
	line-height: 1;
	margin: 0;
	padding: 0.75rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--blue);
	border: 0;
	border-radius: 0;
	background: 0;
}
.list-data .list-toggle:hover,
.list-data .list-toggle:focus,
.list-data .list-toggle:active {
	color: var(--grey);
	background: rgba(0, 0, 0, 0.05);
}
.list-data .list-toggle.uk-active {
	color: var(--grey);
	background: rgba(0, 0, 0, 0.05);
}
.list-data .list-item-heading {
	font-size: 1.25rem;
	line-height: 1.5;
	margin: 0;
	padding: 0.5rem 0 0;
	color: var(--blue);
}
@media all and (min-width: 768px) {
	.list-data .list-item-heading {
		padding-top: 0.75rem;
	}
}
@media all and (min-width: 1200px) {
	.list-data .list-item-heading {
		padding-top: 1rem;
	}
}
@media all and (max-width: 639px) {
	.list-data .list-item-heading > * {
		display: block;
	}
}
.list-data .list-item-heading sup {
	display: block;
	clear: right;
}
.list-data .list-item-heading:not(:first-of-type) {
	padding-top: 1rem;
}
.list-data .list-heading + h6 {
	margin-top: 0;
}
.styled-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.styled-list ul ul {
	margin-left: 1rem;
}
.styled-list ul li {
	position: relative;
	padding: 0.25rem 0;
}
.styled-list ul li::before {
	position: relative;
	top: 2px;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 0.5rem;
	content: '';
	border: 1px solid var(--green);
	border-radius: 50%;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.75) inset;
}
