.highlight-wrapper {
	height: 180px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0px 50px 0px;
	padding: 0;
	list-style-type: none;
	flex-wrap: wrap;
	background: var(--beon-highlight-color);
	padding: 20px;
	border-radius: var(--beon-border-radius);
}

.highlight-wrapper li {
	padding: 0px;
	display: flex;
	min-width: 80px;
	flex-direction: column;
	align-items: center;
	white-space: break-spaces;
	font-weight: var(--beon-font-weight-semibold) !important;
}

.highlight-wrapper img {
	width: 50px;
	height: 50px;
}
.highlight-wrapper img.koffer-icon {
	width: 45px !important;
	height: 45px !important;
	margin-bottom: 5px;
} 

.highlight-wrapper img.invert {
	filter: invert(1);
}

#description {
	padding-top: 30px;
	text-align: left;
	padding-bottom: 70px;
	font-size: var(--beon-medium-font-size);
}

#description #text_short {
	margin-bottom: 30px;
}

.description-footer {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.highlight-wrapper li div,
span.wrap-value {
	padding-top: 20px;
}

#readless,
#readmore,
#beschreibung-more {
	border: 1px solid var(--beon-text-color);
	cursor: pointer;
	padding: 10px 20px;
	font-size: var(--beon-small-font-size);
	width: 250px !important;
	border-radius: var(--beon-btn-border-radius);
	color: var(--beon-text-color);
	display: flex;
	align-items: center;
	gap: 5px;
}

#textrest,
#readless {
	display: none;
}

.mobile-highlight-wrapper {
	display: none;
}

.wrap-highlight {
	display: flex;
	gap: 10px;
}

.wrap-highlight li {
	list-style: none;
}

.details-wrapper li img {
	width: 25px;
	height: 25px;
}

.details-wrapper {
	padding: 20px 0px;
}

.details-wrapper ul {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
	gap: 5px;
}

.details-wrapper ul li {
	text-align: center;
	background: inherit;
	padding: 5px 10px;
	border-radius: var(--beon-btn-border-radius);
	border: 1px solid var(--beon-primary-color);
	display: flex;
	gap: 2px;
	justify-content: center;
	align-items: center;
}

.details-wrapper span.wrap-value {
	padding-top: 0px;
}

@media only screen and (max-width:1550px) and (min-width:1025px) {
	.highlight-wrapper{
		height: auto !important;
	}
	.highlight-wrapper li {
		min-width: 100px;
	}
}
@media only screen and (max-width:1024px){
	.highlight-wrapper li{
		min-width: 50px;
	}
}

@media only screen and (max-width:767px) {
	.highlight-wrapper {
		display: none;
	}

	#description {
		padding-right: 0px;
		font-size: var(--beon-regular-font-size);
	}

	.mobile-highlight-wrapper {
		display: block;
	}

}