._btn_{
	background: #4f4f4f;
	border: 1px solid #4f4f4f;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.46px;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: .15s ease-in-out;
}
._btn_:hover{
	background: #3A3A3A;
}
._btn_._white{
	background: #fff;
	color: #3e3e3e;
}
._btn_._white:hover{
	background: #FCFCFC;
}



._checkbox_{
	position: relative;
}
	._checkbox_ input{
		opacity: 0;
		position: absolute;
		pointer-events: none;
	}

	._checkbox_ label{
		display: block;
		font-weight: 300;
		line-height: 1.5;
		padding-left: 23px;
	}
	._checkbox_ ._error_field + label{
		color: red;
	}
		._checkbox_ label:before,
		._checkbox_ label:after{
			border: 1px solid #979797;
			content: "";
			height: 15px;
			left: 0;
			position: absolute;
			top: 3px;
			width: 15px;
		}

		._checkbox_ label:after{
			background: url(../images/icons/checkbox.svg) no-repeat center;
			border: none;
			opacity: 0;
			transition: .1s ease-in-out;
		}
		._checkbox_ input:checked + label:after,
		._checkbox_ input:checked + label + label:after{
			opacity: 1;
		}



._overlay_{
	background: rgba(243, 243, 243, .8);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}
.sec_category ~ ._overlay_{
	display: block;
}
	._overlay_._lb img{
		left: 50%;
		max-height: 95%;
		max-width: 95%;
		position: absolute;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	._overlay_._lb:after{
		background: url(../images/icons/close.svg) no-repeat center;
		background-size: 30px;
		content: '';
 		cursor: pointer;
		height: 50px;
		position: absolute;
		right: 10px;
		top: 10px;
		width: 50px;
	}



._popup_{
	background: #fff;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.18);
	color: #3e3e3e;
	left: calc(50% - 240px);
	opacity: 0;
	padding: 35px;
	position: absolute;
	top: 150px;
	-webkit-transform: scale(.97);
	transform: scale(.97);
	transition: .2s ease-in-out, left 0s, top 0s;
	visibility: hidden;
	width: 480px;
	z-index: 300;
}
._popup_.act{
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	visibility: visible;
}
	._popup_ .title{
		font-size: 16px;
		letter-spacing: 0.67px;
		text-align: center;
		text-transform: uppercase;
	}

	._popup_ .subtitle{
		font-size: 16px;
		letter-spacing: 0.67px;
		margin: 15px 0;
		text-transform: uppercase;
	}
		._popup_ .subtitle span{
			font-weight: 300;
			letter-spacing: 1px;
			text-transform: none;
		}


	._popup_ .tabs{
		text-align: center;
		text-transform: uppercase;
	}
		._popup_ .tabs li{
			color: #cfcfcf;
			cursor: pointer;
			display: inline-block;
			font-size: 16px;
			font-weight: 700;
			height: 25px;
			letter-spacing: 0.67px;
			line-height: 27px;
			transition: .1s ease-in-out;
			width: 49%;
		}
		._popup_ .tabs li + li{
			border-left: 1px solid #d8d8d8;
		}
		._popup_ .tabs li:hover{
			color: #A5A5A5;
		}
		._popup_ .tabs li.act{
			color: #2d2c2c;
			cursor: default;
		}


	._popup_ .tabcnt{
		display: none;
		padding-top: 10px;
	}
	._popup_ .tabcnt:nth-of-type(1){
		display: block;
	}

	._popup_ .g-recaptcha{
		margin-top: 10px;
	}

	._popup_ .success{
		font-size: 17px;
		margin-top: 20px;
		text-align: center;
	}


	._popup_ .input{
		margin-top: 22px;
	}
	._popup_ .subtitle + .input{
		margin-top: 20px;
	}
		._popup_ .input:not(._count) label{
			display: block;
			font-weight: 700;
			letter-spacing: 1.17px;
			margin-bottom: 5px;
			text-transform: uppercase;
		}

		._popup_ .input input{
			border: 1px solid #979797;
			font-size: 16px;
			height: 45px;
			padding: 0 15px;
			transition: .2s ease-in-out;
			vertical-align: top;
			width: 100%;
		}
		._popup_ .input input:focus{
			border-color: #000;
		}

		._popup_ .input select{
			background: url(../images/icons/select.svg) no-repeat calc(100% - 15px) center;
			border: 1px solid #979797;
			font-size: 16px;
			font-weight: 300;
			height: 45px;
			letter-spacing: .5px;
			padding: 0 15px;
			transition: .2s ease-in-out;
			vertical-align: top;
			width: 100%;
		}

		._popup_ .input._tel select{
			font-size: 18px;
			width: 100px;
		}
		._popup_ .input._tel input{
			margin-left: 6px;
			width: calc(100% - 110px);
		}

		._popup_ .input textarea{
			border: 1px solid #979797;
			font-weight: 300;
			height: 130px;
			padding: 12px 15px;
			transition: .2s ease-in-out;
			width: 100%;
		}
		._popup_ .input textarea:focus{
			border-color: #000;
		}

		._popup_ .input textarea::-webkit-input-placeholder{color: #939393; opacity: 1;}
		._popup_ .input textarea::-moz-placeholder{color: #939393; opacity: 1;}
		._popup_ .input textarea:-ms-input-placeholder{color: #939393; opacity: 1;}

		._popup_ .input [disabled]{
			background: #fff;
			opacity: .4;
		}


	._popup_ ._checkbox_{
		margin: 20px 0;
	}
		._popup_ ._checkbox_ a{
			color: inherit;
		}
		._popup_ ._checkbox_ a:hover{
			text-decoration: none;
		}

		
	._popup_ ._city{
		display: block;
	}
		._popup_ ._city select + input{
			display: none;
			margin-top: 10px;
		}


	._popup_ ._btn_{
		display: block;
		font-size: 13px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 1.17px;
		margin-top: 25px;
		width: 255px;
	}

	._popup_authreg  ._btn_{
		width: 200px;
	}

	._popup_authreg .stp._stp2 ._btn_{width: auto;}
	._popup_authreg .stp._stp3 ._btn_{width: 150px;}

	._popup_ .link{
		border-bottom: 1px dashed #4f4f4f;
		color: #3e3e3e;
		cursor: pointer;
		display: inline-block;
		letter-spacing: 0.58px;
		line-height: 1.2;
		margin: 15px 0 0;
		transition: .1s ease-in-out;
	}
	._popup_ .link:hover{
		border-color: transparent;
	}

	._popup_ .text{
		font-size: 13.8px;
		font-weight: 300;
		line-height: 1.4;
		margin: 20px 0 10px;
	}
	._popup_ .input + .text{
		margin-top: 10px;
	}
		._popup_ .text b{
			font-weight: 700;
		}


	._popup_ .text + .link{
		margin-top: 0;
	}

	._popup_ .captcha{
		display: block;
		margin: 15px 0 0;
	}

	._popup_ .steps{
		counter-reset: nums;
		margin-top: 15px;
		overflow: hidden;
		padding: 1px;
		text-align: center;
	}
		._popup_ .steps li{
			float: left;
			height: 32px;
			line-height: 32px;
			position: relative;
			width: 32px;
		}
		._popup_ .steps li:nth-child(2){
			margin-left: 159px;
		}
		._popup_ .steps li:nth-child(3){
			float: right;
			margin: 0;
		}
			._popup_ .steps li + li:before{
				background: #d8d8d8;
				content: "";
				height: 1px;
				right: 100%;
				position: absolute;
				top: 16px;
				transition: .2s ease-in-out;
				width: 160px;
			}
			._popup_ .steps li.ok:before,
			._popup_ .steps li.cur:before{
				background: #3b3a3a;
			}

			._popup_ .steps li span{
				background: #fff;
				border: 1px solid #d8d8d8;
				border-radius: 50%;
				counter-increment: nums;
				height: 100%;
				left: 0;
				position: absolute;
				top: 0;
				transition: .2s ease-in-out;
				width: 100%;
				z-index: 1;
			}
			._popup_ .steps li.cur span{
				border-color: #3b3a3a;
				box-shadow: 0 0 0 1px #3b3a3a;
			}
			._popup_ .steps li.ok span{
				border-color: #3b3a3a;
			}
				._popup_ .steps li span:before{
					color: #939393;
					content: counter(nums);
					display: inline-block;
					font-size: 16px;
					transition: .2s ease-in-out;
				}
				._popup_ .steps li.cur span:before{
					color: #2d2c2c;
				}
				._popup_ .steps li.ok span:before{
					-webkit-transform: scale(0);
					transform: scale(0);
				}

				._popup_ .steps li span:after{
					background: url(../images/icons/checkbox3.svg);
					background-size: 100%;
					content: "";
					height: 8px;
					left: calc(50% - 6px);
					position: absolute;
					top: calc(50% - 4px);
					-webkit-transform: scale(0);
					transform: scale(0);
					transition: .2s ease-in-out;
					width: 13px;
				}
				._popup_ .steps li.ok span:after{
					-webkit-transform: scale(1);
					transform: scale(1);
				}


	._popup_ .stp{
		display: none;
		padding-top: 15px;
	}
	._popup_ .stp:nth-of-type(1){
		display: block;
	}

	._popup_ ._count{
		overflow: hidden;
	}
		._popup_ ._count ._checkbox_{
			float: left;
			font-size: 16px;
			margin: 0;
			width: 230px;
		}
			._popup_ ._count ._checkbox_ label{
				line-height: 1.3;
			}

			._popup_ ._count ._checkbox_ b{
				display: block;
				font-weight: 700;
			}


		._popup_ ._count input[type=text]{
			float: right;
			height: 35px;
			padding: 0 10px;
			width: 80px;
		}


	._popup_ .address{
		margin: 20px 0;
	}
		._popup_ .address .subtitle{
			border-bottom: 1px solid #3b3a3a;
			cursor: pointer;
			margin-bottom: 5px;
			padding-bottom: 7px;
			position: relative;
		}
			._popup_ .address .subtitle:after{
				border-style: solid;
				border-width: 5px 5px 0 5px;
				border-color: transparent;
				border-top-color: #3b3a3a;
				content: "";
				height: 0;
				position: absolute;
				right: 2px;
				top: 10px;
				transition: .2s ease-in-out;
				width: 0;
			}
			._popup_ .address .subtitle.act:after{
				transform: rotate3d(1, 0, 0, 180deg);
			}

		._popup_ .address .input{
			display: inline-block;
			vertical-align: top;
			width: 100%;
		}

		._popup_ .address ._index{width: 100px;}
		._popup_ .address ._street{margin-left: 7px; width: 298px;}
		._popup_ .address ._house{width: 100px;}
		._popup_ .address ._corpus{margin-left: 7px; width: 100px;}
		._popup_ .address ._office{margin-left: 7px; width: 187px;}

		._popup_ .address .inner{
			display: none;
		}


	._popup_ ._stp3 .desc{
		font-size: 16px;
		font-weight: 300;
		line-height: 1.5;
		margin: 30px 0;
	}

	._popup_ .hint{
		font-size: 12px;
		margin-top: 5px;
	}

	._popup_ .hint + input{
		margin-top: 10px;
	}

	._popup_ .close{
		background: url(../images/icons/close.svg) no-repeat;
		background-size: 100%;
		cursor: pointer;
		height: 15px;
		position: absolute;
		right: 10px;
		top: 10px;
		width: 15px;
	}





._popup_card{
	left: calc(50% - 355px);
	overflow: hidden;
	padding: 35px 20px;
	width: 710px;
}
	._popup_card .images{
		float: left;
		position: relative;
		width: 295px;
	}
		._popup_card .images .tag{
			background: #3b3a3a;
			color: #fff;
			font-size: 11px;
			font-weight: 600;
			height: 25px;
			left: 0;
			line-height: 25px;
			position: absolute;
			text-align: center;
			text-decoration: none;
			text-transform: uppercase;
			top: 15px;
			width: 45px;
			z-index: 2;
		}
		._popup_card .images .tag._sale{
			background: #D20000;
		}

		._popup_card .images .main{
			height: 445px;
			position: relative;
			width: 100%;
		}
			._popup_card .images .main li{
				height: 100%;
				left: 0;
				opacity: 0;
				position: absolute;
				top: 0;
				transition: .2s ease-in-out;
				width: 100%;
			}
			._popup_card .images .main li.act{
				opacity: 1;
			}
				._popup_card .images .main li img{
					width: 100%;
				}


		._popup_card .images .brand{
		    height: 22px;
		    opacity: .35;
		    position: absolute;
		    right: 35px;
		    top: 15px;
		    transform-origin: right top;
		    -webkit-transform: rotate(-90deg);
		    transform: rotate(-90deg);
		    z-index: 2;
		}

		._popup_card .images .thumbs{
			margin-top: 10px;
			text-align: center;
			width: 100%;
		}
			._popup_card .images .thumbs li{
				background-position: center;
				background-size: cover;
				cursor: pointer;
				display: inline-block;
				height: 77px;
				margin: 0 3px;
				position: relative;
				transition: .15s ease-in-out;
				vertical-align: top;
				width: 52px;
			}
			._popup_card .images .thumbs li:hover{
				opacity: .85;
			}
			._popup_card .images .thumbs li.act{
				cursor: default;
				opacity: 1;
			}
				._popup_card .images .thumbs li:before{
					border: 1px solid #404040;
					content: "";
					height: calc(100% + 6px);
					left: -3px;
					opacity: 0;
					position: absolute;
					top: -3px;
					transition: .15s ease-in-out;
					width: calc(100% + 6px);
				}
				._popup_card .images .thumbs li.act:before{
					opacity: 1;
				}


		._popup_card .images .swiper{
			height: 85px;
			margin: 7px auto;
			position: relative;
			width: 250px;
		}
			._popup_card .images .swiper-slide{
				border: 1px solid transparent;
				padding: 2px;
				transition: border-color .15s ease-in-out;
			}
			._popup_card .images .swiper-slide.act{
				border-color: #404040;
			}

			._popup_card .images .swiper img{
				cursor: pointer;
				width: 100%;
			}

			._popup_card .images .swiper .arr{
				background: url(../images/icons/arr_l_g.svg);
				background-size: 100%;
				cursor: pointer;
				height: 18px;
				left: -20px;
				position: absolute;
				top: calc(50% - 9px);
				transition: .2s ease-in-out;
				width: 10px;
				z-index: 1;
			}
			._popup_card .images .swiper ._next{
				left: auto;
				right: -20px;
				-webkit-transform: rotate(180deg);
				transform: rotate(180deg);
			}

			._popup_card .images .swiper .swiper-button-disabled{
				cursor: default;
				opacity: .3;
			}

			._popup_card .images .swiper .dots{
				bottom: 10px;
				display: none;
				position: absolute;
				text-align: center;
				width: 100%;
				z-index: 1;
			}
				._popup_card .images .swiper .dots .swiper-pagination-bullet{
					background: transparent;
					border: 1px solid #332b35;
					height: 10px;
					margin: 0 5px;
					opacity: 1;
					transition: .2s ease-in-out;
					width: 10px;
				}
				._popup_card .images .swiper .dots .swiper-pagination-bullet-active{
					background: #332b35;
				}

	
	._popup_card .inform{
		float: left;
		margin-left: 40px;
		width: 320px;
	}	
		._popup_card .inform .name{
			color: #000;
			float: left;
			font-size: 18px;
			font-weight: 600;
			letter-spacing: 0.4px;
			width: calc(100% - 30px);
		}

		._popup_card .inform ._cartico_{
			float: right;
		}
			._popup_card .inform ._cartico_:after{
				bottom: -6px;
				font-size: 8px;
				height: 18px;
				line-height: 18px;
				min-width: 18px;
				padding: 0 2px 0 3px;
				right: -7px;
			}


		._popup_card .inform .data{
			color: #8f8f8f;
			float: left;
			font-size: 12px;
			letter-spacing: 0.27px;
			margin: 0;
			padding: 20px 0;
			width: 220px;
		}
			._popup_card .inform .data:after{
				clear: both;
				content: '';
				display: block;
			}
			
			._popup_card .inform .data dt{
				clear: both;
				float: left;
				margin: 4px 0;
				max-width: 80px;
			}

			._popup_card .inform .data dd{
				float: left;
				margin: 4px 0 0 5px;
				width: 130px;
			}
				._popup_card .inform .data dd b{
					color: #000;
					font-weight: 600;
				}

				._popup_card .inform .data dd a{
					border-bottom: 1px solid #8f8f8f;
					color: inherit;
					display: inline-block;
					line-height: .85;
					text-decoration: none;
					transition: .1s ease-in-out;
				}
				._popup_card .inform .data dd a:hover{
					border-color: transparent;
				}

				._popup_card .inform .data ._colors_{
					margin: 2px 0 0;
					text-align: left;
				}
					._popup_card .inform .data ._colors_ li{
						display: inline-block;
						margin: 0 1px;
						vertical-align: top;
					}


		._popup_card .inform .cost{
			float: right;
			padding: 23px 0 0;
			text-align: right;
		}
			._popup_card .inform .cost .old{
				color: #000;
				font-size: 14px;
				letter-spacing: 0.31px;
				position: relative;
			}
				._popup_card .inform .cost .old:after{
					background: red;
					content: '';
					height: 1px;
					left: -5%;
					position: absolute;
					top: 50%;
					width: 110%;
				}

			._popup_card .inform .cost .cur{
				color: #000;
				display: block;
				font-size: 18px;
				font-weight: 700;
				letter-spacing: 0.4px;
			}

			._popup_card .inform .cost .rrp{
				color: #979797;
				display: block;
				font-size: 12px;
				margin-top: 2px;
				white-space: nowrap;
			}


		._popup_card .inform ._sizes_{
			clear: both;
			margin: 0 -5px;
			padding-top: 20px;
			text-align: left;
		}
			._popup_card .inform ._sizes_:before{
			    color: #757575;
			    content: attr(data-txt);
			    font-size: 12px;
			    font-weight: 300;
			    left: 5px;
			    letter-spacing: 0.26px;
			    position: absolute;
			    top: 0;
			}

			._popup_card .inform ._sizes_ li{
				margin: 5px 0 5px 5px;
				text-align: center;
				width: 57px;
			}
			._popup_card .inform ._sizes_ li._btn{
				width: 122px;
			}


		._popup_card .inform .count{
			border-bottom: 1px solid #dadada;
			border-top: 1px solid #dadada;
			margin-top: 10px;
			padding: 7px 0;
			position: relative;
		}
			._popup_card .inform .count:before{
				color: #8f8f8f;
				content: attr(data-txt);
				font-size: 12px;
				left: 0;
				letter-spacing: 0.54px;
				position: absolute;
				top: 12px;
			}

			._popup_card .inform .count:after{
				clear: both;
				content: '';
				display: block;
			}

			._popup_card .inform .count .num{
				background: url(../images/icons/multiply.svg) no-repeat right center;
				color: #000;
				float: right;
				font-size: 18px;
				letter-spacing: 0.4px;
				margin: 1px 35px 0 0;
				padding-right: 20px;
			}

			._popup_card .inform .count ._counter_{
				float: right;
				margin-right: 25px;
			}


		._popup_card .inform .total{
			padding: 9px 0 9px 50px;
			position: relative;
		}
			._popup_card .inform .total:before{
				color: #8f8f8f;
				content: attr(data-txt);
				font-size: 12px;
				left: 0;
				letter-spacing: 0.54px;
				position: absolute;
				top: 16px;
			}

			._popup_card .inform .total:after{
				clear: both;
				content: '';
				display: block;
			}

			._popup_card .inform .total .num{
				color: #b5b5b5;
				float: left;
				font-size: 18px;
				letter-spacing: 0.4px;
				margin-top: 2px;
				position: relative;
				transition: .1s ease-in-out;
			}
			._popup_card .inform .total .num.act{
				color: #2d2c2c;
			}
				._popup_card .inform .total .num:before{
					content: attr(data-cost);
					margin-right: 4px;
				}

			
			._popup_card .inform .total ._in_cart_{
				height: 27px;
				line-height: 27px;
			}



._popup_addr{
	padding: 30px 35px;
}
	._popup_addr .title{
		text-align: left;
	}

	._popup_addr .address{
		margin-top: 15px;
	}
		._popup_addr .address ._index,
		._popup_addr .address ._street{
			margin-top: 7px;
		}


	._popup_addr ._btn_{
		display: inline-block;
		margin-top: 5px;
		width: 200px;
	}
	._popup_addr ._btn_ + ._btn_{
		margin-left: 5px;
	}



._popup_confirm{
	padding: 23px 35px;
	width: 360px;
}
._popup_confirm._notauth{
	padding: 23px 0;
	text-align: center;
}
	._popup_confirm .title{
		font-size: 21px;
		font-weight: 600;
		letter-spacing: 0.25px;
		text-align: left;
		text-transform: none;
	}

	._popup_confirm .desc{
		color: #2d2c2c;
		font-size: 17px;
		font-weight: 300;
		letter-spacing: 0.2px;
		margin: 20px 0 30px;
	}

	._popup_confirm ._btn_{
		display: inline-block;
		margin-top: 0;
		width: 140px;
	}
	._popup_confirm ._btn_ + ._btn_{
		margin-left: 6px;
	}

	._popup_confirm._notauth ._btn_{
		font-size: 12px;
		letter-spacing: .3px;
		width: auto;
	}





._cattable_{
	margin-top: 20px;
	width: 100%;
}
	._cattable_ .thead{
		text-align: center;
	}
		._cattable_ .thead td{
			border-bottom: 1px solid #E1E1E1;
			color: #7c7c7c;
			font-size: 12px;
			padding: 10px 0;
		}


	._cattable_ .row td{
		border-bottom: 1px solid #E1E1E1;
		padding: 10px 0;
	}
	._cattable_ ._separate td{
		background: #f3f3f3;
	}
		._cattable_ .row .cart{
			width: 28px;
		}

		._cattable_ .row .img{
			width: 93px;
		}
			._cattable_ .row .img a{
				display: block;
				height: 140px;
				overflow: hidden;
				position: relative;
				width: 93px;
			}
				._cattable_ .row .img .photo{
					left: 50%;
					max-height: 100%;
					max-width: 100%;
					position: absolute;
					top: 50%;
					-webkit-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);
				}

				._cattable_ .row .img .tag{
					background: #3b3a3a;
					color: #fff;
					font-size: 9px;
					font-weight: 600;
					height: 17px;
					left: 0;
					line-height: 19px;
					position: absolute;
					text-align: center;
					text-decoration: none;
					text-transform: uppercase;
					top: 10px;
					width: 30px;
				}
				._cattable_ .row .img .tag._sale{
					background: #D20000;
				}

				._cattable_ .row .img .brand{
					height: 12px;
					opacity: .35;
					position: absolute;
					right: 15px;
					top: 5px;
					transform-origin: right top;
					-webkit-transform: rotate(-90deg);
					transform: rotate(-90deg);
					z-index: 1;
				}


		._cattable_ .row .info{
			padding: 0 20px;
			width: 220px;
		}
			._cattable_ .row .info .name{
				color: #3e3e3e;
				font-weight: 600;
				letter-spacing: 0.44px;
				text-decoration: none;
			}

			._cattable_ .row .info .desc{
				color: #7c7c7c;
				font-size: 12px;
				font-weight: 300;
				line-height: 1.7;
				margin-top: 5px;
			}
				._cattable_ .row .info .desc b{
					color: #3e3e3e;
					font-weight: 600;
				}


			._cattable_ .row .info .cs{
				color: #262028;
				display: none;
				font-size: 11px;
				margin-top: 5px;
			}
			._cattable_ .row .info .cs:hover{
				text-decoration: none;
			}


		._cattable_ .row .colors{
			text-align: center;
			width: 60px;
		}
			._cattable_ .row .colors li{
				margin: 9px auto;
			}


		._cattable_ .row .collection{
			line-height: 1.1;
			padding: 0 10px;
			text-align: center;
			width: 80px;
		}
			._cattable_ .row .collection a{
				color: #262028;
				font-size: 12px;
				font-weight: 300;
			}
			._cattable_ .row .collection a:hover{
				text-decoration: none;
			}

			._cattable_ .row .collection span{
				display: block;
				font-size: 11px;
				margin-top: 7px;
			}


		._cattable_ .row .season{
			font-size: 12px;
			font-weight: 300;
			padding: 0 10px;
			width: 90px;
		}

		._cattable_ .row .sizes{
			width: 330px;
		}

		._cattable_ .row .cost{
			text-align: center;
			width: 80px;
		}
			._cattable_ .row .cost .cur{
				color: #3e3e3e;
				display: block;
				font-size: 16px;
				font-weight: 600;
				letter-spacing: 0.67px;
				white-space: nowrap;
			}

			._cattable_ .row .cost .old{
				color: #000;
				font-size: 12px;
				letter-spacing: 0.5px;
				margin-top: 2px;
				position: relative;
			}
				._cattable_ .row .cost .old:after{
					background: red;
					content: '';
					height: 1px;
					left: -5%;
					position: absolute;
					top: 50%;
					width: 110%;
				}

				
			._cattable_ .row .cost .rrp{
				color: #979797;
				font-size: 12px;
				white-space: nowrap;
			}


		._cattable_ .row .count{
			width: 110px;
		}
			._cattable_ .row .count ._counter_{
				margin: 0 auto;
			}


		._cattable_ .row .total{
			text-align: center;
			width: 110px;
		}
			._cattable_ .row .total p{
				color: #b5b5b5;
				font-size: 16px;
				font-weight: 700;
				letter-spacing: 0.52px;
				position: relative;
				transition: .1s ease-in-out;
			}
			._cattable_ .row .total p.act{
				color: #2d2c2c;
			}
				._cattable_ .row .total p:before{
					content: attr(data-cost);
					margin-right: 4px;
				}

				._cattable_ .row .total p:after{
					color: #858585;
					content: attr(data-total) ' шт';
					font-size: 11px;
					font-weight: 400;
					letter-spacing: 0.52px;
					left: 50%;
					opacity: 0;
					position: absolute;
					top: -20px;
					-webkit-transform: translateX(-50%);
					transform: translateX(-50%);
					transition: .1s ease-in-out;
				}
				._cattable_ .row .total p.act:after{
					opacity: 1;
				}


			._cattable_ .row .total ._in_cart_{
				display: none;
				float: none;
				margin-top: 7px;
			}


		._cattable_ .row .button{
			position: relative;
			width: 90px;
		}
			._cattable_ .row ._in_cart_{
				background-image: none;
				line-height: 26px;
				padding: 0;
				width: 90px;
			}





._catlist_{
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	margin-top: 25px;
}
	._catlist_:after{
		clear: both;
		content: "";
		display: block;
	}

	._catlist_ .item{
		cursor: default;
		margin: 0 0 30px 25px;
		position: relative;
		width: calc(25% - 75px/4);
	}
	._catlist_ .item:hover{
		z-index: 2;
	}
	._catlist_ .item.hover{
		z-index: 3;
	}
	._catlist_ .item:nth-child(4n+1){
		margin-left: 0;
	}
		._catlist_ .item .main{
			position: relative;
			transition: .2s ease-in-out;
			z-index: 1;
		}
		._catlist_ .item:hover .main,
		._catlist_ .item.hover .main{
			-webkit-transform: translateY(-10px);
			transform: translateY(-10px);
		}

		._catlist_ .item .img{
			display: block;
			height: 445px;
			position: relative;
			width: 100%;
		}
			._catlist_ .item .img .photo{
				left: 50%;
				max-height: 100%;
				max-width: 100%;
				position: absolute;
				top: 50%;
				transition: .2s ease-in-out;
				-webkit-transform: translate(-50%, -50%);
				transform: translate(-50%, -50%);
			}
			._catlist_ .item .img .photo._img_1{
				opacity: 0;
			}
			._catlist_ .item .img:hover .photo._img_1{
				opacity: 1;
			}

			._catlist_ .item .img .brand{
				height: 22px;
				opacity: .35;
				position: absolute;
				right: 35px;
				top: 15px;
				transform-origin: right top;
				-webkit-transform: rotate(-90deg);
				transform: rotate(-90deg);
				z-index: 1;
			}

			._catlist_ .item .img .tag{
				background: #3b3a3a;
				color: #fff;
				font-size: 11px;
				font-weight: 600;
				height: 25px;
				left: 0;
				line-height: 25px;
				position: absolute;
				text-align: center;
				text-decoration: none;
				text-transform: uppercase;
				top: 15px;
				width: 45px;
			}
			._catlist_ .item .img .tag._sale{
				background: #D20000;
			}
 
			._catlist_ .item .img ._btn_{
				bottom: 0;
				left: 0;
				opacity: 0;
				position: absolute;
				width: 100%;
				z-index: 1;
			}
			._catlist_ .item:hover .img ._btn_{
				opacity: 1;
			}


		._catlist_ .item .name{
			color: #2d2c2c;
			float: left;
			font-weight: 600;
			letter-spacing: 0.5px;
			margin: 7px 0;
			overflow: hidden;
			text-decoration: none;
			text-overflow: ellipsis;
			width: calc(100% - 40px);
			white-space: nowrap;
		}

		._catlist_ .item ._cartico_{
			float: right;
			margin: 5px 10px 0 0;
		}

		._catlist_ .item ._mid{
			align-items: flex-start;
			clear: both;
			display: flex;
			margin-bottom: 12px;
			justify-content: space-between;
			width: 100%;
		}

		._catlist_ .item .data{
			font-size: 12px;
			letter-spacing: 0.26px;
			margin: 0 0 5px;
			padding-top: 8px;
			width: 100%;
		}
			._catlist_ .item .data:after{
				clear: both;
				content: "";
				display: block;
			}
			
			._catlist_ .item .data dt{
				clear: both;
				color: #757575;
				float: left;
				margin: 3px 0;
				font-weight: 300;
				width: 50px;
			}

			._catlist_ .item .data dd{
				color: #3e3e3e;
				float: left;
				font-weight: 700;
				margin: 3px 0 3px 7px;
				width: calc(100% - 60px);
			}

			._catlist_ .item .data ._colors_{
				display: inline-block;
				margin: 2px 0 0 -1px;
				text-align: left;
			}
				._catlist_ .item .data ._colors_ li{
					display: inline-block;
					margin: 0px 1px 5px;
					vertical-align: top;
				}


		._catlist_ .item .cost{
			margin: 9px 5px 0 0;
			text-align: right;
		}
			._catlist_ .item .cost .old{
				color: #000;
				font-size: 13px;
				letter-spacing: 0.54px;
				position: relative;
				vertical-align: middle;
				white-space: nowrap;
			}
				._catlist_ .item .cost .old:after{
					background: red;
					content: '';
					height: 1px;
					left: -5%;
					position: absolute;
					top: 50%;
					width: 110%;
				}

				
			._catlist_ .item .cost .cur{
				color: #2d2c2c;
				font-size: 16px;
				font-weight: 700;
				letter-spacing: 0.67px;
				margin-left: 15px;
				vertical-align: middle;
				white-space: nowrap;
			}

			._catlist_ .item .cost .rrp{
				color: #979797;
				font-size: 12px;
				white-space: nowrap;
			}


		._catlist_ .item ._choose{
			background: #332b35;
			display: none;
			float: right;
			font-size: 9px;
			height: 25px;
			line-height: 25px;
			margin-top: 5px;
			width: 95px;
		}
		._catlist_ .item:hover ._choose{
			display: none;
		}

		._catlist_ .item ._sizes_{
			clear: both;
			margin-left: -2px;
			text-align: left;
		}
			._catlist_ .item ._sizes_:before{
				color: #757575;
				content: attr(data-txt);
				font-size: 12px;
				font-weight: 300;
				left: 2px;
				letter-spacing: 0.26px;
				position: absolute;
				top: -13px;
			}


		._catlist_ .item .hide{
			background: #fff;
			box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.13);
			height: calc(100% + 110px);
			left: -12px;
			opacity: 0;
			position: absolute;
			top: -22px;
			transition: .2s ease-in-out;
			visibility: hidden;
			width: calc(100% + 24px);
		}
		._catlist_ .item:hover .hide,
		._catlist_ .item.hover .hide{
			opacity: 1;
			visibility: visible;
		}
			._catlist_ .item .hide .bottom{
				border-top: 1px solid #d8d8d8;
				bottom: 12px;
				height: 80px;
				left: 13px;
				padding-top: 10px;
				position: absolute;
				width: calc(100% - 30px);
			}

			._catlist_ .item .hide .counter{
				margin-bottom: 15px;
			}
				._catlist_ .item .hide .counter:after{
					clear: both;
					content: '';
					display: block;
				}
				
				._catlist_ .item .hide .counter .txt{
					color: #757575;
					float: left;
					font-size: 12px;
					font-weight: 300;
					letter-spacing: 0.26px;
					margin-top: 7px;
				}

				._catlist_ .item .hide .counter ._counter_{
					float: right;
					margin-right: 17px;
				}

				._catlist_ .item .hide .counter .num{
					background: url(../images/icons/multiply.svg) no-repeat right center;
					color: #2d2c2c;
					float: right;
					font-size: 16px;
					font-weight: 700;
					letter-spacing: 0.67px;
					margin: 4px 33px 0 0;
					padding-right: 25px;
				}


			._catlist_ .item .hide .total{
				color: #b5b5b5;
				float: left;
				font-size: 16px;
				font-weight: 700;
				letter-spacing: 0.52px;
				padding-left: 50px;
				position: relative;
				transition: .1s ease-in-out;
			}
			._catlist_ .item .hide .total.act{
				color: #2d2c2c;
			}
				._catlist_ .item .hide .total:before{
					content: attr(data-cost);
					margin-right: 4px;
				}

				._catlist_ .item .hide .total:after{
					color: #757575;
					content: attr(data-txt);
					font-size: 12px;
					font-weight: 300;
					left: 0;
					letter-spacing: 0.26px;
					position: absolute;
					top: 4px;
				}


			._catlist_ .item .hide ._in_cart{
				float: right;
			}


._colors_{
	text-align: left;
}
	._colors_ li{
		background-position: center;
		background-size: cover;
		cursor: pointer;
		height: 11px;
		overflow: hidden;
		position: relative;
		transition: .2s ease-in-out;
		width: 11px;
	}
	._colors_ li.act{
		box-shadow: #fff 0 0 0 1px, #1d1d1d 0 0 0 2px;
	}

	._colors_ li a{
		border: none !important;
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
	}
	


._colors_list_ ._no_css_class{
	border: 1px solid #ebebeb !important;
	overflow: hidden;
}

._colors_list_ ._no_css_class:before,
._colors_list_ ._no_css_class:after{
	background: #ebebeb;
	content: '';
	height: 150%;
	left: 0;
	position: absolute;
	top: 0;
	width: 1px;
}
._colors_list_ ._no_css_class:before{
	transform-origin: left top;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
._colors_list_ ._no_css_class:after{
	left: auto;
	right: 0;
	transform-origin: right top;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



._colors_list_ ._bezhevyi{background: #D8CAAC;}
._colors_list_ ._belyi{background: #fff; border: 1px solid #ebebeb !important;}
._colors_list_ ._biryuzovyi{background: #55D5BE;}
._colors_list_ ._goluboi{background: #8ACAFF;}
._colors_list_ ._zheltyi{background: #FACB00;}
._colors_list_ ._zelenyi{background: #2E8B57;}
._colors_list_ ._korichnevyi{background: #834433;}
._colors_list_ ._krasnyi{background: #CA2C2A;}
._colors_list_ ._oranzhevyi{background: #F67000;}
._colors_list_ ._rozovyi{background: #F53D81;}
._colors_list_ ._seryi{background: #A3A3A3;}
._colors_list_ ._sinii{background: #140075;}
._colors_list_ ._tyomno-seryi{background: #474646;}
._colors_list_ ._fioletovyi{background: #7720A4;}
._colors_list_ ._chyornyi{background: #000;}
._colors_list_ ._multi{background-image: url(../images/multi_color.jpg);}



._sizes_{
	color: #2d2c2c;
	font-size: 12px;
	position: relative;
	text-align: center;
}
	._sizes_:after{
		background: url(../images/err_tool.svg);
		content: attr(data-error);
		font-size: 11px;
		height: 65px;
		left: calc(50% - 88px);
		letter-spacing: 0.46px;
		line-height: 1.5;
		opacity: 0;
		padding: 18px 17px 10px;
		position: absolute;
		text-align: left;
		top: 100%;
		transition: .2s ease-in-out;
		visibility: hidden;
		width: 176px;
		z-index: 5;
	}
	._sizes_._error:after{
		opacity: 1;
		visibility: visible;
	}

	._sizes_ li{
		align-items: center;
		border: 1px solid #979797;
		cursor: pointer;
		display: inline-flex;
		height: 27px;
		margin: 5px 3px;
		position: relative;
		text-align: center;
		transition: .1s ease-in-out;
		justify-content: center;
		vertical-align: top;
		white-space: nowrap;
		width: 50px;
	}

	._sizes_ li.alt{
		background: #A5A3A4;
		border-color: #A5A3A4;
		color: #fff;
	}
	
	._sizes_ li.act{
		background: #4f4f4f;
		border-color: #4f4f4f;
		color: #fff;
	}

	._sizes_ li.buy{
		background: #fff;
		border-color: #979797;
		box-shadow: 0 0 0 1px #979797;
		color: #2d2c2c;
	}

	._sizes_ li:not(._btn)._error{
		background: #fff;
		border-color: #DC0808;
		box-shadow: 0 0 0 1px #DC0808;
		color: #2d2c2c;
	}
	
	._sizes_ li._btn{
		background: #fff !important;
		border-color: #979797 !important;
		color: #000 !important;
		font-size: 10px;
		letter-spacing: 0.5px;
		line-height: 28px;
		position: relative;
		text-transform: uppercase;
		transition: .1s ease-in-out;
		width: 109px;
	}
		._sizes_ li:not(._btn):after{
			background: #404040;
			border: 1px solid #fff;
			border-radius: 50%;
			color: #fff;
			content: attr(data-count);
			font-size: 10px;
			height: 20px;
			letter-spacing: 0.28px;
			line-height: 20px;
			opacity: 0;
			position: absolute;
			right: -9px;
			top: -9px;
			transition: .1s ease-in-out;
			width: 20px;
			z-index: 1;
		}
		._sizes_ li.alt:after,
		._sizes_ li:not(._btn).act:after,
		._sizes_ li:not(._btn).buy:after{
			opacity: 1;
		}
		._sizes_ li.alt:after,
		._sizes_ li:not(._btn).act:after{
			background: #A5A3A4;
		}
		._sizes_ li:not(._btn).buy:after{
			background: #404040;
		}
		._sizes_ li._error:after{
			background: #DC0808;
		}


	._sizes_ li._dis{
		cursor: default;
		opacity: .3;
		pointer-events: none;
	}



._counter_{
	background: #e6e6e6;
	color: transparent;
	height: 25px;
	position: relative;
	text-align: center;
	transition: .1s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 50px;
}
._counter_.act{
	color: #2d2c2c;
}
	._counter_ input{
		background: transparent;
		border: none;
		font-size: 12px;
		height: 100%;
		left: 0;
		opacity: 0;
		pointer-events: none;
		position: absolute;
		text-align: center;
		top: 0;
		transition: .1s ease-in-out;
		width: 100%;
	}
	._counter_.act input{
		opacity: 1;
		pointer-events: auto;
	}

	._counter_ i{
		color: #2d2c2c;
		cursor: default;
		font-size: 20px;
		font-weight: 600;
		font-style: normal;
		letter-spacing: 0.71px;
		opacity: .4;
		position: absolute;
		top: 0;
		transition: .1s ease-in-out;
	}
	._counter_.act i{
		cursor: pointer;
		opacity: 1;
	}

	._counter_ .minus{
		left: -17px;
	}

	._counter_ .plus{
		right: -17px;
	}

	._counter_:after{
		background: url(../images/err_tool.svg);
		background-size: 100% 100%;
		color: #000;
		content: attr(data-err);
		font-size: 11px;
		height: 50px;
		left: calc(50% - 88px);
		letter-spacing: 0.46px;
		line-height: 1.5;
		opacity: 0;
		padding: 18px 17px 10px;
		position: absolute;
		text-align: center;
		top: 100%;
		transition: .2s ease-in-out;
		visibility: hidden;
		width: 176px;
		z-index: 5;
	}
	._counter_._err:after{
		opacity: 1;
		visibility: visible;
	}



._cartico_{
	background: url(../images/icons/cart.svg) no-repeat;
	display: block;
	height: 22px;
	opacity: 0;
	position: relative;
	transition: .2s ease-in-out;
	width: 19px;
}
._cartico_.act{
	opacity: 1;
}
	._cartico_:after{
		background: #404040;
		border: 1px solid #fff;
		border-radius: 50%;
		bottom: -2px;
		color: #fff;
		content: attr(data-num);
		font-size: 7px;
		font-style: normal;
		font-weight: 500;
		height: 16px;
		letter-spacing: 0.25px;
		line-height: 16px;
		min-width: 15px;
		padding: 0 2px;
		position: absolute;
		right: -4px;
		text-align: center;
	}



._in_cart_{
	background: #DFDEE0 url(../images/icons/cart2.svg) no-repeat 18px center;
	border: none;
	color: #fff;
	cursor: default;
	float: right;
	font-size: 9px;
	font-weight: 700;
	height: 25px;
	letter-spacing: .4px;
	line-height: 25px;
	padding-left: 20px;
	position: relative;
	text-transform: uppercase;
	transition: .1s ease-in-out;
	width: 110px;
}
._in_cart_.act{
	background-color: #000;
	cursor: pointer;
}
._in_cart_.act:not(.ok):hover{
	background-color: #000;
}
._in_cart_.ok{
	background: #40a264 url(../images/icons/incart.svg) no-repeat 15px center;
	cursor: default;
}
	._in_cart_:before{
		content: attr(data-txt);
	}
	._in_cart_.ok:before{
		content: attr(data-oktxt);
	}

	._in_cart_:after{
		background: url(../images/err_tool.svg);
		background-size: 100% 100%;
		color: #555;
		content: attr(data-err);
		font-size: 11px;
		font-weight: 400;
		height: 55px;
		left: calc(50% - 88px);
		letter-spacing: .2px;
		line-height: 1.3;
		opacity: 0;
		padding: 14px 17px 10px;
		position: absolute;
		text-align: center;
		text-transform: none;
		top: 100%;
		transition: .2s ease-in-out;
		visibility: hidden;
		width: 176px;
		z-index: 5;
	}
	._in_cart_._err:after{
		opacity: 1;
		visibility: visible;
	}



._accordion_{
	border-top: 1px solid #dadada;
}
	._accordion_ .item{
		border-bottom: 1px solid #dadada;
		padding-bottom: 3px;
	}

	._accordion_ .tglr{
		color: #3b3a3a;
		cursor: pointer;
		font-weight: 700;
		letter-spacing: 0.31px;
		padding: 14px 0 10px;
		position: relative;
	}
		._accordion_ .tglr:after{
			border-style: solid;
			border-width: 5px 4.5px 0 4.5px;
			border-color: transparent;
			border-top-color: #a8a8a8;
			content: "";
			height: 0;
			position: absolute;
			right: 1px;
			top: 20px;
			transition: .2s ease-in-out;
			width: 0;
		}
		._accordion_ .tglr.act:after{
			transform: rotate3d(1, 0, 0, 180deg);
		}


	._accordion_ .inner{
		color: #3b3a3a;
		display: none;
		font-size: 12px;
		margin-bottom: 10px;
	}



._others_{
	margin: 20px auto;
	opacity: 0;
	padding: 0 45px;
	position: relative;
	transition: opacity .3s ease-in-out;
	width: 1520px;
}
._others_.act{
	opacity: 1;
}
	._others_ .title{
		color: #313131;
		font-size: 20px;
		letter-spacing: .7px;
		text-align: center;
		text-transform: uppercase;
	}

	._others_ .swiper{
		margin-top: 30px;
	}
		._others_ .swiper .img{
			background-position: center;
			background-size: cover;
			display: block;
			height: 500px;
			margin-bottom: 10px;
			position: relative;
		}
			._others_ .swiper .img .brand{
			    height: 25px;
			    opacity: .35;
			    position: absolute;
			    right: 40px;
			    top: 15px;
			    transform-origin: right top;
			    -webkit-transform: rotate(-90deg);
			    transform: rotate(-90deg);
			    z-index: 1;
			}

			._others_ .swiper .img .tag{
				background: #3b3a3a;
				color: #fff;
				font-size: 15px;
				font-weight: 600;
				height: 30px;
				left: 0;
				line-height: 30px;
				position: absolute;
				text-align: center;
				text-decoration: none;
				text-transform: uppercase;
				top: 15px;
				width: 55px;
				z-index: 1;
			}
			._others_ .swiper .img .tag._sale{
				background: #D20000;
			}

			._others_ .swiper .img ._btn_{
				bottom: 0;
				left: 0;
				opacity: 0;
				position: absolute;
				width: 100%;
			}
			._others_ .swiper-slide:hover .img ._btn_{
				opacity: 1;
			}


		._others_ .swiper .name{
			color: #2d2c2c;
			float: left;
			font-size: 15px;
			letter-spacing: 0.34px;
			text-decoration: none;
			width: calc(100% - 40px);
		}

		._others_ .swiper ._cartico_{
			background-size: 100%;
			float: right;
			height: 26px;
			position: absolute;
			right: 6px;
			width: 22px;
		}
			._others_ .swiper ._cartico_:after{
			    bottom: -6px;
			    font-size: 10px;
			    height: 22px;
			    line-height: 22px;
			    min-width: 22px;
			    padding: 0 3px 0 4px;
			    right: -7px;
			}


		._others_ .swiper .data{
			color: #8f8f8f;
			float: left;
			font-size: 12px;
			letter-spacing: 0.27px;
			margin: 0;
			overflow: hidden;
			padding: 8px 0;
			width: 170px;
		}
			._others_ .swiper .data dt{
				clear: both;
				float: left;
				font-weight: 300;
				margin: 4px 0;
			}

			._others_ .swiper .data dd{
				float: left;
				margin: 4px 0 0 5px;
			}
				._others_ .swiper .data dd b{
					color: #3e3e3e;
					font-weight: 600;
				}

				._others_ .swiper .data ._colors_{
					margin: 2px 0 0;
				}
					._others_ .swiper .data ._colors_ li{
						display: inline-block;
						margin: 0 3px;
						vertical-align: top;
					}


		._others_ .swiper .cost{
			float: right;
			padding: 30px 0 0;
		}
			._others_ .swiper .cost .old{
				color: #000;
				font-size: 14px;
				font-weight: 600;
				letter-spacing: 0.31px;
				position: relative;
			}
				._others_ .swiper .cost .old:after{
					background: red;
					content: '';
					height: 1px;
					left: -5%;
					position: absolute;
					top: 50%;
					width: 110%;
				}

				
			._others_ .swiper .cost .cur{
				color: #000;
				font-size: 16px;
				letter-spacing: 0.4px;
				margin-left: 10px;
			}


	._others_ .arr{
		background: url(../images/icons/arr_l_g.svg);
		background-size: 100%;
		cursor: pointer;
		height: 32px;
		left: 0;
		position: absolute;
		top: calc(50% - 14px);
		transition: .2s ease-in-out;
		width: 18px;
		z-index: 2;
	}
	._others_ ._next{
		left: auto;
		right: 0;
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	._others_ .swiper-button-disabled{
		cursor: default;
		opacity: .3;
	}



._panel_{
	border: 1px solid #d8d8d8;
	color: #262028;
	padding: 25px 0;
	width: 330px;
}
	._panel_ .ttl{
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 0.89px;
		padding: 0 25px;
	}

	._panel_ ._tgl{
		color: #2d2c2c;
		cursor: pointer;
		font-size: 12px;
		font-weight: 700;
		display: none;
		letter-spacing: 0.5px;
		margin: 2px 0 2px 10px;
	}
		._panel_ ._tgl:after{
			border-style: solid;
			border-width: 4px 4px 0 4px;
			border-color: transparent;
			border-top-color: #332b35;
			content: "";
			display: inline-block;
			height: 0;
			margin-left: 8px;
			transition: .2s ease-in-out;
			-webkit-transform: translateY(-1px);
			transform: translateY(-1px);
			vertical-align: middle;
			width: 0;
		}
		._panel_ ._tgl.act:after{
			-webkit-transform: translateY(-1px) rotate3d(1, 0, 0, 180deg);
			transform: translateY(-1px) rotate3d(1, 0, 0, 180deg);
		}


	._panel_ .data1{
		font-size: 16px;
		margin-top: 30px;
		overflow: hidden;
		padding: 0 25px;
	}
		._panel_ .data1 dt{
			clear: both;
			float: left;
			font-weight: 300;
			margin: 7px 0;
			width: 190px;
		}

		._panel_ .data1 dd{
			float: left;
			color: #3e3e3e;
			font-weight: 600;
			margin: 7px 0;
		}


	._panel_ .data2{
		border-top: 1px solid #d8d8d8;
		color: #2d2c2c;
		font-weight: 700;
		letter-spacing: 0.58px;
		margin: 20px 0;
		overflow: hidden;
		padding: 25px 25px 0;
	}
		._panel_ .data2 dt{
			clear: both;
			float: left;
			margin: 10px 0;
			text-transform: uppercase;
		}

		._panel_ .data2 dd{
			float: right;
			margin: 7px 0;
		}
		
		._panel_ .data2 dd #total_sum{
			color: #939393;
			font-size: 16px;
		}
		._panel_ .data2 dd #sale_discount,
		._panel_ .data2 dd #total_discount{
			color: #d40000;
		}

		._panel_ .data2 dd #total_discount{
			display: inline-block;
			margin-top: 3px;
		}
		
		._panel_ .data2 dd span{
			font-size: 18px;
		}


	._panel_ ._btn_{
		letter-spacing: 1px;
		margin: 0 25px 10px;
		width: calc(100% - 50px);
	}



._addresses_{
	color: #2d2c2c;
	position: relative;
}
	._addresses_ .list{
		margin: 20px 0 5px;
		overflow: hidden;
	}
		._addresses_ .list li{
			border: 1px solid #d8d8d8;
			cursor: default;
			float: left;
			height: 205px;
			margin-bottom: 20px;
			overflow: hidden;
			padding: 12px 13px;
			position: relative;
			transition: border-color .15s ease-in-out;
			width: calc(50% - 10px);
		}
		._addresses_ .list li:nth-child(even){
			margin-left: 20px;
		}
		._addresses_ .list li.act{
			border-color: #3b3a3a;
		}
			._addresses_ .list .ttl{
				color: #3e3e3e;
				font-size: 12px;
				font-weight: 700;
				letter-spacing: 0.75px;
				min-height: 18px;
				text-transform: uppercase;
				width: calc(100% - 50px);
			}
			
			._addresses_ .list .ttl ._default{
				background: url(../images/icons/addr_ok.svg);
				content: "";
				cursor: pointer;
				display: none;
				height: 12px;
				margin: 1px 0 0 3px;
				opacity: 0;
				vertical-align: top;
				width: 12px;
			}
			
			._addresses_ .list .txt{
				font-weight: 300;
				letter-spacing: 0.5px;
				line-height: 1.6;
				margin-top: 20px;
			}

			._addresses_ .list ._edit{
				background: url(../images/icons/edit.svg);
				cursor: pointer;
				height: 17px;
				position: absolute;
				right: 40px;
				top: 10px;
				width: 15px;
			}

			._addresses_ .list ._delete{
				background: url(../images/icons/close.svg);
				background-size: 100%;
				cursor: pointer;
				height: 14px;
				position: absolute;
				right: 13px;
				top: 12px;
				width: 14px;
			}

			._addresses_ .list li:after{
				bottom: 5px;
				color: #999;
				content: attr(data-default);
				font-size: 10px;
				left: 13px;
				opacity: 0;
				position: absolute;
				text-transform: uppercase;
				transition: .15s ease-in-out;
			}
			._addresses_ .list li.act:after{
				opacity: 1;
			}

			._addresses_ .list .choose{
				background: #fff;
				border: 1px solid #4f4f4f;
				bottom: 12px;
				color: #4f4f4f;
				cursor: pointer;
				font-size: 12px;
				font-weight: 700;
				height: 40px;
				left: 13px;
				letter-spacing: 0.75px;
				position: absolute;
				transition: .15s ease-in-out;
				width: calc(100% - 26px);
			}



._slider_photos_{
	position: relative;
}
	._slider_photos_ img{
		width: 100%;
	}

	._slider_photos_ .arr{
		background: url(../images/icons/arr_l_g_2.svg) no-repeat center;
		cursor: pointer;
		height: 70px;
		left: 20px;
		opacity: .6;
		position: absolute;
		top: calc(50% - 35px);
		transition: .15s ease-in-out;
		width: 70px;
		z-index: 1;
	}
	._slider_photos_ .arr._prev{
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	._slider_photos_ .arr._next{
		left: auto;
		right: 20px;
	}
	._slider_photos_ .arr:hover{
		opacity: .9;
	}

	._slider_photos_ .dots{
		bottom: 20px;
		position: absolute;
		text-align: center;
		width: 100%;
		z-index: 1;
	}
	._slider_photos_ .swiper-pagination-bullet{
		background: #fff;
		height: 9px;
		margin: 0 7px;
		opacity: 1;
		transition: .3s ease-in-out;
		width: 9px;
	}
	._slider_photos_ .swiper-pagination-bullet-active{
		background: #332b35;
		-webkit-transform: scale(1.35);
		transform: scale(1.35);
	}



._to_top_{
	background: #fff url(../images/icons/arr_l_g_2.svg) no-repeat center;
	background-size: 12px;
	bottom: 45px;
	border: 1px solid #777;
	cursor: pointer;
	height: 50px;
	opacity: 0;
	position: fixed;
	right: 20px;
	transition: .1s ease-in-out;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	visibility: hidden;
	width: 50px;
	z-index: 5;
}
._to_top_.act{
	opacity: 1;
	visibility: visible;
}
._to_top_:hover{
	opacity: 1;
}
._to_top_.abs{
	position: absolute;
}



._loader_{
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 30px rgba(0, 0, 0, .05);
	height: 101px;
	left: calc(50% - 50px);
	opacity: 0;
	position: fixed;
	top: calc(50% - 50px);
	transition: .2s ease-in-out;
	visibility: hidden;
	width: 101px;
	z-index: 200;
}
._loader_.act{
	opacity: 1;
	visibility: visible;
}
	._loader_:before{
		animation: loader_opacity 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) .5s infinite;
		background: url(../images/preload_logo.svg) no-repeat center;
		content: '';
		height: 55px;
		left: 23px;
		opacity: 0;
		position: absolute;
		top: 23px;
		width: 55px;
	}
	
	._loader_ .in{
		animation: loader_scaling 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) .5s infinite;
		border-radius: 50%;
		height: 55px;
		left: 23px;
		opacity: 0;
		overflow: hidden;
		position: absolute;
		top: 23px;
		-webkit-transform: scale(.7);
		transform: scale(.7);
		width: 55px;
	}
		._loader_ .in:before{
			border: 4px solid #F5F5F5;
			border-radius: 50%;
			content: '';
			height: 100%;
			position: absolute;
			width: 100%;
		}

		._loader_ .in svg{
			animation: loader_rotate 1.5s linear .5s infinite;
			position: relative;
			-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
			z-index: 1;
		}

		._loader_ .in svg path{
			animation: loader_path 1.5s linear .5s infinite;
			fill: transparent;
			stroke: #797979;
			stroke-dasharray: 173;
			stroke-dashoffset: 173;
			stroke-width: 7;
		}



@keyframes loader_opacity{
	20%{
		opacity: 1;
	}
	60%{
		opacity: 1;
	}
	70%{
		opacity: 0;
	}
	100%{
		opacity: 0;
	}
}

@keyframes loader_scaling{
	20%{
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	60%{
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	90%{
		opacity: 0;
		-webkit-transform: scale(.7);
		transform: scale(.7);
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(.7);
		transform: scale(.7);
	}
}

@keyframes loader_rotate{
	50%{
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
	}
	100%{
		-webkit-transform: rotate(220deg);
		transform: rotate(220deg);
	}
}

@keyframes loader_path{
	60%{
		stroke-dashoffset: 0;
	}
	80%{
		stroke-dashoffset: 0;
	}
}



._opts_counter_{
	display: none;
	height: 180px;
	left: 10%;
	overflow: hidden;
	padding: 70px 10px 0;
	position: absolute;
	top: 50px;
	transition: left .4s ease-in-out, top .4s ease-in-out;
	width: 400px;
	z-index: 10;
}
._opts_counter_ .inner{
	background: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
	color: #000;
	font-size: 11px;
	height: 50px;
	letter-spacing: 0.46px;
	line-height: 50px;
	padding: 0 105px 0 15px;
	position: relative;
	width: 350px;
}
._opts_counter_ .inner i{
	font-style: normal;
	font-weight: 700;
}

._opts_counter_ .inner button{
	background: #4f4f4f;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 11px;
	font-weight: 700;
	height: 30px;
	letter-spacing: .7px;
	position: absolute;
	right: 15px;
	text-transform: uppercase;
	top: 10px;
	transition: .2s ease-in-out;
	width: 110px;
}
._opts_counter_ .inner button:hover{
	background: #3A3A3A;
}
._opts_counter_ .inner button._dis{
	opacity: .5;
	pointer-events: none;
}

._opts_counter_ .inner:after{
	bottom: -13px;
	content: attr(data-dis);
	left: 15px;
	position: absolute;
}


._errtool_{
	background: url(../images/err_tool.svg) no-repeat;
	background-size: 100%;
	font-size: 11px;
	height: 65px;
	left: calc(50% - 88px);
	letter-spacing: 0.46px;
	line-height: 1.5;
	opacity: 0;
	padding: 18px 17px 10px;
	position: absolute;
	text-align: left;
	top: 100%;
	transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
	visibility: hidden;
	width: 176px;
	z-index: 5;
}
._errtool_._nb{
	height: 90px;
	line-height: 1.35;
	margin-left: -120px;
	padding: 25px 20px 0;
	width: 240px;
}
._errtool_.act{
	opacity: 1;
	visibility: visible;
}

._catlist_ ._errtool_._nb{
	left: 80%;
	top: 110%;
}

._cattable_ ._errtool_._nb{
	left: 50%;
	top: 55%;
}

.sec_card ._errtool_._nb{
	left: 85%;
	top: 80%;
}

._popup_card ._errtool_._nb{
	left: auto;
	right: -33px;
	top: 80%;
}

._errtool_ i{
	background: #fff url(../images/icons/close.svg) no-repeat center;
	background-size: 8px;
	cursor: pointer;
	height: 15px;
	position: absolute;
	right: 14px;
	top: 16px;
	width: 15px;
}



._disabled_{
	opacity: .7;
	pointer-events: none;
}
