@import url(reset.css);
@import url(fontawesome.css);
@import url(museo.css);

/* |===============| global start |===============| */
html, body{
	height: 100%;
}
body{
	font: 1em/1.625em museo, sans-serif;
	color: #2e2e2e;
	background: #f1f1f1;
}
#wrapper {
	position: relative;
	padding: 0 0 260px;
	min-width: 33.75em;
	overflow: hidden;
	min-height: 100%;
}
[class*="__center"]{
	position: relative;
	margin: auto;
	width: 61.25em;
}
[class*="__center"]:before,
[class*="__center"]:after{
	content: "";
	display: block;
	clear: both;
}
	/* |===============| Отмена сбросса стилей start |===============| */
	p{
		margin: 18px 0 26px;
	}
	.text ul,
	.text ol,
	.text dd{
		padding-left: 16px;
		line-height: 1.625em;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6{
		margin: 20px 0;
	}
	h1,
	h2{
		font: 1.875em/1.2em museo;
	}
	h3{font-size:1.17em;}
	h5{font-size:0.83em;}
	h6{font-size:0.67em;}
	.text ul{list-style-type: disc;}
	.text ol{list-style-type: decimal;}
	a{
		/*color: #fff;*/
	}
        a:hover {
            text-decoration: none;
        }
	/* |===============| Отмена сбросса стилей end |===============| */
	
	/* |===============| form start |===============| */
	form input[type="checkbox"],
	form input[type="radio"] {
		display: none;
	}
	form input[type="checkbox"] + label,
	form input[type="radio"] + label {
		display: inline-block;
		vertical-align: middle;
		background: url(../img/radio.png) no-repeat 0 50%;
		cursor: pointer;
		margin: 0 13px 5px 0;
		padding: 0 0 0 19px;
	}
	
	form input[type="radio"]:checked + label {
		background-image: url(../img/radio_checked.png);
	}
	form input[type="checkbox"] + label {
		background: url(../img/checkbox.png) no-repeat 0 50%;
	}
	form input[type="checkbox"]:checked + label {
		background-image: url(../img/checkbox_checked.png);
	}
	input,
	textarea{
		font: 0.875em/1.4285em museo, sans-serif;
	}
	input:not([type="submit"]):not([type="button"]):not([type="image"]),
	textarea{
		padding: 7px 10px 7px;
		border: 1px solid rgba(0,0,0, 0.1);
		width: 169px;
		max-width: 100%;
		background: transparent;
		color: #2e2e2e;
	}
	input:not([type="submit"]):not([type="button"]):not([type="image"]):hover,
	textarea:hover{
		border-color: rgba(0,0,0, 0.3);
	}
	input:not([type="submit"]):not([type="button"]):not([type="image"]):focus,
	textarea:focus{
		border-color: #fcdb04;
	}
	textarea{
		height: 176px;
	}
	.infofield{
		display: block;
		margin: 0 0 8px;
	}
	#wrapper .error_input{
		background: #ffeff3;
	}
	::-webkit-input-placeholder {color:#9ca4a7;}
	::-moz-placeholder          {color:#9ca4a7;}/* Firefox 19+ */
	:-moz-placeholder           {color:#9ca4a7;}/* Firefox 18- */
	:-ms-input-placeholder      {color:#9ca4a7;}
	
	.btn,
	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	button{
		display: inline-block;
		font: 0.875em/3.5714em museo, sans-serif;
		border: 0;
		padding: 0 18px 0 20px;
		height: 3.2857em;
		color: #000;
		background: #fcdb04;
		text-decoration: none;
		
		-webkit-box-shadow: 1px 2px 0 #e6bd3c;
		-moz-box-shadow: 1px 2px 0 #e6bd3c;
		box-shadow: 1px 2px 0 #e6bd3c;
	}
	.btn:hover,
	input[type="button"]:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	button:hover{
		background: #ffe434;
	}
	/* |===============| selectbox start |===============| */
	.selectbox {
		position: relative;
		top: -1px;
		margin: 0 4px;
		vertical-align: middle;
		cursor: pointer;
		color: #2e2e2e;
	}
	.selectbox .select{
		border: 1px solid #d8d8d8;
		padding: 3px 25px 3px 9px;
		text-shadow: 1px 1px #FFF;
		background: #f1f1f1;
	}
	.selectbox .select:active {
		background: #fcfcfc;
	}
	.selectbox.focused .select {
		border: 1px solid #d8d8d8;
	}
	.selectbox .select .text {
		display: block;
		width: 100%;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}
	.selectbox .trigger {
		position: absolute;
		top: 0;
		right: 0;
		width: 34px;
		height: 100%;
	}
	.selectbox .trigger .arrow {
		position: absolute;
		top: 50%;
		right: 9px;
		margin-top: -2px;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 5px solid #2e2e2e;
		width: 0;
		height: 0;
		overflow: hidden;
	}
	.selectbox .dropdown {
		z-index:11;
		margin: -1px 0;
		padding: 4px 0;
		background: #f1f1f1;
		border: 1px solid #d8d8d8;
	}
	.selectbox .dropdown ul{
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.selectbox li {
		border-top: 1px solid #d8d8d8;
		padding: 4px 10px 3px;
	}
	.selectbox li:first-child{
		border-top: 0;
	}
	.selectbox li.sel,
	.selectbox li.sel:hover{
		cursor: default;
		color: #a8afb2;
	}
	.selectbox li.disabled {
		color: #AAA;
	}
	.selectbox li.disabled:hover {
		background: none;
	}
	/* |===============| selectbox end |===============| */

	/* |===============| form end |===============| */
/* |===============| global end |===============| */


/* |===============| header start |===============| */
.header{
	margin-bottom: 32px;
}
.inside .header{
	margin-bottom: 22px;
}
.header__center{
	display: table;
	padding: 14px 0;
	min-height: 5.25em;
}
.logo{
	width: auto;
	display: table-cell;
	vertical-align: middle;
	text-decoration: none;
	line-height: normal;
	font-weight: 900;
}
.header__cell, .header__center > .useradmin_contener {
	display: table-cell;
	vertical-align: middle;
	border-right: 1px solid #f8f8f8;
	padding: 4px 10px 0 26px;
	font-size: 0.875em;
	line-height: 1.1428em;
	text-decoration: none;
	color: #2e2e2e;
}
.header__cell:last-child{
	border-right: 0;
	padding-right: 0;
}
.header__cell .fa{
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
}
.header__cell .fa:before{
	display: inline-block;
	position: relative;
	top: -3px;
	border: 2px solid #fcdb04;
	width: 2.1666em;
	height: 2.1666em;
	font-size: 1.125em;
	line-height: 2em;
	text-align: center;
	color: #2e2e2e;
	
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}
.header__cell .fa:hover:before{
	background: #fcdb04;
	text-decoration: none;
}
a.header__cell:hover .fa:before{
	background: #fcdb04;
	text-decoration: none;
}
.header__cell__val{
	padding: 0 0 2px 10px;
	max-width: 68%;
	display: inline-block;
	vertical-align: middle;
	text-align: left;
}
.header__cell_cart{
	text-align: right;
	padding-left: 10px;
	width: 11em;
}
.header__cell_cart .header__cell__val{
	padding-left: 11px;
	white-space: nowrap;
	vertical-align: -7px;
}
.header__cell_sgn{
	width: 15.9285em;
}
.header__cell_ph{
	width: 18.2142em;
}
.header__cell a{
	text-decoration: none;
	color: #2e2e2e;
}
.header__cell a:hover{
	text-decoration: underline;
}
/* |===============| header end |===============| */

/* |===============| wrap end |===============| */
.wrap_nav{
	min-height: 3.75em;
	background: #2e2e2e;
}
.wrap_nav .wrap__center{
	position: static;
}
/* |===============| wrap end |===============| */

/* |===============| nav start |===============| */
.nav{
	max-width: 75.5102%;
	float: left;
	margin: 0 0 0 -19px;
}
.nav:after{
	content: "";
	clear: both;
	display: block;
}
.nav__item{
	position: relative;
	float: left;
	color: #fff;
}
.nav__item > a{
	display: inline-block;
	border-right: 1px solid rgba(255,255,255, 0.05);
	padding: 0 18px 0 19px;
	height: 4.4285em;
	font: 0.875em/4.4285em museo;
	color: #fff;
	text-decoration: none;
}
.nav__item:hover > a{
	color: #2e2e2e;
	background: #fcdb04;
}
.nav__popup{
	z-index: 1;
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	margin: -2px 0 0;
	padding: 18px 0 17px;
	min-width: 17.9375em;
	background: #fcdb04;
}
.nav__popup a{
	text-decoration: none;
	display: block;
	margin: 0 28px;
	border-top: 1px solid rgba(0,0,0, 0.1);
	height: auto;
	font-size: 0.875em;
	line-height: 2.5em;
	color: #2e2e2e;
}
.nav__popup__item:first-child a{
	border-top: 0;
}
.nav__popup a:hover{
	text-decoration: none;
}
.nav__item_popup > a:before{
	content: "\f0d7";
	display: inline-block;
	margin-right: 6px;
	font-family: Fontawesome;
}
.nav__item_popup:hover > a:before{
	content: "\f0d8";
}
.nav__popup__item:hover{
	background-color: #e2c504;
}
.nav-toggle{
	display: none;
	cursor: pointer;
	padding: 0 20px 0 0;
	font: 1.5em/2.5em fontawesome;
	color: #fff;
}
.nav-toggle:after{
	content: "\f0c9";
}
.nav-overlay{
	z-index: 2;
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000;
	opacity: 0.5;
}
/* |===============| nav end |===============| */

/* |===============| search start |===============| */
.search{
	position: relative;
	float: right;
	margin: 0.75em 0 0;
}
#wrapper .input_search{
	padding: 8px 10px 6px;
	padding-right: 1.75em;
	width: 14.375em;
	border-color: rgba(255,255,255, 0.1);
	color: #fff;
}
#wrapper .input_search:hover{
	border-color: rgba(255,255,255, 0.3);
}
#wrapper .input_search:focus{
	border-color: #fcdb04;
}
.submit_search,
.submit_search:hover,
#wrapper .submit_search:active{
	position: absolute;
	right: 8px;
	top: 9px;
	height: 18px;
	padding: 0;
	background: none;
	font: 1.125em/1em fontawesome;
	color: #fff;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.submit_search:after{
	content: "\f002";
	opacity: 0.1;
}
::-webkit-input-placeholder {color:rgba(255,255,255,0.1);}
::-moz-placeholder          {color:rgba(255,255,255,0.1);}/* Firefox 19+ */
:-moz-placeholder           {color:rgba(255,255,255,0.1);}/* Firefox 18- */
:-ms-input-placeholder      {color:rgba(255,255,255,0.1);}
/* |===============| search end |===============| */

/* |===============| promo start |===============| */
.promo{
	display: table;
	width: 100%;
	height: 20em;
}
.promo__left{
	display: table-cell;
	vertical-align: top;
	height: 100%;
}
.promo__right{
	display: table-cell;
	vertical-align: top;
	padding: 0 0 0 20px;
	width: 250px;
	height: 100%;
}
.promo__item{
	color: #2e2e2e;
	display: block;
	text-decoration: none;
	margin: 0 0 1.2322em;
	vertical-align: middle;
	min-height: 8.2777em;
	font-size: 1.125em;
	line-height: 1.2222em;
	-webkit-background-size: cover;
	background-size: cover;
}
.promo__item:first-child:last-child{
	display: table;
	width: 100%;
	height: 100%;
}
.promo__item:last-child{
	margin: 0;
}
.promo__item__in{
	display: table-cell;
	vertical-align: middle;
}
.promo__item img{
	vertical-align: top;
	min-width: 100%;
	max-width: 100%;
}
.promo__item_licvid{
	padding: 2.5625em 0.75em 1.25em 0.8125em;
	background: url(../img/licv.jpg);
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}
.promo__item_licvid:first-child:last-child{
	background-image: url(../img/licv_vertic.jpg);
}
.promo__item__dec{
	margin: 0 9px 0 0;
	float: left;
	font-weight: 300;
	font-size: 6.25em;
	line-height: 0.69em;
}
/* |===============| promo end |===============| */

/* |===============| slider start |===============| */
.slider{
	position: relative;
	overflow: hidden;
	height: 20em;
}
.slider__list{
	position: relative;
}
.slider__item{
	position: relative;
	display: block;
	height: 20em;
	color:#fff;
	background: no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
        text-decoration: none;
}
.slider__info{
	position: absolute;
	top: 2.625em;
	left: 2.6875em;
	border: 5px solid #fcdb04;
	padding: 3.1875em 1.25em 0.9375em 1.75em;
	width: 23.375em;
	height: 14.75em;
}



.slider__title{
	display: block;
	margin: 0 0 7px;
	font: 300 2.25em/1.2222em museo;
	color: #fcdb04;
}
.slidenator{
	position: absolute;
	left: 15px;
	top: 50%;
	width: 13px;
}
.slidenator__item{
	cursor: pointer;
	position: relative;
	display: block;
	margin: 0 0 8px;
	border: 1px solid #fcdb04;
	width: 12px;
	height: 12px;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
}
.slidenator__item,
.slidenator__item:after{
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}
.slidenator__item.active:after{
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 6px;
	height: 6px;
	background: #fcdb04;
}
/* |===============| slider end |===============| */

/* |===============| products start |===============| */
.products-wrap{
	position: relative;
	margin: 40px 0 35px;
}
.products{
	position: relative;
}
.products-wrap .products{
	left: -10000px;
	position: absolute;
}
.products-wrap .products_1{
	left: 0;
	position: relative;
}
.products__crop{
	/*overflow: hidden;*/
	margin: 13px auto 0;
	width: 61.25em;
	max-width: 100%;
        position: relative;
}

.products__crop:after {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    left: 100%;
    width: 8000px;
    background: #F1F1F1;
    z-index: 11;
}

 .products__crop:before {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    right: 100%;
    width: 8000px;
    background: #F1F1F1;
    z-index: 11;
}

.products__list{
	margin-right: -10px;
}
.products__item{
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin: 0 0 30px 1.0625em;
	/*padding: 0 0 5.125em;*/
	padding: 0 0 1.125em;
	width: 14.375em;
	/*min-height: 29.4375em;*/

}

.products__item .shop_form .error {
    font-size:80%;
    padding: 3px 8px;
    margin-left: 20px;
    margin-top:-4px;
}

.products__item:first-child{
	margin-left: 0;
}
.products__pic{
	overflow: hidden;
	position: relative;
	display: block;
	margin: 0 0 14px;
	height: 20em;
}
.products__pic img{
	max-width: 100%;
	min-width: 100%;
}
.products__link{
	
	font: 1.125em/1.4444em museo;
	color: #000;
	text-decoration: none;
}
.products__link:hover{
	text-decoration: underline;
}
.products__pic img{
	display: block;
}
.products__pic__pp{
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 130px 0 0;
	text-align: center;
	background: rgba(0,0,0, 0.5);
	opacity: 0;
}
.products__pic:hover img{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
.products__pic:hover .products__pic__pp{
	z-index: 1;
	opacity: 1;
}
.products__btn{
	display: inline-block;
	border: 3px solid #fcdb04;
	padding: 0 36px;
	font-size: 1em;
	line-height: 3.3125em;
	color: #fcdb04;
}
/*.product__unit{
	position: absolute;
	bottom: 0;
}*/
.products__next,
.products__prev{
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 25px;
	opacity: 0.3;
}

.products-wrap .products__next,
.products-wrap .products__prev{
	top: -63px;
}

.products_item .products__next,
.products_item .products__prev{
	top: 6px;
}
.products__next:hover,
.products__prev:hover{
	opacity: 1;
}
.products__next:after,
.products__prev:after{
	content: "\f137";
	font: 1.25em/1.1111em fontawesome;
	color: #000;
}
.products__next{
	right: -2px;
}
.products__next:after{
	content: "\f138";
}
.products_catalog{
	margin: 0 -1.0625em;
}
.products_catalog .products__item{
	margin-bottom: 43px;
}
.products_catalog .products__item:first-child{
	margin-left: 17px;
}
.products_item{
	margin-bottom: 12px;
}
.products_item h2{
	padding: 0 80px 0 0;
	margin-bottom: 31px;
}
/* |===============| products end |===============| */

/* |===============| paginator start |===============| */
.paginator{
	text-align: center;
	margin: -5px 0 0 6px;
}
.paginator a{
	text-decoration: none;
	color: #2e2e2e;
	font-size: 1em;
}
.paginator a:hover{
	color: #fcdb04;
}
.paginator a,
.paginator .active{
	position: relative;
	padding: 0 6px;
}
.paginator .active{
	color: #a8afb2;
	font-size: 1em;
}
.paginator .active:after{
	content: "";
	position: absolute;
	border-top: 5px solid #fcdb04;
	left: 4px;
	right: 4px;
	top: -8px;
}
.paginator .prev{
	margin: 0 4px 0 0;
}
.paginator .next{
	margin: 0 0 0 4px;
}
.paginator .prev:after,
.paginator .next:after{
	font-size: 0.75em;
	font-family: fontawesome;
	vertical-align: middle;
}
.paginator .prev:after{
	content: "\f137";
}
.paginator .next:after{
	content: "\f138";
}
/* |===============| paginator end |===============| */

/* |===============| tabs start |===============| */
.tabs{
	display: block;
	overflow: hidden;
}
.tabs__item{
	cursor: pointer;
	float: left;
	margin: 0 10px 20px 0;
	border: 1px solid rgba(0,0,0, 0.1);
	padding: 0 22px 0;
	font-size: 1.25em;
	line-height: 1.95em;
	color: #2e2e2e;
}
.tabs__item:hover{
	border-color: #fcdb04;
}
.tabs__item_active{
	position: relative;
	cursor: default;
	border-color: #fcdb04;
	background: #fcdb04;
}
.tabs__item_active:after{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -13px;
	width: 13px;
	height: 6px;
	border-width: 10px 10px 0 10px;
	border-color: transparent;
	border-top-color: #fcdb04;
	border-style: solid;
}
/* |===============| tabs end |===============| */

/* |===============| rating start |===============| */
.rating__item{
	margin: 0 -1px 12px 0;
	display: inline-block;
	opacity: 0.4;
        cursor: pointer;
}
.rating__item:after{
	content: "\f005";
	font-family: fontawesome;
	font-size: 0.875em;
	color: #000;
}
.rating__item_active{
	opacity: 1;
}
/* |===============| rating end |===============| */

/* |===============| about end |===============| */
.about{
	margin: 27px 0 44px;
	font-size: 1em;
	line-height: 1.625em;
	-webkit-column-count:2;
	-moz-column-count:2;
	column-count:2;
}
.about p{
	margin: 0 0 28px;
}
/* |===============| about end |===============| */

/* |===============| inews start |===============| */
.inews{
	margin: 20px -16px 20px;
}
.inews__item{
	vertical-align: top;
	margin: 0 0 1.25em;
	padding: 7px 13px;
	display: inline-block;
	border: 1px solid transparent;
	width: 15.375em;
	text-decoration: none;
	line-height: 1.1875em;
	color: #2e2e2e;
}
.inews__date{
	margin: 0 0 11px;
	display: block;
	font-size: 1.875em;
	line-height: 1.0666em;
}
.inews__date b{
	font-weight: 900;
}
.inews__item:hover{
	border-color: #fcdb04;
}
/* |===============| inews end |===============| */

/* |===============| footer start |===============| */
.footer{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.footer__center{
	border-top: 1px solid #d8d8d8;
	padding: 35px 0 50px;
}
.footer__left{
	float: left;
	max-width: 18,75em;
	font-size: 0.875em;
}

.footer__right{
	float:right;
        width:70%;
}

.footer__left p:first-child{
	margin-top: 0;
}
.footer__left p{
	line-height: 17px;
	margin: 9px 0 14px;
	color: #868c8e;
}
.footer__menu{
	max-width: 32,375em;
	float: right;
	margin: -3px 0 0;
}
.footer__menu a{
	display: inline-block;
	margin: 0 0 0 34px;
	font-size: 0.875em;
	color: #868c8e;
	text-decoration: none;
}
.footer__menu a:hover{
	color: #2e2e2e;
}
.social{
	margin: 42px 0 0;
	float: right;
	clear: right;
}
.social .fa{
	margin-left: 5px;
	width: 1.7222em;
	height: 1.7222em;
	color: #fff;
	text-align: center;
	font-size: 1.125em;
	line-height: 1.8333em;
	text-decoration: none;
}
.social .fa:hover{
	opacity: 0.8;
}
.social .fa-facebook{
	background: #46629b;
}
.social .fa-vk{
	background: #607e9c;
}
.social .fa-twitter{
	background: #59adeb;
}
.social .fa-instagram{
	background: #855f4a;
}
/* |===============| footer end |===============| */

/* |===============| breadcrumb start |===============| */
.breadcrumb{
	font-size: 0.625em;
	margin: 0 0 3px;
}
.breadcrumb a{
	text-transform: uppercase;
	text-decoration: none;
	color: #2e2e2e;
}
.breadcrumb a:hover{
	text-decoration: underline;
}
/* |===============| breadcrumb end |===============| */

/* |===============| shop_search start |===============| */
.shop_search{
	margin: 18px 0 30px;
	border: 1px solid #d8d8d8;
	padding: 19px 20px 19px;
	font-size: 1em;
}
.shop_search > div{
	display: inline-block;
	margin: 0 30px 0 0;
}
.input-title{
	display: inline-block;
}
.shop_search input[type="text"]{
	margin: 0 2px;
	padding: 3px 8px;
	line-height: 18px;
	vertical-align: middle;
}
#wrapper .shop_search_article input{
	width: 229px;
}
.shop_search .shop_search_param{
	display: block;
	margin: 15px 0 10px;
}
#wrapper .shop_search_price input{
	width: 55px;
	text-align: center;
}
.shop_search_param .input-title{
	margin: 0 3px 0 21px;
	font-weight: 500;
	vertical-align: 2px;
}
.shop_search_param .input-title:first-child{
	margin-left: 0;
}
.shop_search input[type="submit"]{
	width: 119px;
	font-size: 1em;
}
/* |===============| shop_search end |===============| */

/* |===============| pics start |===============| */
.pics{
	float: left;
	margin: 0 22px 0 0;
	width: 30em;
}
.pics__big,
.pics__mini{
	border: 1px solid #d8d8d8;
	width: 30em;
	/*height: 43em;
	line-height: 42.5em;*/
	text-align: center;
}
.pics__big__img,
.pics__mini__img{
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
        width:100%;
        height:auto;
}
.pics__mini__img{
	width: 100%;
	height: 100%;
}
.pics__mini{
	display: inline-block;
	margin: 19px 16px 0 0;
	width: 5.4125em;
	height: 7.625em;
	line-height: 7em;
        cursor: pointer;
}

.pics__mini_active {
    cursor:default;
}

.pics__mini:hover,
.pics__mini_active{
	opacity: 0.7;
}
/* |===============| pics end |===============| */

/* |===============| item start |===============| */
.item{
	overflow: hidden;
	padding: 5px 0 0;
	margin: 0 0 54px;
}
.item__info{
	overflow: hidden;
	position: relative;
	top: -7px;
	vertical-align: top;
	line-height: 26px;
}
.item__info__art{
	font-size: 0.75em;
	color: #565656;
}
.item__info ul{
	margin: 4px 0;
}
.item__info__unit{
	margin: 22px 0 25px;
	padding: 21px 0 17px;
	border-top: 1px solid #d8d8d8;
	border-bottom: 1px solid #d8d8d8;
}
.item__info__btns{
	margin: 20px 0 0;
}

.item__info__btns .btn{
	padding: 0 20px;
	margin: 0 16px 15px 0;
	vertical-align: top;
}
#wrapper .item__info__btns .btn_darck{
	padding: 0 32px;
}
.item__info h3{
	margin-bottom: 9px;
}
.item__info p{
	margin: 9px 0;
}

.item__info__price__param {
    white-space: nowrap;
}

.item__info__price{
	display: inline-block;
}
.item__info__price b{
	font-weight: normal;
	font-size: 1.875em;
	line-height: 1.1333em;
	vertical-align: -5px;
}
.item__info__unit .selectbox{
	margin: 9px 42px 9px 4px;
}
.item__info__unit .selectbox .select{
	min-width: 129px;
	padding-left: 15px;
}
.selectbox li{
	padding-left: 15px;
}
/* |===============| item end |===============| */

/* |===============| popup start |===============| */
.popup{
	display: none;
	position: absolute;
	top: 15.625em;
	left: 50%;
	margin-left: -13.5em;
	padding: 24px 18px 35px;
	width: 27.0625em;
	background: #fff;
        z-index: 15;
}
.popup_call{
	padding-bottom: 36px;
}
.popup__heading{
	text-align: center;
	font-size: 1.25em;
	line-height: 1.3em;
	margin: 0 0 28px 3px;
}
.popup__close{
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	padding: 8px 0 0 5px;
	width: 30px;
	height: 30px;
}
.popup__close:before{
	content: "\f00d";
	font: 1em fontawesome;
	color: #2e2e2e;
}
.popup__item{
	margin: 0 0 16px;
}
.popup__item__title{
	display: inline-block;
	margin: 0 14px 0 0;
	width: 88px;
	vertical-align: middle;
	text-align: right;
}
#wrapper .popup__field{
	padding: 6px 10px 6px;
	width: 259px;
	vertical-align: middle;
}
.popup__textarea{
	padding-top: 4px;
	width: 259px;
	height: 150px;
	vertical-align: top;
	resize: none;
}
.popup__btns{
	padding: 3px 0 0 106px;
}
.btn_enter{
	padding: 0 24px 0 25px;
}
.btn_enter:hover .castle-icon{
	background: url(../img/castle_h.png);
}
.popup__unit{
	margin: 34px 0 -2px 159px;
}
.popup__link{
	display: inline-block;
	text-decoration: none;
	margin: 0 0 0 12px;
	font-size: 0.875em;
	color: #2e2e2e;
}
.popup__link:hover{
	color: #000;
}



.cart_one_click .popup__item__title {
    width:200px;
}

.cart_one_click .popup__btns {
    padding-left: 218px;
}
/* |===============| popup end |===============| */

/* |===============| other start |===============| */
.btn,
a,
input,
button,
.fa:before,
.nav__popup__item,
.tabs__item,
.products__pic__pp,
.products__next,
.products__prev,
.selectbox li,
.products__pic img{
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.btn_cart:before{
	content: "\f07a";
	display: inline-block;
	font-size: 1.125em;
	line-height: 2.3888em;
	font-family: fontawesome;
	margin: 0 8px 0 0;
}
.heading{
	margin: 0 0 18px;
}
.heading:after{
	content: "";
	display: block;
	clear: both;
}
.heading h2{
	float: left;
	margin: 0 0;
	max-width: 600px;
}
.heading .rating{
	display: inline-block;
	margin: 8px 0 0 8px;
}
.heading .rating__item{
	margin-bottom: 0;
}
.sort-select{
	float: right;
	margin: 7px 0 0 0;
	font-size: 1em;
}
.sort-select .select{
	width: 227px !important;
}
#wrapper .btn_darck{
	background: #858d90;
	color: #fff;
	-webkit-box-shadow: 1px 2px 0 #000;
	-moz-box-shadow: 1px 2px 0 #000;
	box-shadow: 1px 2px 0 #000;
}
#wrapper .btn_darck:hover{
	background: #686d6f;
}
.products_catalog .btn_darck{
	width: 190px;
	display: none;
}
.text_page{
	  margin: -2px 0 12px;
}
/* |===============| other end |===============| */

/* |===============| media start |===============| */
@media (max-width: 1014px) {
	[class*="__center"]{
		padding: 0 30px;
		width: 100%;
	}
	.footer__center{
		padding: 35px 30px 50px;
	}
	.header__cell:not(.header__cell_ph){
		padding: 10px;
		width: 81px;
		text-align: center;
	}
	.header__cell .fa{
		display: inline-block;
	}
	.header__cell__val{
		display: none;
	}
	.header__cell_ph .fa,
	.header__cell_ph .header__cell__val{
		display: inline-block;
	}
	.nav{
		z-index: 3;
		position: absolute;
		left: -100%;
		top: 0;
		bottom: 0;
		margin: 0;
		padding: 21px 0 0;
		min-width: 252px;
		max-width: 100%;
		background: #2e2e2e;
	}
	.nav__item{
		float: none;
		border-right: 0;
		border-top: 1px solid rgba(255,255,255, 0.1);
	}
	.nav__item:first-child{
		border-top: 0;
	}
	.nav__item:hover > a,
	.nav__item > a{
		display: block;
		margin: 0;
		padding: 0 19px;
		font-size: 1.125em;
		line-height: 2em;
		height: auto;
		background-color: transparent;
		color: #fff;
	}
	.nav__item > a:before{
		display: none;
	}
	.nav__popup{
		min-width: 0;
		margin-left: 39px;
		padding: 6px 19px 32px 0;
		position: static;
		display: block !important;
		opacity: 1 !important;
		background-color: transparent;
	}
	.nav__popup a{
		margin: 0;
		border: 0;
		line-height: 36px;
		color: #fff;
	}
	.nav-toggle{
		display: block;
		float: left;
	}
	.nav__popup__item:hover{
		background: none;
	}
	#wrapper .input_search{
		width: 360px;
	}
	.heading h2{
		max-width: 50%;
	}
	.products_catalog{
		text-align: center;
		margin: 0 -24px;
	}
	.products_catalog .products__item{
		margin: 0 7px 43px;
	}
	.products__crop{
		width: 47em;
	}
	.input_search::-webkit-input-placeholder {color: #fff;}
	.input_search::-moz-placeholder          {color: #fff;}/* Firefox 19+ */
	.input_search:-moz-placeholder           {color: #fff;}/* Firefox 18- */
	.input_search:-ms-input-placeholder      {color: #fff;}
}
@media (max-width: 900px) {
	.promo{
		height: auto;
		display: block;
	}
	.promo__left{
		display: block;
	}
	.promo__right{
		display: table;
		width: 100%;
		padding: 20px 0 0;
		height: 169px;
	}
	.promo__item,
	.promo__item:first-child:last-child{
		display: table-cell;
		vertical-align: middle;
		width: 250px;
		padding: 0 0 0 20px;
	}
	.promo__item:first-child,
	.promo__item:first-child:last-child{
		padding: 0;
		width: auto;
		text-align: center;
	}
	.promo__item__in{
		display: inline-block;
	}
	.about{
		-webkit-column-count: auto;
		-moz-column-count: auto;
		column-count: auto;
	}
	.footer__left{
		max-width: 180px;
	}
	.pics{
		width: 586px;
		overflow: hidden;
		float: none;
		display: block;
		margin: 0 0 30px;
	}
	.pics__big{
		float: left;
	}
	.pics__mini{
		float: right;
		margin: 0 0 20px;
	}
	.item__info{
		display: block;
		top: 0;
		margin-top: 30px;
	}
	.products_item{
		display: none;
	}
}
@media (max-width: 818px) {
	.products__crop {
		width: 30.75em;
	}
}
@media (max-width: 800px) {
	.footer__menu{
		display: none;
	}
	.social{
		float: none;
		display: inline-block;
		margin-top: 0;
	}
	.footer__center{
		display: table;
	}
	.footer__right,
	.footer__left{
		display: table-cell;
		vertical-align: middle;
	}
	.footer__right{
		text-align: right;
	}
	.heading h2{
		max-width: 100%;
	}
	.shop_search,
	.paginator,
	.sort-select,
	.breadcrumb{
		display: none;
	}
	.products_catalog{
		margin-bottom: 60px;
	}
	.products_catalog .btn_darck{
		display: block;
		margin: 30px auto 0;
	}
}
@media (max-width: 720px) {
	.header__cell_ph {
		padding: 10px;
		width: 81px;
		text-align: center;
	}
	.header__cell_ph .header__cell__val{
		display: none;
	}
	.tabs__item{
		display: none;
	}
	.tabs__item_active{
		display: block;
	}
	.pics__mini{
		display: none;
	}
}
@media (max-width: 540px) {
	
}
/* |===============| media end |===============| */

/* |===============| default reset start |===============| */
.rating {
    display: block;
    padding:0;
    margin:0;
    border:none;
}

.cart_count input:not([type="submit"]):not([type="button"]):not([type="image"]) {
    width:50px;
}


.photo_name {
    display:none;
}

.captcha_update .button-refresh {
    text-decoration: none;
    
}

.captcha_update .button-refresh:after {
    content: '\f021';
    font: 12px/12px FontAwesome;
    
}



.product__unit .shop_waitlist_title {
    font-size:80%;
}

.product__unit .shop_waitlist_form input:not([type="submit"]):not([type="button"]):not([type="image"]) {
    width:68%;
}

.product__unit .shop_no_buy, .product__unit .shop_no_buy_good {
    font-size: 90%;
    margin-bottom: 10px;
}

.shop_form_param__item {
    margin-bottom: 10px;
}

.item__info__unit .shop_form .error {
    margin-left:4px;
}

/* |===============| default reset end |===============| */


/* |===============| style |===============| */
.clauses_all_img > a, .news_all_img > a {
    display: inline-block;
    height: 120px;
    overflow: hidden;
    width: 180px;
    margin-right: 10px;
}

.clauses_all_img > a > img, .news_all_img > a > img {
    width: 100%;
    height: auto;
}

a[rel^="prettyPhoto"] {
    display: inline-block;
    position: relative;
}

a[rel^="prettyPhoto"] .zoom {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 30%;
    width: 50%;
    margin: -15% 0 0 -25%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
}

a[rel^="prettyPhoto"] .zoom:after {
    content: "\f002";
    font-size: 30px;
    font-family: fontAwesome;
    color:#fff;
    background-color:rgba(0,0,0,0.35);
    width:60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    display: block;
    margin: 0 auto;
}

a[rel^="prettyPhoto"]:hover .zoom {
    opacity: 100;
}



.error_input {
    border-color: #d35400 !important;

}

.errors {
   
 
    color:#d35400;
}

.captcha {
    margin-top: 15px;
}

.captcha .captcha-image {
    margin-right: 15px;
}

.captcha input[name="captcha"] {
    width: 150px;
}



.previous_next_links:before, .previous_next_links:after {
    display: table;
    content: " ";
}

.previous_next_links:after {
    clear: both;
}

.previous_next_links {
    height: auto;
}

[class$="_list"] .block:before, [class$="_list"] .block:after {
  display: table;
  content: " ";
}

[class$="_list"] .block:after {
  clear: both;
}

[class$="_list"] .block {
  margin-bottom: 20px;
}

[class$="_list"] .block-row-img {
  float: left;
  margin-right: 15px;
  width: 120px;
  overflow: hidden;
}

[class$="_list"] .block-row-img img {
  width: 100%;
  height: auto;
}

[class$="_list"] .block-text {
  float: left;
  width: 86%;
}

[class$="_list"] .block h4 {
  margin:0 0 10px;
}

/*.date,[class$="_date"] {
    font: 14px/20px clear;
    color: #a8afb2;
}*/

.block_header {
   font-size:1.17em;
   margin: 20px 0;
}

.search_list .search_text {
    margin-bottom: 20px;
}

/* |===============| style end |===============| */