@charset "utf-8";

body {
	margin: 0;
	padding: 0;
}

.list {
	margin: 0;
	padding: 0;
	width: 300px;
}
.item {
	list-style-type: none;

	display: inline-flex;
	align-items: flex-start;
	line-height: 1.5;
}
.text {
	min-width: 0;
	flex: 1 1 auto;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 16px;
}
.icon_pdf {
	display: inline-block;
	flex: 0 0 auto;
	align-self: flex-end;
	position: relative;
	top: -0.25em;
	width: 16px;
	height: 16px;
	background: url(../icon_pdf.svg) center center no-repeat;
	background-size: contain;
}