.products-list:before,
.products-list:after{
    content: '';
    display: table;

}
.products-list:after{
    clear:both
}
.product-item{
    margin: 0 10px 10px 5px;
    width: 100%;
		max-width: 192px;
    min-height: 340px;
    display: block;
    float: left;
    text-align: center;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(27,125,140,.65);
    transition:box-shadow .2s;
    position: relative;
}
.no-prices .product-item{
    height: 300px;
}
.product-item:hover{
    box-shadow: 0 0 5px rgba(27,125,140,.85);
}
.product-item a{
    text-decoration: none;
}
.product-item a > span{
    display: block;
}
.product-item__name{
    color: #0e0200;
    text-transform: uppercase;
    font-size: 12px;
}
.product-item__article{
    padding:10px 0 5px;
    font-size: 12px;
}
.product-item__image{
    height: 145px;
    line-height: 145px;
}
.product-item__price{
    text-align: center;
    width: 100%;
    display: block;
    padding:10px 0;
}
.product-item__price span{
    font-size: 20px;
    color: #1B7D8C;
}
.product-item__price span.old-price{
    font-size: 16px;
    display: block;
    text-decoration: line-through;
    color: #454545;
}
.product-item__image img{
    vertical-align: middle;
}

.quantity-wrapper{
    overflow: hidden;
    border:1px solid #cacaca;
    width: 80px;
    margin: 0 auto;
}
.quantity-wrapper span{
    display: block;
    background: #ebebeb;
    height: 22px;
    line-height: 22px;
    width: 19px;
    cursor: pointer;
    color: #4c4e4e;
    font-size: 18px;
    float: left;
    text-align: center;
}
.quantity-wrapper input{
    color: #333;
    display: block;
    height: 22px;
    background: #fff;
    float: left;
    width: 40px;
    text-align: center;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid #cacaca;
    border-right: 1px solid #cacaca;
    padding: 0;
    box-shadow: none;
}
.detail-info, .add2cart{
    border: 1px solid #cacaca;
    cursor: pointer;
    display: inline-block;
    background: #00A5B4;
    color: #fff;
    box-sizing: border-box;
    text-align: center;
    margin: 5px auto 0;
    padding:6px 14px;
    border-radius:3px;
}
.detail-info{
    margin-top: 15px;
}
.nav_pagination,.products-list{
	margin-top: 1rem !important;
}
.products-list .col-xl-3.col-md-4.col-6{
	padding: 0 10px;
}
@media screen and (max-width: 767px){
    .product-item{
				width: 47%;
				font-size: 11px;
        margin: 0 auto 10px;
        float: none;
    }
		.product-item__name{
			word-break:break-all
		}
}
.free-delivery{
    margin-bottom: 20px;
}