/* listing view */

.listing-view {
    width: 100%;
    padding-top: 14px;
    margin-bottom: 45px;
}

.listing-view .listing-items {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.listing-view .listing-item {
    width: 100%;
}

.listing-view .listing-item .listing-item-inner {
    width: 100%;
    display: flex;
    align-items: center;
}

.listing-view .listing-item:not(:last-child) {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dbdbdb;
}

.listing-view .listing-item-img {
    width: 110px;
}

.listing-view .listing-item-content {
    width: calc(100% - 110px);
    padding-left: 40px;
}

/* responsive */

@media only screen and (max-width: 480px) {
    .listing-view {
        width: 100%;
        margin-bottom: 40px;
        padding-top: 30px;
    }

    .listing-view .listing-item .listing-item-inner {
        flex-direction: column;
    }

    .listing-view .listing-item-content {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
}
