/*Blank CSS*/
div#imovel-items {
    display: grid;
}

div#imovel-items label {
    display: flex;
    margin: 4px 0px;
    width: fit-content;
    flex-direction: row;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;    
    font-weight: normal;
}

div#imovel-items 
input[type="checkbox"], 
input[type="radio"] {
    align-self: flex-start;
    display: block;
    min-width: 24px;
    width: 24px;
    max-width: 24px;
    min-height: 24px;
    height: 24px;
    max-height: 24px;  
}

div#imovel-items ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 50%);
}

div#imovel-items ul li {
    display: flex;
    margin: 12px 0px;
    width: fit-content;
    flex-direction: row;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;    
    font-weight: bold;
}

div#imovel-items ul li i {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

div#imovel-details div.content {
    font-size: 16px;
    text-align: center;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 12px;
    padding: 10px;
    font-weight: bold;
    height: 100px;
    padding-top: 25px;
}

.img-responsive {
    background-color: #1d293e;
    background: url(https://static.olx.com.br/cd/vi/images/ic_no-photo-placeholder.png);
    background-repeat: no-repeat;
    background-position: center;
    min-height: 274px;
}