.resultsList {
	padding: 20px 0;
}
.resultsList li {
	border-bottom: 1px solid #DCDCDC;
	margin-bottom: 15px;
}
.resultsList li a {
	position: relative;
	display: block;
	padding: 12px 0;
	padding-right: 20px;
}
.resultsList li a:after {
	border-top: solid 1px #4687EA;
	border-right: solid 1px #4687EA;
	width: 8px;
	height: 8px;
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	transform: rotate(45deg);
	right: 8px;
	margin: auto;
	transition: all 0.3s ease-out;
}
.resultsList li a:hover:after {
	right: 0;
}
.resultsList li a span {
	font-weight: 600;
	padding-right: 1em;
}
.resultsList li.pdf a:after {
	border: none;
	transform: none;
	display: block;
	background-image: url(../img/common/pdf-icon-blue.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 24px;
	height: 28px;
}
@media (min-width: 1000px) {
	.resultsList {
		display: flex;
		flex-wrap: wrap;
		padding: 50px 0;
	}
	.resultsList li {
		width: calc((100% - 32px) / 2);
	}
	.resultsList li:nth-of-type(odd) {
		margin-right: 32px;
	}
	.resultsList li a {
		padding: 15px 0;
	}
}

/*# sourceMappingURL=results.css.map */