@charset "utf-8";
/* CSS Document catalog */
/* full version */
.catalog-full {
	flex-direction: row;
	align-items: flex-start;
	margin-bottom: 50px;
	margin-top: 15px;
}
.catalog-product {
	width: calc(100% - 390px);
	flex-direction: row;
	flex-wrap: wrap;
}
/***product item***/
.product-item-container {
	padding: 30px 0px;
}
.product-item {
	width: 25%;
	flex-direction: column;
	align-items: center;
	padding: 10px;
	border: 1px solid rgba(55, 27, 86, 0.1);
	margin-left: -1px;
	margin-bottom: -1px;
}
.product-item-img {
	align-items: center;
	justify-content: center;
	background: #F4F4F4;
	height: auto;
	margin-bottom: 20px;
	position:relative;
}
.product-item-img img {
	width: 100%;
}
.product-item-count {
	font-size: 14px;
	text-transform: uppercase;
	color: #C185B2;
}
.product-item-name {
	color: #42303E;
	font-size: 20px;
}
.product-item .cart-plus {
	width: 80%;
	margin-top: 20px;
	margin-bottom: 10px;
}
.product-item-cekout {
	width: 100%;
	border: 1px solid #C185B2;
	padding: 0px 4px;
	padding-left: 10px;
	height: 48px;
	border-radius: 24px;
	justify-content: space-between;
	align-items: center;
}
.product-item-cart-button {
	height: 40px;
	width: 40px;
	background: #C185B2 url(../icons/shopping-bag.svg) center center no-repeat;
	background-size: 44%;
	border-radius: 20px;
}
.product-item-price span {
	font-size: 15px;
	flex-direction: row;
	align-items: center;
}
.product-item-price .original-item-price {
	text-decoration: line-through;
	opacity: 0.6;
	margin-left: 4px;
}
.product-item-price span:after {
	content: '';
	display: block;
	background: url(../icons/ruble.svg) center center no-repeat;
	background-size: contain;
	width: 15px;
	height: 12px;
	margin-top: -2px;
}
.product-item-price {
	color: rgba(66, 48, 62, 1);
	padding-top: 2px;
}
.slid {
        width: 70px;
        height: 25px;
		bottom: 5px;
		position:absolute;
}
.slid img { width:100%;}

/***end product item***/
@media (max-width: 1500px) {
.product-item {
	width: 33.3%;
}
.product-item-img {
	height:auto!important;
}
}
@media (max-width: 765px) {
	    .breadcrumb {
        margin-top: 60px;
        margin-bottom: 6px;
    }
.catalog-product {
    width:100%;
}
.product-item {
	width: 50%;
}
.product-item:nth-child(3n+3) {
    width: 100%;
}
.product-item-img {
	height:auto !important;
}
.product-item-img img {
    width:100% !important;
}
.product-item:nth-child(3n+3) .product-item-img {
    height: auto !important;
}
.product-item:nth-child(3n+3) .product-item-img img {
    width: 100% !important;
}
.product-item:nth-child(3n+3) .product-item-cart-button:before {
        content: 'ДОБАВИТЬ В КОРЗИНУ';
        position: absolute;
        right: 0px;
        font-size: 11px;
        width: 159px;
        top: 5px;
        color: #C185B2;
    }
.product-item-price .original-item-price {
    margin-left: 2px;
}
.product-item-price {
    padding-left: 8px;
}
.product-item-price span {
        font-size: 11px;
    }
.product-item-cart-button {
        height: 25px;
        width: 25px;
		position:relative;
    }
	.product-item-cekout {
        height: 31px;
		padding: 0px 2px;
    }
.product-item .cart-plus {
        width: 90%;
        margin-top: 10px;
    }
    .product-item-price span:after {
        width: 11px;
        height: 8px;
    }
    .product-item-count {
        font-size: 9px;
    }
	.product-item-name {
        font-size: 14px;
    }					
}