div#ausstattungswrapper {
	display: flex;
	flex-wrap: wrap;
    flex-direction: column;
	justify-content: flex-start;
	margin: auto;
}
.highlight-property-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 12px;
    margin-bottom: 27px;
}
.highlight-propertyvalue {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font: var(--beon-unit-properties-font);
}
.highlight-propertyvalue img {
    height: 17px;
    width: 17px;
    filter: var(--beon-unit-properties-icon-filter);
}
/*Popup*/

.propertyvalue {
	font-size: var(--font-size-medium);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.propertyvalue img {
    width: 15px;
    height: 15px;
    filter: var(--beon-unit-properties-icon-filter);
}

#beon-unit-properties {
    font: var(--beon-unit-properties-popup-font);
}
#beon-unit-properties h4 {
    margin-top: 16px;
    margin-bottom: 8px;
    font: var(--beon-unit-properties-popup-headline-font);
}
#beon-unit-properties .basics-wrapper h4 {
    margin-top: 5px;
}

.bedroom-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    gap: 26px;
    padding-bottom: 30px;
    overflow: hidden;
    overflow-x: auto;
}

.bedroom-property {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 10px;
    width: 173px;
    min-height: 210px;
    border: var(--beon-fp-search-border);
    border-radius: var(--beon-border-radius-small);
}

.bedroom-icon {
    height: 60px;
    width: 60px;
    background: url(/wp-content/themes/ostseetraum-theme/assets/images/bed.svg);
    background-size: 48px;
    background-position: center;
    background-repeat: no-repeat;
}

.bedroom-title {
    padding-top: 8px;
    text-align: center;
    font-weight: 700;
    font-size: var(--beon-font-15);
}

.bed-info {
    text-align: center;
    padding-top: 4px;
    font-size: var(--beon-font-size-small);
    font-weight: 400;
}

@media only screen and (max-width: 1200px) {

	div#ausstattungswrapper,
    div#bedroomswrapper  {
		display: none;
        padding:20px 0px;
	}
    .single-unit button.beon-unit-section-button {
        padding: 0 10px;
    }
	/* Work further */
	ul.distances-list li {
		width: 50%;
	}
	.propertyvalue {
		font-size: var(--font-size-small);
		hyphens: auto;
	}

	.highlight-property-wrapper {
		margin-bottom: 10px;
		row-gap: 10px;
	}
    .bedroom-property {
        min-width: 140px;
        padding: 0px;
        padding-top: 20px;
    }

    .bedroom-wrapper {
        width: 100%;
        gap: 10px;
        overflow: hidden;
        overflow-x: scroll;
    }

    .bedroom-wrapper::-webkit-scrollbar-track {
        background-color: transparent !important;
        height: 0px !important;
        width: 0px !important;
    }

    .bedroom-wrapper::-webkit-scrollbar {
        background-color: transparent !important;
        height: 0px !important;
        width: 0px !important;
    }

    .bedroom-wrapper::-webkit-scrollbar-thumb {
        background-color: transparent !important;
        height: 0px !important;
        width: 0px !important;
    }
}