.propertyItem {
    width: calc(50% - 18px);
    height: 200px;
    display: inline-block;
    background-color: transparent;
    position: relative;
    padding: 9px;
}

.propertyItem__goto {
    object-fit: contain;
    max-width: 40px;
    max-height: 40px;
    position: absolute;
    top: 14px;
    left: 14px;
    cursor: pointer;
}

.propertyItem__image {
    object-fit: cover;
    object-position: center;
    width: 50%;
    height: 100%;
    display: inline-block;
    vertical-align: top;
    background-color: white;
}
.propertyItem__bulkselector{
    float:left;
    width:32px;
    height:32px;
    margin-right: 10px !important;
    display:inline-block;
}
.propertyItem__address {
    position: absolute;
    bottom: 9px;
    left: 9px;
    width: 50%;
    background-color: #2c80b8;
    height: 40px;
    line-height: 36px;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 800;
    color: white;
    whiteSpace: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 1rem;
}

.propertyItem__details {
    width: 50%;
    height: 100%;
    position: relative;
    display: inline-block;
    background-color: #303030;
    color: white;
    padding: 1rem;
    font-weight: 600;
    vertical-align: top;
}

.propertyItem__detail {
    width: 100%;
    text-align: left;
    /*line-height: 25.3px;*/
    /*font-size: .9rem;*/
    font-size: 1vw;
    text-transform: capitalize;
}

.propertyItem__detail b {
    color: #D8D8D8;
} 
@media screen and (max-width: 991px) {
    .propertyItem {
        width: calc(100% - 18px);
        padding: 9px 0;
    }

    .propertyItem__detail {
        line-height: 28px;
        font-size: 1.2rem;
    }

    .propertyItem__address {
        left: 0;
    }
}