/* BODY */
.filter,
.house-listing {
    padding: 1rem;
    margin: 0 0 .5rem 0;
    position: relative;
}
.house-listing {
    background-color: rgba(248, 248, 255, 0.7);
    border: 1px solid ghostwhite;
    border-radius: 3px;
    text-shadow: 2px 2px 5px Gainsboro;
}

.real-price a:hover {
    color: #d1966a;
}

.promote {
    color: white;
    background-color: red;
    padding: .2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: fit-content;
    border-radius: 0 0 3px 3px;
    text-shadow: none;
}
.views {
    font-size: 1.5rem;
    position: absolute;
    bottom: 0;
    right: 0;
    width: fit-content;
}
.special {
    color: white;
    background-color: red;
    padding: .2rem;
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
    border-radius: 0 0 3px 3px;
    text-shadow: none;
}
.house-listing > .house-thumb {
    justify-content: center;
}
.house-listing > div.col-3 {
    padding: 0;
}
.house-listing > .house-thumb > img {
    width: 100%;
    object-fit: cover;
}
.house-listing > img.bargain {
    transform: rotate(10deg);
    position: absolute;
    right: 25%;
    top: 45%;
    max-width: 15%;
}
.house-listing > .house-detail > p.title,
.house-listing > .house-detail > p.title > i {
    font-size: 2.5rem;
}
.house-listing > .house-detail > div.highlight > span {
    background-color: antiquewhite;
    padding: 5px;
    border-radius: 3px;
}
.house-listing > .house-price {
    text-align: right;
}
.house-listing > .house-price > div.house-price-container > p.total-price {
    font-size: 2.5rem;
    font-weight: bold;
}
.house-listing > .house-price > div.house-price-container > p.total-price > span.number {
    font-size: 3rem;
    color: red;
}

/* RESPONSIVE WINDOW */
@media(max-width: 1440px) {
    
}

@media(max-width: 1024px) {
    
}

@media(max-width:992px) {
    
}

@media(max-width:768px) {
    
}

@media(max-width:576px) {
    
}

@media(max-width:414px) {
    .house-listing > img.bargain {
        max-width: 25%;
        top: 30%;
    }
}

@media(max-width:375px) {
    
}