@charset "UTF-8";
.similar {
		overflow: hidden;
		margin-top: 32px;
		margin-bottom: -200px;
		padding-bottom: 200px;
		pointer-events: none;
}
.similar .content-title {
		margin-bottom: 32px;
}
.similar .container {
		pointer-events: all;
}
.product-price {
		align-self: center;
		grid-area: pr;
		padding-left: 25px;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 10px 20px;
		font-family: var(--fontg);
		font-weight: bold;
		color: var(--grey600);
}
.product-price > * {
		flex: 0 0 auto;
}
.product-price > *:not(strong):first-child {
		width: 100%;
}
.product-price .note {
		flex: 0 0 auto;
		width: 100%;
		display: flex;
		align-items: center;
		margin: -10px 0 0 0;
}
.product-price .note > * {
		flex: 0 0 auto;
		max-width: 100%;
		position: relative;
		background: rgba(228, 236, 247, 0.3);
		border-radius: 5px;
		font: 500 13px/24px var(--fontg);
		color: #7E8693;
		padding: 10px 31px 10px 45px;
		letter-spacing: 0.005em;
}
.product-price .note img {
		position: absolute;
		top: 50%;
		left: 12px;
		width: auto;
		height: auto;
		max-width: 18px;
		max-height: 18px;
		transform: translate3d(0, -50%, 0);
}
.product-price .txt {
		font-size: 12px;
		line-height: 16px;
		letter-spacing: 0.03em;
		text-transform: uppercase;
		width: 100%;
		margin-bottom: -5px;
}
.product-price strong {
		font-weight: bold;
		font-size: 24px;
		line-height: 24px;
		letter-spacing: -0.02em;
		color: var(--grey800);
		position: relative;
}
.product-price .no-price {
		position: relative;
		font-weight: 600;
		font-size: 18px;
		line-height: 24px;
		letter-spacing: -0.015em;
		color: var(--grey800);
		margin-top: 6px;
}
.product-price .no-price .status {
		top: 12px;
}
.product-price .status {
		position: absolute;
		top: 12px;
		left: -25px;
		transform: translate3d(0, -50%, 0);
		width: 10px;
		height: 10px;
}
.product-price del {
		text-decoration: line-through;
		font-weight: normal;
		font-size: 16px;
		line-height: 20px;
		letter-spacing: 0.01em;
		color: var(--darker);
}
.product-cheaper {
		grid-area: ch;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: flex-end;
		font-weight: 300;
		font-size: 13px;
		line-height: 22px;
		align-self: center;
		letter-spacing: -0.01em;
		color: var(--grey700);
		gap: 0 0.3em;
		text-align: right;
}
.product-cheaper > * {
		flex: 0 0 auto;
}
.product-buttons {
		grid-area: bt;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 15px;
}
.product-buttons .btn {
		flex: 1 1 auto;
		box-shadow: none;
		padding-left: 16px;
		padding-right: 16px;
}
.product-buttons .btn svg:not(:first-child) {
		display: none;
}
.product-buttons .btn-to-fav {
		flex: 0 0 auto;
		width: 84px;
		padding: 0;
}
@media only screen and (max-width: 767px) {
		.product-buttons .btn-to-fav svg {
				width: 28px;
				height: 28px;
		}
}
@media (pointer:fine) {
		.product-buttons .btn-to-fav:not(.active):hover svg {
				fill: var(--hover-dark);
		}
}
.product-buttons .btn-cm {order: 3;}
.product-buttons .for-tab {display: none;}
.btn-to-fav:not(.active) {
		color: var(--sec-dark);
		background: linear-gradient(to bottom, #FBFBFC 17.86%, #F3F7FC 112.69%);
		background-color: #FBFBFC;
		background-position: 50% 0;
		background-repeat: repeat-x;
		border: 0.5px solid rgba(0, 0, 0, 0.07);
		box-shadow: 0px 1px 0px #BDCADD, 0px 8px 12px rgba(20, 37, 63, 0.02);
}
.btn-to-fav:not(.active) svg {fill: var(--sec-dark);}
.product-info {
		grid-area: i1;
		margin: 0;
		padding: 0;
		flex: 0 0 auto;
		width: 100%;
		font-weight: 300;
		font-size: 14px;
		line-height: 25px;
		letter-spacing: -0.015em;
		color: var(--grey900);
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 20px 20px;
}
@media only screen and (max-width: 767px) {
		.product-info .hide-mob {
				display: none;
		}
}
.product-info li {
		flex: 0 0 auto;
		max-width: 100%;
		margin: 0;
		padding: 0 0 0 43px;
		position: relative;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 0 5px;
}
.product-info li:before {
		display: none;
}
.product-info .pic {
		width: 28px;
		height: 28px;
		position: absolute;
		top: -2px;
		left: 0;
}
.product-info .pic:before, .product-info .pic:after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-size: contain;
}
.product-info .pic:after {
		opacity: 0;
}
@media (pointer:fine) {
		.product-info a:hover .pic:before {
				opacity: 0;
		}
		.product-info a:hover .pic:after {
				opacity: 1;
		}
}
.product-info .pic.bg-bookmark:before {
		background-image: url(../img/icons/product/bookmark.svg);
}
.product-info .pic.bg-calendar:before {
		background-image: url(../img/icons/product/calendar.svg);
}
.product-info a .pic.bg-calendar:after {
		background-image: url(../img/icons/product/calendar-hover.svg);
}
.product-info .pic.bg-box:before {
		background-image: url(../img/icons/product/package.svg);
}
.product-info a .pic.bg-box:after {
		background-image: url(../img/icons/product/package-hover.svg);
}
.product-info .pic.bg-settings:before {
		background-image: url(../img/icons/product/settings.svg);
}
.product-info a .pic.bg-settings:after {
		background-image: url(../img/icons/product/settings-hover.svg);
}
.product-info .code {
		padding-left: 0;
		display: block;
		color: var(--grey600);
		letter-spacing: -0.02em;
}
.product-info strong {
		letter-spacing: -0.01em;
		font-weight: 600;
		color: var(--grey800);
}
.product-info .pic-help {
		margin-left: 11px;
}
.product-colors {
		display: flex;
		flex-direction: column;
		gap: 21px 0;
		padding: 0 4px;
		grid-area: co;
}
.product-colors-title {
		font-weight: 300;
		font-size: 14px;
		line-height: 24px;
		letter-spacing: -0.01em;
		color: var(--darker);
		margin: 0 0 16px 0;
}
.product-colors-title strong {
		font-weight: 600;
		letter-spacing: -0.02em;
		color: var(--grey900);
}
.product-colors .list1, .product-colors .list2 {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
}
.product-colors .list1 label, .product-colors .list2 label {
		flex: 0 0 auto;
		cursor: pointer;
		user-select: none;
		position: static;
}
.product-colors .list1 > *, .product-colors .list2 > * {
		flex: 0 0 auto;
}
.product-colors .list1 label input, .product-colors .list2 label input {
		position: absolute;
		transform: scale(0);
		opacity: 0;
		visibility: hidden;
}
.product-colors .list1 {
		margin: 18px 0 0 0;
		gap: 8px;
		position: relative;
}
.product-colors .list1 label {
		padding: 4px;
		margin: -4px;
}
.product-colors .list1:not(.open) .folded {
		display: none;
}
.product-colors .col:last-child .list1:last-child {
		margin-bottom: 7px;
}
.product-colors .list1 label > span:not(.popup) {
		display: block;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		border-style: solid;
		border-width: 1px;
		border-color: transparent;
		transition-property: box-shadow, margin;
		transition-duration: 0.2s;
		transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-size: calc(100% + 2px) auto;
}
.product-colors .list1 label input:checked ~ span:not(.popup), 
.product-colors .list1 .el_param_sku.selected span.r
{
	opacity: 0.8;
		box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--grey500);
}
.product-colors .list1 .more {
		cursor: pointer;
		user-select: none;
		width: 32px;
		height: 32px;
		text-align: center;
		line-height: 31px;
		color: var(--blue);
		text-decoration: none;
		transition-property: color, border, background;
		transition-duration: 0.2s;
		transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
		background: rgba(220, 243, 255, 0.5);
		border: 0.5px dashed #1DA1F2;
		font: normal 12px/31px var(--fontg);
		border-radius: 50%;
}
.product-colors .list1.open .more {
		display: none;
}
@media only screen and (max-width: 767px) {
		.product-colors .list1 .more .show-tab {
				display: none;
		}
		.product-colors .popup {
				display: none;
		}
}
@media (pointer:fine) {
		.product-colors .list1 .more:hover {
				background-color: transparent;
				border-color: var(--hover);
				color: var(--hover);
		}
}
.product-colors .popup {
		pointer-events: none;
		position: absolute;
		bottom: 100%;
		left: 50%;
		transform: translate3d(-50%, 0, 0);
		width: 100%;
		z-index: 30;
		background: var(--white);
		box-shadow: -5px 0px 25px rgba(0, 0, 0, 0.25);
		padding: 15px;
		border-radius: 5px;
		font: 600 16px/20px var(--fonti);
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 20px 10px;
		color: var(--grey900);
		margin: 15px 0;
		opacity: 0;
}
@media (pointer:fine) {
		.product-colors label:hover .popup {
				opacity: 1;
		}
}
@media only screen and (min-width: 1280px) {
		.product-colors .popup {
				width: 380px;
				top: 50%;
				right: 100%;
				transform: translate3d(0, -50%, 0);
				margin: 0 30px;
				left: auto;
				bottom: auto;
		}
}
.product-colors .popup .status {
		flex: 0 0 auto;
		width: 8px;
		height: 8px;
}
.product-colors .popup img {
		flex: 0 0 auto;
		width: 100%;
		border-radius: 3px;
		height: 150px;
		object-fit: contain;
		object-position: center;
		margin: 0 0 5px 0;
}
.product-colors .popup-color img {
		object-fit: cover;
}
.product-colors .popup .tags {
		flex: 0 0 auto;
		width: 100%;
		margin: 0 0 10px 0;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 5px;
}
.product-colors .popup .tags > * {
		flex: 0 0 auto;
		max-width: 100%;
		text-align: center;
		text-decoration: none;
		font-weight: 300;
		font-size: 10px;
		line-height: 14px;
		letter-spacing: -0.01em;
		color: #7C93BB;
		padding: 9px 16px;
		background: rgba(228, 236, 247, 0.25);
		border-radius: 16px;
}
.product-colors .list2 {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px;
		margin: -6px 0 0 0;
}
.product-colors .list2 label {
		padding: 4px;
		margin: -4px;
}
.product-colors .list2 label > span:not(.popup) {
		display: block;
		text-align: center;
		font-weight: 300;
		font-size: 14px;
		letter-spacing: -0.01em;
		color: var(--grey700);
		height: 36px;
		background: var(--input-bg);
		border: 0.75px solid rgba(166, 183, 212, 0.5);
		line-height: 34.5px;
		padding: 0 15px;
		border-radius: 18px;
		transition-property: border, background;
		transition-duration: 0.2s;
		transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (pointer:fine) {
		.product-colors .list2 label:hover > span:not(.popup) {
				border-color: var(--hover-input);
				background-color: transparent;
		}
}
.product-colors .list2 label input:checked ~ span:not(.popup) {
		background-color: #FFF2C5;
		border-color: #F35C00;
		color: var(--grey900);
		font-weight: 500;
}
.product-colors-selected {
		display: block;
		cursor: pointer;
		user-select: none;
		text-align: left;
		text-decoration: none;
		background: var(--input-bg) url(../img/colors-selected.svg) no-repeat calc(100% - 24px) 50%;
		background-size: auto 13px;
		border: 0.5px solid rgba(166, 183, 212, 0.5) !important;
		box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.1), 0px 5px 15px -2px rgba(50, 50, 71, 0.05);
		border-radius: 5px;
		padding: 10px 60px 10px 72px;
		position: relative;
		margin: 32px -4px 0 -4px;
		font-weight: 300;
		font-size: 12px;
		line-height: 20px;
		letter-spacing: -0.01em;
		color: var(--darker) !important;
		transition-property: border, background, box-shadow;
		transition-duration: 0.2s;
		transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (pointer:fine) {
		.product-colors-selected:hover {
				border-color: var(--hover-input);
				background-color: transparent;
				box-shadow: none;
		}
}
.product-colors-selected strong {
		display: block;
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		color: var(--grey900);
}
.product-colors-selected .rounded {
		position: absolute;
		top: 50%;
		left: 15px;
		width: 40px;
		height: 40px;
		margin: -20px 0;
		border-radius: 50%;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-size: cover;
}
.product-info2 {
		font-weight: normal;
		font-size: 14px;
		line-height: 20px;
		color: var(--grey900);
		letter-spacing: -0.01em;
		grid-area: i2;
		margin: 28px 0 0 0;
		padding: 0 6px;
}
@media only screen and (max-width: 767px) {
		.product-info2 {
				display: none;
		}
}
.product-info2 table {
		border-collapse: collapse;
		width: 100%;
		border: 0;
		margin: 0 0 21px 0;
}
.product-info2 td {
		text-align: left;
		vertical-align: top;
		border: 0;
		padding: 0;
}
.product-info2 td:not(:first-child) {
		padding-left: 16px;
}
.product-info2 tr:not(:first-child) td {
		padding-top: 10px;
}
.product-info2 td:first-child {
		font-weight: 300;
		letter-spacing: -0.01em;
		color: var(--grey600);
}
.product-brand {
		display: flex;
		align-items: center;
		gap: 0 25px;
		font-weight: 300;
		font-size: 14px;
		line-height: 24px;
		letter-spacing: -0.01em;
		grid-area: br;
		padding: 0 6px;
}
.product-brand img {
		width: auto;
		height: auto;
		max-width: 100px;
		max-height: 40px;
}
.product-brand .all span {
		margin-left: 0.3em;
}
.product-consult {
		display: flex;
		flex-direction: column;
		gap: 16px 25px;
		grid-area: cn;
		margin: 20px 0 0 0;
}
@media only screen and (max-width: 767px) {
		.product-consult {
				display: none;
		}
}
.product-consult-title {
		font: 600 14px/20px var(--fontg);
		letter-spacing: normal;
		color: var(--grey500);
		position: relative;
		text-align: center;
}
.product-consult-title:after {
		content: '';
		display: block;
		margin: 16px auto 0 auto;
		width: 30px;
		height: 2px;
		border-radius: 1px;
		background: var(--yellow);
}
.product-consult-title strong {
		font-weight: bold;
		font-size: 20px;
		line-height: 25px;
		color: var(--grey800);
		letter-spacing: -0.01em;
		margin: 0 0 4px 0;
		display: block;
}
.product-consult .btn {
		width: 100%;
}
.product-details {
		background: rgba(247, 250, 252, 0.65);
		margin: 40px 0;
		padding: 0 0 37px 0;
		font-weight: 300;
		font-size: 14px;
		line-height: 26px;
		letter-spacing: 0.01em;
		color: var(--grey900);
		box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.16);
}
.product-details p, ol, ul {
		margin: 10px 0;
}
.product-details p:first-child, .product-details ol:first-child, .product-details ul:first-child, .product-details li:first-child {
		margin-top: 0;
}
.product-details p:last-child, .product-details ol:last-child, .product-details ul:last-child, .product-details li:last-child {
		margin-top: 0;
}
.product-details a, .product-details .show-more > * {
		color: var(--blue);
		transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
		text-decoration: none;
}
@media (pointer:fine) {
		.product-details a:hover, .product-details .show-more > *:hover {
				color: var(--hover);
		}
}
.product-details .row {
		padding: 0 3px;
}
.product-details .row:not(:first-child) {
		margin-top: 32px;
}
.product-details-title {
		font: bold 20px/40px var(--fontg);
		position: relative;
		margin: 0 0 12px -20px;
		padding: 10px 0 10px 17px;
		border-left: 3px solid var(--yellow);
		color: var(--grey800);
		letter-spacing: -0.015em;
}
.product-details:not(.open) .folded {
		display: none;
}
.product-details .show-more {
		margin: 16px 0 0 0;
		font-weight: 600;
		font-size: 14px;
		line-height: 25px;
		letter-spacing: -0.01em;
}
.product-details.open .show-more {
		display: none;
}
.product-details .show-more > * {
		cursor: pointer;
		user-select: none;
}
.product-details-tech {
		margin: 16px 0 -28px 0;
		font-weight: 600;
		color: var(--grey800);
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		position: relative;
}
.product-details-tech .col {
		flex: 0 0 auto;
		width: 100%;
		padding: 0 0 28px 40px;
}
@media only screen and (max-width: 767px) {
		.product-details-tech .col {
				margin-top: 0 !important;
		}
}
.product-details-tech .tech-title {
		font: 600 18px/24px var(--fontg);
		margin: 0 0 18px -44px;
		letter-spacing: -0.01em;
		padding: 0 0 0 40px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: auto 24px;
}
.product-details-tech .tech-title.bg-set {
		background-image: url(../img/icons/product/sliders.svg);
}
.product-details-tech .tech-title.bg-box {
		background-image: url(../img/icons/product/box.svg);
}
.product-details-tech .tech-title.bg-layers {
		background-image: url(../img/icons/product/layers.svg);
}
.product-details-tech .tech-title.bg-search {
		background-image: url(../img/icons/product/search.svg);
}
.product-details-tech table {
		border-collapse: collapse;
		width: 100%;
		border: 0;
}
.product-details-tech td {
		text-align: left;
		vertical-align: top;
		border: 0;
		padding: 0;
}
.product-details-tech tr:not(:first-child) td {
		padding-top: 6px;
}
.product-details-tech td:not(:first-child) {
		padding-left: 16px;
}
.product-details-tech td:first-child {
		font-weight: 300;
		width: 50%;
}
.product-details-tech td:first-child > div {
		overflow: hidden;
}
.product-details-tech td:first-child > div:after {
		content: '';
		display: none;
		vertical-align: top;
		width: 100vw;
		position: relative;
		left: 8px;
		margin: 0 -100vw 0 0;
		border-top: 1px dashed #B3C0D6;
		top: 24px;
}
.series-items {
		margin-top: 32px;
}
.series-items .content-title {
		margin-bottom: 0;
}
.product-items-category {
		position: relative;
}
.product-items-category-head {
		cursor: pointer;
		user-select: none;
		padding: 17px 0 17px 56px;
		font: 900 20px/36px var(--fontg);
		letter-spacing: -0.01em;
		color: var(--blue);
		transition-property: color, box-shadow;
		transition-duration: 0.2s;
		transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.product-items-category-head .pic {
		position: absolute;
		top: 16px;
		left: 0;
		width: 38px;
		height: 38px;
		border-radius: 50%;
		background: rgba(17, 107, 239, 0.05);
		border: 0.5px solid rgba(29, 161, 242, 0.4);
		transition-property: transform, background, border;
		transition-duration: 0.2s;
		transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
		transform: rotate(-45deg);
}
.product-items-category-head .pic:before, .product-items-category-head .pic:after {
		content: '';
		width: 14px;
		height: 1.5px;
		border-radius: 0.75px;
		background: var(--blue);
		position: absolute;
		top: 50%;
		left: 50%;
		transition-property: width, height, border-radius, background;
		transition-duration: 0.2s;
		transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.product-items-category-head .pic:before {
		transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.product-items-category-head .pic:after {
		transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
@media (pointer:fine) {
		.product-items-category-head:hover {
				color: var(--orange);
		}
		.product-items-category-head:hover .pic {
				border-color: var(--orange);
				background-color: transparent;
		}
		.product-items-category-head:hover .pic:before, .product-items-category-head:hover .pic:after {
				background-color: var(--orange);
		}
}
.product-items-category.open .product-items-category-head {
		color: var(--grey600);
}
.product-items-category.open .product-items-category-head .pic {
		border-color: #A6B9D4;
		background-color: rgba(113, 128, 150, 0.05);
		transform: rotate(0deg);
}
.product-items-category.open .product-items-category-head .pic:before, .product-items-category.open .product-items-category-head .pic:after {
		background-color: var(--darker);
		border-radius: 0;
}
.product-items-category:not(.open) .product-items-category-in {
		display: none;
}
.product-items-category-ind {
		padding: 10px 0 25px 0;
}
.product-items-category:last-child {
		margin-bottom: -20px;
}
.product-items-category:last-child .product-items-category-ind {
		padding-bottom: 45px;
}
.product-cover {
		position: sticky;
		top: 0;
		z-index: 40;
		font-weight: 300;
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.005em;
		color: var(--grey900);
		flex: 0 0 auto;
		order: 2;
		width: 100%;
		display: none;
}
.product-cover .in {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		background: rgba(255, 255, 255, 0.94);
		box-shadow: 0px 14px 21px rgba(20, 37, 63, 0.07);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		backface-visibility: hidden;
		transition-property: transform, opacity;
		transition-duration: 0.5s, 0.2s;
		transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
		transform: translate3d(0, 0, 0);
}
html:not(.product-scrolled) .product-cover .in {
		opacity: 0;
		pointer-events: none;
		transform: translate3d(0, -100%, 0);
		transition-duration: 0.2s;
}
.product-cover .container {
		display: flex;
		align-items: center;
		height: 90px;
}
.product-cover .photo {
		flex: 0 0 auto;
		height: 90px;
		margin: -15px 25px -15px 0;
		width: 105px;
}
.product-cover .photo img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
}
.product-cover .text {
		flex: 1;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
}
.product-cover .price {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 5px 0;
		flex: 0 0 auto;
		font: normal 20px/24px var(--fontg);
		letter-spacing: 0.01em;
		color: var(--darker);
		margin: 0 0 0 25px;
		text-align: left;
}
.product-cover .price strong {
		display: block;
		font-weight: bold;
		font-size: 30px;
		line-height: 36px;
		color: var(--grey800);
}
.product-cover .btn {
		font-size: 18px;
		min-width: 250px;
		margin: 0 0 0 40px;
		text-shadow: 0px 0.5px 0px rgba(0, 0, 0, 0.45);
}
.product-cover .btn svg {
		filter: drop-shadow(0px 0.5px 0px rgba(0, 0, 0, 0.45));
}
.grid-product-inner {
		display: grid;
		grid-template-areas: "co co""buy buy""br br""cn cn";
		grid-template-columns: 50% 50%;
		grid-template-rows: auto auto auto auto auto auto;
		align-items: center;
}
.grid-series-inner {
		display: grid;
		grid-template-areas: "co co""buy buy""br br""cn cn";
		grid-template-columns: 67% 33%;
		grid-template-rows: auto auto auto auto auto auto;
		align-items: center;
}
@media only screen and (max-width: 1023px) {
		.product-view-no-price .product-cheaper {
			
				display: none;
		}
		.product-brand {margin: 24px 0 0 0;font-weight: 500;}
		.main-gallery-big img{max-height: 100%!important;}
}
.grid-series-inner .product-colors {
		margin-top: 6px;
}
.grid-series-inner .product-buy {
		margin-top: 16px;
}
/*mobile end*/
/*tablet start*/
@media only screen and (min-width: 768px) {

		.similar {
				margin-top: 65px;
		}
		.similar .content-title {
				margin-bottom: 24px;
		}
		.similar .content-title .big {
				font-size: 36px;
		}
		.product-head .code {
			font: 600 18px/20px var(--fontg);
			letter-spacing: 0.01em;
			color: var(--sec-dark);
			display: flex;
			height: 100%;
			align-items: end;
			gap: 5px;
		}
		.product-head .code strong {
				font-weight: inherit;
				color: #505780;
		}
		.product-price {
				gap: 0 20px;
		}
		.product-price .txt {
				font-weight: bold;
				font-size: 18px;
				line-height: 24px;
				color: var(--grey800);
				letter-spacing: normal;
				text-transform: none;
				margin: -2px 0 0 0;
		}
		.product-price strong {
				order: 1;
				font-size: 30px;
				line-height: 36px;
				letter-spacing: 0.01em;
		}
		.product-price .status {
				top: 18px;
		}
		.product-price del {
				order: 2;
				font-weight: normal;
				font-size: 20px;
				line-height: 24px;
		}
		.product-price .no-price {
				margin: 0;
		}
		.product-cheaper {
				font-size: 15px;
				line-height: 20px;
		}
		.product-buttons {
				justify-content: flex-end;
		}
		.product-buttons .btn-orange, .product-buttons .btn-green, .product-buttons .btn-yellow {
				text-shadow: 0px 0.5px 0px rgba(0, 0, 0, 0.45);
		}
		.product-buttons .btn-orange svg, .product-buttons .btn-green svg, .product-buttons .btn-yellow svg {
				filter: drop-shadow(0px 0.5px 0px rgba(0, 0, 0, 0.45));
		}
		.product-buttons .btn-cm {
				font-size: 17px;
		}
		.product-buttons .btn-add {
				font-size: 18px;
		}
		.product-buttons .btn-to-fav {
				width: 90px;
				order: 2;
		}
		.product-buttons .for-tab {
				display: inline;
		}
		.product-buttons .for-mob {
				display: none;
		}
		.product-buttons .btn svg:not(:first-child) {
				display: block;
		}
		.product-buttons .btn svg:first-child:not(:only-of-type) {
				display: none;
		}
		.product-info {
				font-size: 15px;
				letter-spacing: normal;
				color: var(--grey800);
		}
		.product-info li {
				padding-left: 43px;
				gap: 0 6px;
		}
		.product-info .pic {
				top: -1px;
				width: 28px;
				height: 28px;
		}
		.product-info strong {
				color: var(--grey900);
		}
		.product-info .pic-help {
				margin-left: 4px;
		}
		.product-colors {
				padding-top: 25px;
				padding-bottom: 28px;
				margin: 0 0 29px 0;
				border-bottom: 1px solid var(--sec-light);
				gap: 25px 35px;
				flex-direction: row;
				flex-wrap: wrap;
				justify-content: space-between;
		}
		.product-colors .col {
				flex: 0 0 auto;
				width: auto;
				min-width: 44%;
				max-width: 100%;
		}
		.product-colors-title {
				font-size: 15px;
				line-height: 20px;
				margin-bottom: 15px;
		}
		.product-colors-title strong {
				font-weight: 500;
				letter-spacing: -0.01em;
		}
		.product-colors .list1 {
				margin-top: 20px;
		}
		.product-colors .col:last-child .list1:last-child {
				margin-bottom: 9px;
		}
		.product-colors .list1 label > span:not(.popup) {
				width: 36px;
				height: 36px;
		}
		.product-colors .list1 label input:checked ~ span:not(.popup) {
				box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--grey500);
		}
		.product-colors .list1 .more {
				width: auto;
				height: auto;
				padding: 0 8px;
				font: 300 14px/25px var(--fonti);
				letter-spacing: -0.01em;
				border-radius: 0;
				border: 0 !important;
				background: none !important;
		}
		.product-colors .popup .tags {
				gap: 10px;
		}
		.product-colors .popup .tags > * {
				font-size: 12px;
				line-height: 18px;
				padding: 7px 16px;
				border-radius: 3px;
		}
		.product-colors .list2 {
				gap: 10px;
				margin-top: 15px;
		}
		.product-colors .list2 label {
				padding: 5px;
				margin: -5px;
		}
		.product-colors .list2 label > span:not(.popup) {
				font-size: 14px;
				letter-spacing: -0.01em;
				color: var(--grey600);
				padding: 0 14.5px;
				border-radius: 3px;
		}
		.product-info2 {
				font-size: 13px;
				margin: 0;
				padding: 0 40px 0 6px;
		}
		.product-info2 table {
				margin-bottom: 20px;
				font-size: 15px;
		}
		.product-info2 td:not(:first-child) {
				padding-left: 5px;
		}
		.product-info2 tr:not(:first-child) td {
				padding-top: 10px;
		}
		.product-brand {
				margin-top: 20px;
				font-weight: 500;
				font-size: 13px;
				letter-spacing: normal;
				padding: 0 0 25px 6px;
				border-bottom: 1px solid var(--sec-light);
		}
		.product-consult {
				flex-direction: row;
				align-items: stretch;
				align-self: end;
				flex-wrap: wrap;
				justify-content: space-between;
				gap: 20px;
		}
		.product-consult-title {
				text-align: left;
				display: flex;
				align-items: center;
				flex: 1 1 auto;
				border-left: 3px solid var(--yellow);
				padding-left: 25px;
		}
		.product-consult-title:after {
				display: none;
		}
		.product-consult .btn {
				width: auto;
				flex: 0 0 auto;
				padding: 0 25px;
				font-size: 16px;
				letter-spacing: 0.01em;
				gap: 0 14px;
		}
		.grid-product-inner, .grid-series-inner {
				gap: 0;
				grid-template-areas: "buy""co""i2""br""cn";
				grid-template-columns: 100%;
				grid-template-rows: auto auto auto auto auto;
		}
		.grid-product-inner .product-colors, .product-view-no-price .product-colors{
				margin-top: 0;
				padding-bottom: 28px;
		}
		.grid-product-inner .product-consult {
				margin: 32px 0 0 0;
		}
		.grid-series-inner .product-colors {
				margin-top: 0;
				padding-bottom: 18px;
		}
		.product-details {
				margin-top: 60px;
				margin-bottom: 60px;
				padding-top: 63px;
				padding-bottom: 66px;
				font-size: 15px;
				line-height: 35px;
				box-shadow: none;
		}
		.product-details .row {
				padding-right: 10px;
				padding-left: 45px;
		}
		.product-details .row:not(:first-child) {
				margin-top: 40px;
		}
		.product-details-title {
				font-size: 24px;
				font-weight: 900;
				color: var(--grey700);
				letter-spacing: -0.01em;
				margin: 0 0 20px -45px;
				padding: 10px 0 10px 42px;
		}
		.product-details .show-more {
				font-weight: normal;
				margin-top: 15px;
				font-size: 15px;
		}
		.product-details-tech {
				font-weight: normal;
				color: var(--grey900);
				margin: 38px -20px -42px -45px;
				justify-content: space-between;
		}
		.product-details-tech .col {
				padding: 0 20px 42px 55px;
				width: 53.5%;
		}
		.product-details-tech .col:nth-child(even) {
				width: 46.5%;
		}
		.product-details-tech .tech-title {
				font-size: 20px;
				margin: 0 0 27px -50px;
				letter-spacing: 0.01em;
				padding: 2px 0 2px 50px;
				background-size: auto 28px;
		}
		.product-details-tech tr:not(:first-child) td {
				padding-top: 0;
		}
		.product-details-tech td:not(:first-child) {
				padding-left: 9px;
		}
		.product-details-tech td:first-child {
				color: var(--grey700);
				width: 60%;
		}
		.product-details-tech td:first-child > div:after {
				display: inline-block;
		}
		.product-items .content-title {
				margin-bottom: 22px;
		}
		.series-items .content-title {
				margin-bottom: 5px;
		}
		.series-items .content-title .big {
				font-size: 36px;
		}
		.product-items-category {
				border-bottom: 1px dashed #BDCBE3;
		}
		.product-items-category-head {
				font-size: 30px;
				letter-spacing: normal;
				color: var(--grey700);
				padding: 39px 0 39px 75px;
		}
		.product-items-category-head .pic {
				width: 48px;
				height: 48px;
				border-color: transparent;
				background-color: transparent;
				top: 34px;
				left: 0;
		}
		.product-items-category-head .pic:before, .product-items-category-head .pic:after {
				width: 20px;
				height: 2.5px;
				border-radius: 1.25px;
				background-color: rgba(74, 85, 104, 0.77);
		}
		@media (pointer:fine) {
				.product-items-category-head:hover {
						color: var(--blue);
				}
				.product-items-category-head:hover .pic {
						border-color: transparent;
						background-color: transparent;
				}
				.product-items-category-head:hover .pic:before, .product-items-category-head:hover .pic:after {
						background-color: var(--blue);
				}
		}
		.product-items-category.open .product-items-category-head {
				color: #718096;
		}
		.product-items-category.open .product-items-category-head:after {
				border-color: transparent;
		}
		.product-items-category.open .product-items-category-head .pic:before, .product-items-category.open .product-items-category-head .pic:after {
				border-radius: 0.75px;
				height: 1.5px;
				width: 17px;
		}
		.product-items-category-ind {
				padding: 0 0 40px 0;
		}
		.product-items-category:last-child {
				margin-bottom: 0;
		}
		.product-items-category:last-child .product-items-category-ind {
				padding-bottom: 0;
		}
}
/*tablet end*/
/*tablet-big start*/
@media only screen and (min-width: 1024px) {
		.product-buttons {
				justify-content: center;
		}
		.product-cover {
				display: block;
		}
		html.product-scrolled .header:before {
				box-shadow: none;
		}
		.grid-product-inner, .grid-series-inner {
				gap: 0;
				grid-template-areas: "buy buy""co co""i2 cn""br br";
				grid-template-columns: calc(100% - 450px) 450px;
				grid-template-rows: auto auto auto auto;
		}
		.grid-product-inner .product-consult {
				margin-bottom: 27px;
		}
		.grid-product-inner .product-consult {
				margin: 0 0 27px 0;
		}
		.product-items .content-title {
				margin-bottom: 40px;
		}
}
/*tablet-big end*/
/*desktop start*/
@media only screen and (min-width: 1280px) {
		.similar {
/*				margin-top: 0;*/
		}
		.similar .content-title {
				margin-bottom: 50px;
		}
		.product-price {
				gap: 5px 25px;
		}
		.product-price .txt {
				width: 100%;
				font-size: 20px;
				margin-bottom: 5px;
		}
		.product-price del {
				order: 3;
		}
		.product-price .no-price {
				margin-top: 6px;
				margin-bottom: 10px;
		}
		.product-buttons {
				margin: 30px 0 0 0 !important;
				padding: 0 !important;
				justify-content: center;
		}
		.product-info {
				flex-direction: column;
				align-items: flex-start;
				justify-content: flex-start;
		}
		.product-colors {
				border-width: 0;
				flex-direction: column;
				align-items: stretch;
				justify-content: flex-start;
				gap: 25px 0;
				margin: 25px 0 0 0 !important;
				padding-top: 0;
				padding-bottom: 0;
		}
		.product-colors .col {
				min-width: 0;
				max-width: none;
				width: 100%;
		}
		.product-colors-selected {
				margin-top: 28px;
		}
		.product-info2 {
				margin: -5px 0 0 0;
				padding: 0 4px;
		}
		.product-info2 table {
				margin-bottom: 15px;
		}

		/*.product-brand {
				margin: 25px 0 0 0;
				padding: 0 20px 27px 6px;
				gap: 4px 16px;
				display: grid;
				align-items: center;
				grid-template-areas:
						"li lo"
						"a lo";
				grid-template-columns: auto 100px;
				grid-template-rows: auto auto;
		}
		.product-brand .logo {
				grid-area: lo;
		}
		.product-brand .all {
				grid-area: a;
				margin: 0;
		}
		.product-brand .links {
				gap: 4px;
				grid-area: li;
		}*/
		.grid-product-inner, .grid-series-inner {
				grid-template-areas: "buy""co""i2""br""cn";
				grid-template-columns: 1fr;
				grid-template-rows: auto auto auto auto auto;
				align-items: start;
		}
		.grid-product-inner .product-brand {
				margin-top: 16px;
		}
		.grid-product-inner .product-consult {
				margin: 30px 0 38px 0;
		}
		.grid-series-inner .product-brand {
				margin-top: 15px;
				padding-bottom: 30px;
		}
		.grid-series-inner .product-consult {
				margin-top: 22px;
		}
		.product-view-no-price .product-cheaper {
				display: none;
		}
		.product-details {
				margin-top: 80px;
				margin-bottom: 80px;
				padding-top: 76px;
				padding-bottom: 76px;
		}
		.product-details .row {
				padding-right: 0;
		}
		.product-details .row:not(:first-child) {
				margin-top: 70px;
		}
		.product-details-title {
				font-weight: bold;
				font-size: 30px;
				line-height: 36px;
				letter-spacing: normal;
				margin-bottom: 30px;
				padding-top: 12px;
				padding-bottom: 12px;
				padding-right: 0;
		}
		.product-details-tech {
				margin-top: 49px;
		}
		.product-details-tech .col, .product-details-tech .col:nth-child(even) {
				width: 50%;
		}
		.series-items {
				margin-top: 80px;
		}
		.series-items .content-title {
				margin-bottom: 25px;
		}
		.product-items-category-ind {
				padding-bottom: 65px;
		}
		.product-items-category:last-child .product-items-category-ind {
				padding-bottom: 0;
		}
		.categories-inline-slider {
				margin-left: 35px !important;
				margin-bottom: 70px !important;
		}
}
@media only screen and (min-width: 1340px) {
	.product-details-tech.view3 .col, .product-details-tech.view3 .col:nth-child(even) {width: 33.333333%;}
}
/*add-161223*/
.product-details .prodpic {display: block;padding: 0; margin: 35px -17px 30px -17px;text-align: center; border: 0; outline: none;}
.product-details .prodpic img{width: auto; height: auto; max-width: 100%;}