.hightlight-main-wrapper{
	border-radius: var(--beon-border-radius-10);
	border: 1px solid var(--beon-border-color);
	background: var(--beon-white);
	padding: 24px;
}
.highlight-wrapper {
	display: grid;
	grid-template-columns: repeat(3, minmax(0,1fr));
	justify-content: space-between;
    align-items: center;
	margin: 0;
	padding: 0;
	gap: 24px;
	position: relative;
}

.highlight-wrapper::before, .highlight-wrapper::after{
	content: '';
    width: 1px;
    height: 100%;
    background: #D3CBB0;
    position: absolute;
    left: unset;
	right: calc((100% / 3) - 4px);
}
.highlight-wrapper::before{
	left: calc((100% / 3) - 4px);
	right: unset;
}
.highlight-wrapper .highlight {
    font: var(--beon-unit-highlights-font);
    color: var(--beon-unit-highlights-text-color);
    /* background-color: var(--beon-unit-highlights-bg-color); */
	/* height: 40px; */
    /* padding: 0 15px; */
    /* border: var(--beon-unit-highlights-border); */
	/* border-radius: var(--beon-unit-highlights-border-radius); */
	display: flex;
	align-items: center;
	justify-content: start;
	gap:5px;
	/* white-space: break-spaces; */
}
.highlight-wrapper .highlight:nth-child(3n + 2), .highlight-wrapper .highlight:nth-child(3n){
	margin-left: 24px;
}
.highlight-wrapper .highlight img{
	width:24px;
	height: 24px;
	object-fit: contain;
	filter: var(--beon-icon-filter-accent);
}
#mobile_description_section {
    display: none;
}
#description {
    font: var(--beon-unit-description-font);
    line-height: var(--beon-unit-description-line-height);
	margin-top: 35px;
	text-align: left;
	margin-bottom: 25px;
}
@media only screen and (max-width: 1200px) {
	#description {
		margin-top: 10px;
		margin-bottom: 10px;
		font: var(--beon-unit-description-font-m);
		line-height: var(--beon-unit-description-line-height-m);
	}
	.wrap-description-content {
		margin-bottom: 10px;
	}
	.highlight-wrapper .highlight {
		/* height: 35px; */
		font: var(--beon-unit-highlights-font-m);
	}
	
	#mobile_description_section {
		display: flex;
	}
	.wrap-description-content{
		display: none;
	}
}
@media only screen and (max-width:768px){
	.highlight-wrapper::before{
		left: calc((100% / 2));
	}
	.highlight-wrapper{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.highlight-wrapper .highlight:nth-child(3n + 2), .highlight-wrapper .highlight:nth-child(3n){
		margin-left: 0px;
	}
	.highlight-wrapper .highlight:nth-child(2n){
		margin-left: 24px;
	}
	.highlight-wrapper::after {
		display: none;
	}
}
@media only screen and (max-width:576px){
	.highlight-wrapper::before{
		display: none;
	}
	.highlight-wrapper .highlight:nth-child(2n){
		margin-left: 0px;
	}
	.highlight-wrapper{
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap:10px;
	}
}