.product-wr {
	display: flex;
	flex-direction: row;
}

.product-grid {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.product-grid-wr {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

/*
.product-grid-wr a {
text-decoration: none;
font-weight: normal;
}
*/
.product-grid__item {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 276px;
	margin: 15px 8px 15px 8px;
	border-radius: 4px;
	box-shadow: 0 0 4px #b4b8d6;
	cursor: pointer;
	transition: .3s;
	color: #383838;
	background-color: #f0f7f7;
	font-size: 14px;
	overflow: hidden;
}

.product-grid__item:hover {
	box-shadow: 0 0 12px #b4b8d6;
}

.product-grid__item:hover>.item__pic img {
	transform: scale(1.1);
}

.item__pic {
	height: 129px;
	transition: .4s;
	overflow: hidden;
	position: relative;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.item__pic img {
	transition: .4s;
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.item__descr {
	padding: 12px 12px 12px 12px;
}

.item__descr_title {
	margin-bottom: 5px;
	max-width: 250px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.item__descr_value {
	display: flex;
	width: 100%;
	align-items: baseline;
	justify-content: center;
}

.item__descr_grid {
	justify-content: flex-start;
}

.item__descr_price {
	display: flex;
	align-items: baseline;
	color: #f60;
	font-size: 36px;
	font-family: 'montserrat-bold';
	justify-content: flex-start;
}

.item__descr_pack {
	padding-left: 6px;
}

.item__descr_price span {
	font-size: 24px;
	font-family: sans-serif;
	font-weight: 600;
	padding-left: 4px;
}

.item__descr_price .item__descr_pack {
	font-family: montserrat-regular, sans-serif;
	font-weight: normal;
	color: #383838;
	font-size: 14px;
	padding-left: 5px;
}

.item__descr_seller,
.item__descr_addr {
	max-width: 250px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 5px;
	font-size: 12px;
}

.item__descr_addr {
	margin-top: 5px;
}

.product-grid__sorting {
	display: flex;
	flex-direction: row;
	width: 100%;
	font-size: 14px;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.product-grid__sorting-item {
	padding: 5px 10px 0px 10px;
	cursor: pointer;
	transition: .3s;
}

.product-grid__sorting-item:first-child {
	font-weight: 600;
}

.product-grid__sorting-item:hover {
	color: #ff8838;
	font-weight: 600;
}

.breadcrumbs-product {
	position: relative;
	color: #383838;
	margin-top: 16px;
	left: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	padding-top: 4px;
}

.breadcrumbs-product a {
	color: #383838;
	text-decoration: none;
	text-shadow: none;
	font-family: montserrat-regular, sans-serif;
	font-weight: normal;
	transition: .2s;
}

.breadcrumbs-product a:hover {
	color: #f60;
	font-weight: 600;
}

.breadcrumbs-page.breadcrumbs-page-2 {
	color: #f60;
	text-shadow: none;
	font-weight: 600;
	padding-top: 0;
}

.breadcrumbs a .icon-arrow-down-3:before {
	content: "\e903";
	font-size: 9px;
	top: 2px;
}

.search-main-wr {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.search-main {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	padding: 15px 0 20px 0;
	margin-bottom: 10px;
}

.search-main__btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	color: #fff;
	align-items: center;
	width: 100px;
	cursor: pointer;
	padding: 10px 0;
	height: 42px;
	font-weight: 500;
	font-size: 16px;
	border-bottom-right-radius: 1px;
	border-top-right-radius: 1px;
	background-color: #f60;
	transition: .2s;
	font-family: montserrat-medium, sans-serif;
}

.search-main__inner {
	position: relative;
	display: flex;
	flex-direction: row;
	height: 46px;
	background-color: #fff;
	width: 75%;
	border-radius: 4px;
	color: #d3d3d3;
	border: 2px solid #f60;
}


.search-main__inner input {
	display: flex;
	font-size: 16px;
	border-radius: 4px;
	flex-grow: 1;
	font-family: "Montserrat";
	padding-left: 40px
}


.search-main__inner .icon-search:before {
	content: "\e929";
	font-size: 26px;
	color: #f60;
	position: absolute;
	width: 26px;
	top: 8px;
	left: 9px;
}

.category-title {
	margin-top: 10px;
}

input::placeholder {
	font-family: "Montserrat";
	color: #bdbdbd;
}

input::-webkit-input-placeholder {
	font-family: "Montserrat";
	color: #bdbdbd;
}

input:-moz-placeholder {
	font-family: "Montserrat";
	color: #bdbdbd;
}


@media (max-width: 800px) {
	.search-main__inner {
		width: 100%;
		margin: 0 20px;
	}

	.search-main-wr {
		bottom: 10px;

	}
}

@media (max-width: 650px) {

	.product-grid__sorting-item {
		font-size: 12px;
	}

	.product-grid__sorting {
		margin-top: 0px;
	}

	.product-grid__sorting-item {
		padding: 3px 10px;
	}

	.breadcrumbs-product,
	.breadcrumbs-product a {
		font-size: 12px;
	}

	.breadcrumbs-product-mt40 {
		margin-top: 40px;
	}

	.breadcrumbs-page.breadcrumbs-page-2 {
		margin-left: 7px;
	}

	.product-wr {
		margin-top: 10px;
	}

	.breadcrumbs a .icon-arrow-down-3:before {
		content: "\e903";
		font-size: 8px;
		right: -5px;
	}

	.breadcrumbs span {
		margin-left: 7px;
	}

	.search-main__inner {
		margin: 0 10px;
	}
}

@media (max-width: 450px) {
	.breadcrumbs-product li {
		padding-top: 4px;
	}

	.search-main__btn {
		width: 80px;
		font-size: 14px;
		height: 42px;
	}

	.search-main__inner {
		height: 42px;
	}

	.search-main__inner .icon-search::before {
		content: "\e929";
		margin-top: 2px;
	}
}


.shop__info-btn {
	flex-direction: column;
	width: 100%;
	margin-left: 0;
	margin-top: 0;
	padding-bottom: 15px;
}

.shop__info-btn p {
	margin-bottom: 15px;
	font-size: 14px;
	margin: 20px 0 10px 0;
}

.price-wr {
	width: 100%;
	padding: 0 20px 0 40px;
}

.advt__paragraph-wr {
	justify-content: space-between;
}

.shop__info-wr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	padding: 0;
	margin-left: 20px;
}

.shop__info-table {
	background-color: #f0f7f7;
	width: auto;
	padding: 35px 35px 30px 35px;
	margin-top: 0px;
	box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
	border-radius: 4px;
	min-width: 300px;
}

.shop__info-table li {
	width: 100%;
	display: flex;
	flex-direction: column;
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 10px 0;
	padding: 0;
	text-align: center;
}

.shop__info-item-descr {
	font-size: 14px;
	line-height: 20px;
	color: #383838;
}

.shop__info-item-subtitle {
	font-size: 12px;
	padding-bottom: 2px;
}

.shop__info-item-descr a {
	font-family: montserrat-medium, sans-serif;
	text-decoration: underline;
	transition: color .2s;
}

.shop__info-item-descr a:hover {
	color: #f60;
}

.shop__info-title {
	text-align: center;
	font-size: 18px;
	text-transform: uppercase;
	line-height: 22px;
	font-family: montserrat-bold, sans-serif;
	color: #008c8c;
}

.tabs__caption {
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 680px;
	scroll-snap-type: x mandatory;
	overflow-x: auto;
	padding: 0 15px;
	margin: 0 auto;
	margin-bottom: 5px;
	margin-top: 0px;
}

.tabs__caption li:hover,
.tabs__caption li.active:hover {
	background: none;
}

.tabs__caption li h3 {
	font-family: montserrat-medium, sans-serif;
	font-size: 18px;
	color: #383838;
	font-weight: normal;
}

.tabs__caption li.active h3 {
	color: #f60;
}

.tabs__caption li h3 {
	transition: color .2s
}

.tabs__caption li:hover h3 {
	color: #f60;
}

.tabs__caption li,
.tabs__caption li.active {
	display: flex;
	height: auto;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	background: none;
	opacity: 1;
	width: auto;
	scroll-snap-align: start;
	padding: 5px 30px 15px 15px;
}

.tabs__scroll-item,
.tabs__scroll-item.active {
	background: none;
	display: flex;
	justify-content: center;
	align-items: center;
	scroll-snap-align: start;
}

.tabs__product {
	font-size: 14px;
	line-height: 17px;
}

.tabs__product p {
	margin-bottom: 10px;
	line-height: 17px;
}

.tabs__product p a {
	font-weight: 700;
	text-decoration: underline;
	transition: color .2s;
}

.tabs__product p span {
	font-weight: 700;
}

.tabs__product p a:hover {
	color: #f60;
}

.cert-wr {
	display: flex;
	margin-top: 15px;
	scroll-snap-type: x mandatory;
	overflow-x: auto;
}

.cert__item {
	padding: 5px;
}

.cert__item img {
	height: 300px;
	box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
	width: 225px;
	margin-right: 15px;
}

.feature-list {
	list-style: none;
	line-height: 16px;
	padding: 4px 0;
	font-weight: 600;
	font-size: 14px;
}

.feature-list span {
	font-size: 15px;
	color: #383838;
	font-weight: normal;
}

@media (max-width: 1100px) {
	.product-margin {
		margin-top: 80px;
	}
}

@media (max-width: 900px) {
	.shop__info-wr {
		order: -1;
		margin-left: 0;
		width: 100%;
		padding: 0 10px;
	}

	.shop__info-table {
		width: 100%;
		max-width: 500px;
		padding: 30px;
		margin-top: 30px;
		margin-bottom: 15px;
	}

	.shop__info-table li {
		align-items: center;
	}

	.shop__info-btn {
		padding-bottom: 40px;
	}

	.shop__info-item-descr {
		text-align: center;
	}

	.advt__price-wr {
		margin-top: 10px;
	}
}

@media (max-width: 800px) {
	.tabs__caption {
		flex-wrap: nowrap;
		width: 100%;
		scroll-snap-type: x mandatory;
		scroll-snap-align: start;
		overflow-x: auto;
		margin-top: 10px;
	}

}

@media (max-width: 650px) {
	.tabs__caption {
		margin: 0;
		margin-bottom: 5px;
		margin-top: 0px;
	}
}

@media (max-width: 450px) {
	.advt__info-price {
		margin-top: 15px;
		padding: 0 15px;
	}

	.skills li {
		padding: 10px 12px;
		margin: 5px;
	}

	.tabs__caption li h3 {
		font-size: 16px;
	}

	.tabs>div {
		display: none;
		padding: 10px 5px;
	}

}