.product-name {
	font-size: 24px; 
	margin: 8px 0 20px; 
	font-weight: normal; 
	text-align:left;
}

.product{
	display: flex;
	margin-bottom: 15px;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.imgs {
	max-width: 400px;
	width: 34%;
}

.main-img {
	margin-bottom: 12px;
}

.main-img img {
	border-radius: 10px;
}

.thumbs {
	display: flex;
	gap: 8px;
}

.imgs .thumb {
	width: 80px;
	height: 80px;
}

.imgs .thumb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

/**/
.product-info-right {
	min-width: 266px;
	width: 26%;
}

.product-criteriongroups {
	font-size: 14px; line-height: 1.52;
	background: var(--black);
	color: #fff;
	font-weight: bold;
	padding: 20px;
	color: #f0f0f0;
	border-radius: 12px;
}

.product-criteriongroup {
	display: flex;
  justify-content: space-between;
}

.product-criterions {
	color: var(--white);
}

/**/
.price-status-call-text {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 3%;
}

.price-call,
.status-text {
	flex-grow: 1;
}

.price {
	margin: 20px 0;
	text-align: center;
	/* padding-left: 20px; */
}

.status, .get-price {
	margin: 20px 0 24px;
  text-align: center;
}

/* .price-status { */
	/* margin: 20px 0; */
	/* display: flex; */
	/* justify-content: space-between; */
	/* align-items: center; */
	/* padding: 0 20px; */
/* } */

.price {
	color: var(--red);
	font-size: 24px;
	font-weight: 700;
}

/* .text-call { */
	/* display: flex; */
	/* justify-content: space-between; */
/* } */

.svg-btn {
	color: #fff;
	font-weight: 700;
	vertical-align: middle;
	padding: 8px 0;
	border-radius: 8px;
	font-family: Arial;
	display: inline-flex;
	align-items: center;
	line-height: 1;
	position: relative;
	cursor: pointer;
}

.svg-btn:hover {
	color: #fff;
}

.svg-btn-icon {
	height: 24px;
}

.svg-btn svg {
	width: 24px;
	height: 24px;
}

.call,
.text {
	display: flex;
	width: 100%;
	justify-content: center;	
}

.call {
	background: var(--red);
}

.call.svg-btn svg {
	fill: none;
	margin: 0;
}

.call .svg-btn-icon  {
	margin-right: 6px;
}

.text {
	background: #800080;
}

.text.svg-btn svg {
	fill: #fff;
	margin: 0;
}

.text .svg-btn-icon  {
	margin-left: 6px;
}

.btn-call {
	position: relative;
	font-weight: 600;
}

.svg-btn-dropdown {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 100%;
	color: var(--black);
	border: 4px solid var(--red);
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	padding: 20px 10px;
	background: #fff;
	display: none;
	line-height: 28px;
	font-size: 14px;
}

/* .btn-call .svg-btn-text::after { */
	/* display: inline-block; */
	/* content: ''; */
	/* width: 0; */
	/* height: 0; */
	/* border-left: 5px solid transparent; */
	/* border-right: 5px solid transparent; */
	/* border-top: 5px solid currentColor; */
	/* margin-left: 6px; */
	/* position: relative; */
	/* top: -2px; */
/* } */

.hover .svg-btn-dropdown {
	display: block;
}

/**/
.all-products {
	background: var(--gray-light);
  padding: 20px;
  border-radius: 12px;
	width: 30%;
}

.all-products .title {
	margin-bottom: 16px;
	font-weight: 600;
	font-size: 17px;
}

.manufacturer-products {
	line-height: 1.3;
	border: 1px solid var(--silver);
	margin: 7px 0;
	border-radius: 10px;
	overflow: hidden;
}

.manufacturer-products .items {
	padding: 4px 12px 4px 24px;
	margin: 0;
	font-size: 15px;
	display: none;
	color: #333;
	font-weight: 500;
	background: #fdfdfd;
}

.manufacturer-products .items.active {
	display: block;
}

.manufacturer-products .items>li {
	margin: 12px 0;
}

.manufacturer-products .items>li::marker {
  color: var(--gray-text);
	content: '• ';
}

.manufacturer-products .manufacturer-name {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	background: var(--silver);
	padding: 8px 12px;
	font-weight: 600;
	color: #222;
}

.manufacturer-products.active .manufacturer-name {
	font-weight: 700;
}

.manufacturer-products .manufacturer-name::after {
	content: '+';
	display: inline-block;
	width: 12px;
  text-align: center;
}

.manufacturer-products.active .manufacturer-name::after {
	content: '-';
}

.manufacturer-product.active {
	font-weight: 700;
}

.manufacturer-product-types {
	margin: 0 0 0 10px;
	list-style-type: '- ';
}

.manufacturer-product-types li::marker {
	color: inherit;
}

.manufacturer-product {
	margin: 5px 0;
}

.manufacturer-products .items a {
	font-weight: normal;
}

@media(max-width:900px) {
	.imgs,
	.product-info-right {
		width: 48%;
	}
	
	.all-products {
		width: 100%;
		margin-top: 10px;
	}
}

@media(max-width:600px) {
	.imgs {
		width: 100%;
		margin: 0 auto;
	}
	
	.imgs .thumbs {
		justify-content: center;
	}
	
	.product-info-right {
		width: 100%;
	}
	
	.all-products {
		width: 100%;
	}
}

/*
.buy-button{width: 90px; height: 30px; background: url('bb.png') 0 0 no-repeat; border: none; cursor:pointer;}
.buy-button.ua{background:url('bb_ua.png') 0 0 no-repeat;}
.buy-button:hover{background-position: 0 100%;}


.manufacturer-products{margin-bottom: 10px;}
.manufacturer-name{cursor:pointer; margin-bottom: 5px; font-weight: bold;}
.products{list-style:none; margin-left: 15px;}
.products a {color:#010101; display: block;}
.manufacturer-product-types{list-style: none; margin: 0 0 10px 15px;}

.params{color: #356be6; text-align:center; margin-bottom: 10px;}

#price-buy{margin-top: 18px;}
#price{font-size: 24px; line-height: 1; font-weight: bold; color: #26a526;}
.uah{font-size: 0.7em;}

.rating{margin: 18px 0 0;}

.star{display:inline-block; width: 26px; height: 24px; background:url('bstar.png') 0 0 no-repeat; margin-right: 1px;}
.star-e{display:inline-block; width: 26px; height: 24px; background:url('bstar.png') 0 100% no-repeat; margin-right: 1px;}

#e-stars .star-e {cursor: pointer;}
.star-e-hover{background-position: 0 0;}

.product-content{margin-top: 15px;}

.tab-title-content{display:inline-block; padding-top: 15px;}
.tab-content{padding-top: 15px;}

.prod-img{width: 212px; height: 180px; float: left; margin: 0 0 27px 27px; border: 1px solid #f0f2f9;  -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.3); -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.3); -o-box-shadow: 1px 1px 3px rgba(0,0,0,0.3); -khtml-box-shadow: 1px 1px 3px rgba(0,0,0,0.3); box-shadow: 1px 1px 3px rgba(0,0,0,0.3);}
.prod-img:hover{border: 1px solid #ccc;}
.prod-img-name{text-align:center; color:#999; }

.about{margin-bottom: 15px; padding-left: 12px;}

.old_price {width:94px; height:20px; padding-top: 7px; background: url('old_price.png') 0 0 no-repeat; font-size: 15px; color: #dd4b39; font-weight: bold; text-align: center; position: absolute; margin: -30px 0 0 -101px;}

.tab-title-t1{font-size: 16px;}

.product-top{position: absolute; right: 330px; top: 55px;}
.product-new{position: absolute; top: 55px; left: 8px;}

.product-action{color: red; margin-top: 15px;}

#send-comment{display: none; font-size: 14px; font-weight: bold; padding-left: 12px; margin-bottom: 12px;}
#send-comment .question-input{margin-bottom: 0;}
#send{width: 90px; height: 30px; border: none; background:url('send.png') 0 0 no-repeat; cursor:pointer; margin-top: 10px;}
#send.ua{background:url('send_ua.png') 0 0 no-repeat;}
#send:hover{background-position: 0 100%;}
.form-field{margin-bottom: 12px;}
#form-rate{height: 30px; width: 100%;}
.label{width: 180px; float: left;}
.l-p{padding-top: 8px;}
#e-stars{width: 170px; float: left; margin-right: 25px;}
#rate-word{float: left;}
.frp{padding-top: 3px;}

#comments_{padding-left: 12px;}
.comment{margin-bottom: 15px; padding-bottom: 18px; border-bottom: 1px solid #ccc;}
.comment-rate{float: right;}
.comment-name{color: #c25b5b; font-weight: bold; margin-bottom: 4px; height: 19px; padding-top: 3px;}
.comment-date{font-size: 11px; color: #999; font-weight: normal;}
.comment-comment{font-size: 14px; line-height: 18px;}
.comments-plus{margin-top: 8px;}
.comments-minus{margin-top: 8px;}

.comment-likes{margin-top: 15px; color: #777;}
.likes, .unlikes{display: inline-block;}
.likes{margin: 0 12px;}
.like, .unlike{display: inline-block; width: 17px; height: 18px; position: relative;}
.like{background: url('like.png') 0 100% no-repeat; top: 2px;}
.unlike{background: url('like.png') 100% 100% no-repeat; top: 6px;}
a.like:hover{background-position: 0 0;}
a.unlike:hover{background-position: 100% 0;}

.pagination{text-align: center; margin-bottom: 20px; font-size: 16px; font-weight: normal;}
.pagination-item {padding: 0 10px;}
.pagination a{color:#999;}
.pagination a:hover{color:blue;}
.pagination span {color:blue; font-size:24px;}
.pagination-ht {font-size: 16px;}
.pagination-ht:hover {text-decoration: none;}

.votes {color: #7a7a7a; font-style: italic; display: inline-block; position: relative; top: -5px; left: 3px;}
.man{display: inline-block; width: 13px; height: 14px; background: url('man.png') 0 0 no-repeat; position: relative; top: 2px;}
.rate_w{font-size: 20px; font-style: italic; font-weight: normal; color: #7a7a7a; display: inline-block; position: relative; top: -2px; margin-right: 5px;}

.products_sameName{border-bottom: 1px solid #999; margin-top: 7px;}
.products_sameName .tab-title-t1{margin-bottom: 7px;}
.products_sameName-table-title{font-weight: bold; border-bottom: 1px solid #999; border-top: 1px solid #999;}
.product_sameName{display: block; color: #222;}
.product_sameName:hover{background: pink;}
.p_sN-t-item{display: inline-block; width: 120px; text-align: center;}
.colorline{background: #ccc;}

#product-to-order{color: #26a526; font-weight: bold; font-size: 14px;}

@media only screen and (max-width:980px) { 
	aside, .menu {
		float: none;
		width: auto;
	}
	
	#content {
		float: none;
		max-width: 100%;
		margin: 0 auto;
	}
}

@media only screen and (max-width:760px) { 
	.product-info-right, .product-info-left {
		float: none;
		margin-bottom: 15px;
		max-width: 400px;
		width: 100%;
	}
	
	.product-name {
		margin: 25px 0 15px;
	}
}
*/