.floorplans-wrapper {
    display: grid;
    gap: 1em;
}

.floorplan-item {
    border: 1px white solid;
    padding: 1em;
}

.floorplan-item * {
    margin: 0;
}

.floorplan-item--sync-floor-plan-id {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.floorplan-item--stats {
    display: flex;
    margin-bottom: 1.5em;
    flex-wrap: wrap;
}

.floorplan-item--stats>*+* {
    border-left: 1px white solid;
}

.floorplan-item--stats>* {
    padding: 0 0.5em
}

.floorplan-item--stats>*:last-child {
    padding-right: 0;
}

.floorplan-item--stats>*:first-child {
    padding-left: 0;
}

.floorplan-item--img-wrapper {
    margin-bottom: 1.5em;
    ;
}

.floorplan-item--img {
    object-fit: contain;
    width: 100%;
    height: 400px;
}

.floorplan-item--buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
}

.floorplan-item--buttons a {
    border: 1px white solid;
    padding: 0.5em 1em;
    font-size: 1em;
}

.floorplan-item--buttons a:hover {
    color: #121212;
    background-color: white;
}


.floorplan-filters {
    margin-bottom: 1.3em;
}

.floorplan-filters>div {
    margin-bottom: 1.3em;
}

.floorplan-filters p {
    margin-bottom: 0.5em
}

.bedroom-filter-wrapper {
    margin-bottom: 1em;
    display: flex;
    gap: 0.3em;
    flex-wrap: wrap;
}

.bedroom-filter-wrapper button.selected-filter-button {
    background-color: #BCBEC0;
    color: #000;
}

.floorplan-filters button,
.floorplan-filters p,
.floorplan-filters select {
    font-size: 1em;
}

.floorplan-filters select {
    color: #000;
}


.floorplan-filters.disable-filter input,
.floorplan-filters.disable-filter select,
.floorplan-filters.disable-filter button {
    opacity: .1;
    cursor: default;
    pointer-events: none;
}

.floorplan-order-select {
    width: auto;
}

.units-amount-title {
    text-align: center;
    margin-bottom: 1em;
}

@media (min-width: 768px) {
    .floorplans-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-wrapper {
        max-width: 50%;
    }
}

@media (min-width: 1024px) {
    .floorplans-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}