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: 10px;
    margin-bottom: 20px;
}

.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: 40px;
    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;
    border-radius: var(--beon-border-radius-small);
    border: var(--beon-fp-search-border);
    min-height: 180px;
}

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

.bedroom-title {
    text-align: center;
    font-weight: 600;
}

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

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

    div#ausstattungswrapper {
        display: none;
        margin-bottom: 10px;
    }

    .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;
    }

    .bedroom-wrapper {
        width: 100%;
        gap: 20px;
        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;
    }
}