.ip-results-feed {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.ip-results-feed-item {
    width: calc(100% / 3);
    padding: 15px;
}

.ip-results-feed-item a {
    display: block;
    position: relative;
    box-shadow: 0 0 5px 3px rgba(255,255,255,0.3);
}

.ip-results-feed-item-text {
    background: #fff;
    color: #000;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 100;
}

.ip-results-feed-item-photo {
    position: relative;
}

.ip-results-feed-item-photo-inner {
    position: relative;
    overflow: hidden;
}

.ip-results-feed-item-photo-inner canvas {
    display: block;
    width: 100%;
    height: auto;
}

.ip-results-feed-item-photo-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
}

.ip-results-feed-item a:hover .ip-results-feed-item-photo-inner img{
    transform: scale(1.15);
}

.ip-results-feed-item-photo-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

span.ip-results-feed-item-price {
    font-size: 20px;
    display: none;
}

.ip-results-feed-item-status {
    position: absolute;
    top: 10px;
    right: 0;
    background: rgba(135, 106, 37, 0.8);
    color: #fff;
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ip-results-feed-item-address {
    position: absolute;
    bottom: 10px;
    left: 0;
    background: rgba(255,255,255,0.7);
    padding: 5px 15px;
    line-height: 1.6;
}

.ip-results-feed-item-address strong {
    font-size: 20px;
    display: block;
    font-weight: 400 !important;
    color: #000;
}

.ip-results-feed-item-address span {
    font-weight: 100;
    color: #000;
}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */

@media only screen and (max-width: 991px) {
    .ip-results-feed-item {
        width: 50%;
        max-width: 400px;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */

@media only screen and (max-width: 767px) {
    .ip-results-feed-item {
        width: 100%;
    }
}