.mw_shop_cat {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	margin-top: 15px;
}

.mw_shop_cat h2 {
	text-align: center;
	margin-top: -17px;
	padding: 0 15px;
	font-size: 24px;
}

.mw_shop_cat_item {
	width: 23%;
	margin: 1%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.mw_shop_cat .color-variations-list {
	position: absolute;
}

.mw_shop_cat .color-variations-list li {
	width: 20px;
	height: 20px;
	margin-bottom: 10px;
	border-radius: 100%
}

.mw_shop_cat .most-disounted-price {
    position: absolute;
    left: 20px;
    top: -20px;
    background-color: rgb(0, 68, 255);
    color: #ffffff;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
	font-size: 12px;
	font-weight: 600;
}

.mw_shop_cat_item_off_over {
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 50px;
	background-color: #000;
	color: #fff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9;
}

.mw_shop_cat_item_pic {
	position: relative;
}

.mw_shop_cat_item h3 {
	font-size: 19px;
	font-weight: 400;
	margin-top: 20px;
	line-height: 1.7;
}

.mw_shop_cat_item_data_regular_price {
	margin-left: 10px;
	text-decoration: line-through;
}

.mw_shop_cat_title_box {
	display: flex;
	align-items: center;
	width: 100%;
}

.mw_shop_cat_title_box b {
	background-color: #ddd;
	height: 1px;
	display: flex;
	flex: 1;
}

.mw_shop_cat_item_price .price,
.mw_shop_cat_item_price .price ins {
	color: #01b369;
}

.mw_shop_cat_item_price .price del {
	color: #cdcdcd;
	margin: 0 7px;
	opacity: 0.7;
}

.mw_shop_cat_item.p-item {
	text-align: center;
}

.mw_shop_cat_item img {
	width: 100%;
	height: 260px;
	border-radius: 7px;
	object-fit: cover;
}

.mw_shop_cat_item .item-buttons {
	width: 100%;
	text-align: center;
}

.mw_shop_cat_item .add-to-cart-btn {
	display: inline-block;
	color: #505050;
	background-color: #fff;
	border: 1px solid #7e7e7e;
	border-radius: 50px;
	padding: 7px 15px;
	margin: 10px 0;
	transition: ease .12s;
}

@media only screen and (max-width:600px) {
	.mw_shop_cat .mw_shop_cat_item {
		width: calc(100% - 2%);
		text-align: center;
	}
}

@media screen and (max-width:800px) {
	.mw_shop_cat .mw_shop_cat_item {
		width: calc(50% - 2%);
	}
}