.el-list-item {
	margin-bottom: 0px !important;
}
.el-list .list-item-body {
	width: 100%;
	height: auto;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 1.6rem 0;
}
.el-list .el-list-item.withIcon .list-item-body {
	transition: ease-in background 0.2s;
}
.el-list .list-item-text,
.el-list .list-item-text .bh-bodytext {
	font-size: 2rem;
	line-height: 1.5;
	color: black;
}
.el-list .el-list-item:not(.withIcon) .list-item-text {
	transition: ease-in transform 0.2s;
}
.el-list .el-list-item[href] .list-item-link-icon {
	font-size: 24px;
	color: var(--primary-color-100);
	margin-left: 1rem;
}
.el-list .el-list-item[href] .list-item-body {
	padding: 1rem 0;
}

/* mit Icon */

.el-list .el-list-item.withIcon .list-item-body {
	padding-left: 1rem;
	box-sizing: border-box;
}
.el-list .el-list-item .list-item-icon {
	margin-left: 1rem;
}
.el-list .el-list-item.withIcon .list-item-text {
	width: calc(100% - 24px - 1rem);
}
.el-list .el-list-item.withIcon[href] .list-item-text {
	width: calc(100% - 48px - 2rem);
	margin-right: 1rem;
}


/* HOVER */

.el-list .el-list-item:not(.withIcon)[href]:hover .list-item-text {
	transform: translateX(1rem);
	transition: ease-out transform 0.2s;
}
.el-list .el-list-item.withIcon[href]:hover .list-item-body {
	background-color: #edf0f5;
	transition: ease-out background 0.2s;
}

@media only screen and (max-width:550px) {
	.el-grid .el-list .list-item-text,
	.el-grid .el-list .list-item-text .bh-bodytext {
		font-size: 1.8rem;
	}
	.el-grid .el-list .el-list-item[href] .list-item-link-icon {
		font-size: 2rem;
	}
}