.productlist {

    display: flex;
    flex-direction: row;
    margin-bottom: 60px!important;
}
.productlist-item {

    width: 20%;
    display: inline-block;
    display :flex;
    flex-direction: column;
    text-align: center;
}
.productlist-divider {

    margin-left: 15px;
    margin-right: 15px;
    width: 1px;
    background-color:#efefef;
    display: flex;
    flex-direction: column;
}
.productlist .productlist-divider:last-child {

    display: none;
}

.productlist-item-header {

    display: inline-block;
    color:#fff;
    padding: 5px 10px 5px 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}
.productlist-item-image {

    margin-top: 10px;
    margin-bottom: 10px;
    min-height: 100px;
}
.productlist-item-image img {

    max-height: 80px;
    max-width: 140px;

}
.productlist-item-name {

    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    margin-bottom: 5px;
    max-height: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}
.productlist-price {

    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    max-width: 250px;
}
.productlist-price:hover {

    text-decoration: none;
}
.productlist-price-logo {

    text-align: center;
    width: 50%;
    padding: 3px;
    border: 1px solid #e5e5e5;
    border-right: 0;
}
.productlist-price-text {

    text-align: center;
    width: 50%;
    background-color:#229847;
    color:#fff;
    padding: 3px;
}
.productlist-item-rating {

    margin-bottom: 20px;
}

.productlist-color-1 { background-color:#38bdd6; }
.productlist-color-2 { background-color:#ff7283; }
.productlist-color-3 { background-color:#e0a855; }
.productlist-color-4 { background-color:#749fdd; }
.productlist-color-5 { background-color:#949494; }

.productlist-font-color-1 { color:#38bdd6; }
.productlist-font-color-2 { color:#ff7283; }
.productlist-font-color-3 { color:#e0a855; }
.productlist-font-color-4 { color:#749fdd; }
.productlist-font-color-5 { color:#949494; }

.number-one, .number-two, .number-three { position: relative; }
.number-one:before, .number-two:before, .number-three:before {

    content: '';
    position: absolute;
    left: -9px;
    top: -9px;
    width: 10px;
    height: 10px;
    line-height: 10px;
    padding: 5px;
    text-align: center;
    border-radius: 30px;
    color:#fff;
    font-weight: 600;
    font-size: 12px;
}
.number-one:before { content: '1'; background-color:#C9B037; }
.number-two:before { content: '2'; background-color:#B4B4B4;  }
.number-three:before { content: '3'; background-color:#AD8A56; }


@media screen and ( max-width: 728px ) {


    .productlist {

        display: flex;
        flex-direction: column;
        margin-bottom: 60px!important;

    }

    .productlist-item {

        width: 80%;
        margin: 0 auto;
        margin-bottom: 40px;
        box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 15px;
        background: rgb(255, 255, 255);
        padding: 20px;
    }

    .productlist-price {

        margin: 0 auto;
        max-width: 250px;
        margin-bottom: 10px;
    }

    .productlist-item-header {

        width: calc( 100% - 20px );
        margin: 0 auto;

    }
    .info-header {

        font-size: 20px;
    }
}