jumppa-floating {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -100px;
	transform: translate(0, 0);
	z-index: 2;
	background-color: white;
	transition: all 0.2s ease-in;
}

@media (max-width: 767px) {
	jumppa-floating[active] {
		/*bottom: 50px;*/
		transform: translate(0, -150px)
	}
}

.jumppa-headline {
	background-color: #ececec;
	width: 100%;
	padding: 3px 5px;
	font-weight: bold;
	font-size: 14px;
	font-family: Arial;
	margin-bottom: 4px;
}
jumppa-list {
	display: flex;
	flex-wrap: wrap;
}
jumppa-item {
	height: 64px;
	display: flex;
	flex-direction: row;
	flex-basis: 320px;
	background-color: #ececec;
	margin-bottom: 4px;
}
.jumppa-detail {
	/*border-bottom: 1px solid #DDD;*/
}
.jumppa-image {
	width: 64px;
	background-position: 50%;
	background-size: cover;
	flex-shrink: 0;
}
.jumppa-detail {
	flex-grow: 1;
	padding: 4px 8px;
}
.jumppa-title {
	line-height: 1.1;
	font-size: 16px;
	max-height: 53px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}