.livebook-slider {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.livebook-slider .livebook-slider-item {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.property-block-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
}

.property-block-wrapper > div {
    flex-basis: 23%;
    border-radius: 10px;
    background-color: gray;
    padding: 20px;
}

.property-block-wrapper > div > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.property-block-wrapper > div > div span {
    display: inline-block;
    background-color: #0b65fc;
    color: white;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
}

.property-block-wrapper > div > div label {
    margin: 20px 0;
    font-weight: bold;
    display: block;
    flex-grow: 1;
}

.property-block-wrapper > div p {
    font-size: 14px;
}

.main-carousel {
    height: 100%;
}

.carousel-cell.video-element {
    width: 100%;
    height: 100%;
    position: absolute;
}

.carousel-cell.video-element video {
    position: absolute;
    width: 100%;
    height: 100%;
}

@media (max-width: 960px) {
    .property-block-wrapper > div {
        flex-basis: 30%;
        padding: 10px;
    }
}

@media (max-width: 600px) {
    .property-block-wrapper > div {
        flex-basis: 45%;
        padding: 10px;
    }
}

@media (max-width: 450px) {
    .property-block-wrapper > div {
        flex-basis: 100%;
        padding: 10px;
    }
}

