/***********************************************************

1. CSS RESET

2. VARIABLES
2.1 GRADIENTS
2.2 CSS3 TRANSITIONS

3. GLOBAL THEME STYLES

4. TYPOGRAPHY
4.1 HEADINGS
4.2 PARAGRAPHS & LISTS
4.3 LINKS
4.4 PRODUCT ATTRIBUTES (name, description, price)
4.5 RTE

5. FORMS & COMPONENTS
5.2 ALERTS
5.3 BUTTONS

6. GLOBAL PAGE LAYOUT

7. SIDEBAR CONFIGURATION

8. MAIN PAGE
8.1 HEADER
8.2 NAVIGATION
8.3 NIVOSLIDER
8.4 SHOWCASE
8.5 MAIN PRODUCT LISTING
8.6 FOOTER

9. COLLECTION PAGES
9.1 PAGES CONTENT
9.2 BREADCRUMBS
9.3 COLLECTION LISTING
9.4 PAGINATION

10. SIDEBAR WIDGETS
10.1 LINKS LIST
10.2 SIDEBAR PRODUCT LISTING

11. SEARCH RESULTS PAGE

12. PRODUCT PAGE
12.1 PRODUCT IMAGES
12.2 PRODUCT INFO
12.3 PRODUCT PAGINATION
12.4 RELATED PRODUCTS

13. BLOG
13.1 POSTS LISTING
13.2 SINGLE POST

14. CUSTOMER PAGES
14.1 LOG IN
14.2 ACCOUNT
14.3 ADDRESSES
14.4 ORDERS

15. CART PAGE
15.1 CART PRODUCTS
15.2 GUEST CHECKOUT

16. CONTACTS PAGE

***********************************************************/



/***************************************************************************
													 1. CSS RESET
***************************************************************************/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, 
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, input, textarea, button
{
	margin: 0;
	padding: 0;
	border: 0;
	outline: none !important;
	vertical-align: top;
	background: transparent;
	font-weight: normal;
	line-height: 1.5em;
	/* -webkit-transform-style: preserve-3d; */
	/* -webkit-transform:translate3d(0,0,0); */
}

ol, ul {list-style:none;}
a, span {vertical-align:baseline;}
b, strong {font-weight: bold;}
i, dfn {font-style: italic;}

img {max-width: 100%;height: auto;}



/***************************************************************************
													 2. VARIABLES
***************************************************************************/

/* 2.1 GRADIENTS */




select{
	visibility: hidden;
}

















/***************************************************************************
													 3. GLOBAL THEME STYLES
***************************************************************************/

.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* Internet Explorer/Edge */
	user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
}

/* hiding placeholder text on focus in webkit, thanks to http://www.kolodvor.net/2012/03/23/webkit-placeholder-attribute-behavior */
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {color: transparent;}



/* clearfix - nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix {
	zoom: 1;
}

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

.clearfix:after {
	clear: both;
}



/* utility classes: hidden, float left, float right, etc. */
.hidden,
.visuallyhidden {
	display: none;
}
 
.left {
	float: left;
}
.right {
	float: right;
}



/* fancybox styles */
#fancybox-wrap {
	padding: 0 !important;
}
#fancybox-content {
	width: 100% !important;
	text-align: center;
}

#fancybox-title {
	left: 50% !important;
}
#fancybox-title #fancybox-title-float-wrap {
	margin: 0 0 0 -50% !important;
}



/* addthis styles */
.addthis_toolbox {
	margin: 15px 0 0 0;
	border-top: 1px solid #dbdbdb;
}
.addthis_toolbox > a {
	margin: 15px 15px 0 0 !important;
	padding: 0 !important;
}



/* jquery.formstyler styles for selects */
.jq-selectbox {
	display: block;
	z-index: 1000 !important;
	cursor: pointer;
	opacity: 0;
}
.jq-selectbox__select-text {
	width: 100%;
	display: block;
	overflow: hidden;
	/* text-overflow: ellipsis; */
	white-space: nowrap;
}
.jq-selectbox__trigger i {
	position: absolute;
	top: 0;
	right: 0;
	
}
.jq-selectbox__dropdown {
	width: 100%;
	
}

.jq-selectbox.opened .jq-selectbox__trigger i {
	-webkit-transform: rotate(180deg);
		 -moz-transform: rotate(180deg);
			-ms-transform: rotate(180deg);
			 -o-transform: rotate(180deg);
					transform: rotate(180deg);
}

/* add to cart message */
.cart_popup {
	width: 100%;
	height: 86px;
	font-size: 25px;
	line-height: 85px;
	color: #fff;
	text-align: center;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA9JREFUeNpiYGBgOAIQYAAAyQDFiywh4QAAAABJRU5ErkJggg==);
	display: none;
}

/***************************************************************************
													 4. TYPOGRAPHY
***************************************************************************/
body {
	font-family: "Open Sans", sans-serif;
	font-size: 62.5%;
	color: #4d4d4d;
	background: #000;
}
.login_links_box li {
	padding: 10px 0px;
	/* border-right: 1px solid red; */
}
.usermenus:hover .login_links_box a span{
	font-weight:bold;
}

.login_links_box .nav.nav-pills.login_links li a {
	color: #303030;
	font-family: "OpenSans", sans-serif;
	font-size: 14px;
	text-decoration: none;
	padding: 0px 15px;
	border-radius: 0;
	vertical-align: top;
}
.login_links_box .nav.nav-pills.login_links li a:hover span{
	color:#691a99;
}
.login_links_box a:first-child,
.login_links_box .firstItem a {
	border-right: 1px solid #d6d6d6;
}
.login_links_box a:last-child,
.login_links_box .lastItem a {
	border-right: none;
}
.login_links_box .nav.nav-pills.login_links li a:hover {
	background: none transparent;
}
.login_links_box a span {
	color: #303030;
	font-family: "OpenSans", sans-serif;
	font-size: 14px;
	text-decoration: underline;
	font-weight: 300;
}
.login_links_box a .icon {
	color: #691a99;
	font-size: 23px;
	text-decoration: none;
	display: inline-block;
}

.login_links_box ul.usermenu li a:hover .icon{
	color: #66ba6a;
}


.login_links_box ul.usermenu li .icon.icon-event{
	font-size:17px;
}

.login_links_box ul.usermenu li .icon{
	font-size: 19px;
	margin-right: 10px;
	color: #bdbdbd;
	width: 21px;
}

/* 4.1 HEADINGS */

.column_center h1,
.column_center h2,
.column_center h3,
.column_center h4,
.column_center h5,
.column_center h6 {
	margin: 15px 0;
	padding: 0 0 5px 0;
	border-bottom: 1px solid #000000;
	font: 17px Roboto;
	color: #000000;
	text-transform: uppercase;
}

.column_center h2,
.column_center h3,
.column_center h4 {
	font-size: 15px;
}

.column_center h5,
.column_center h6 {
	font-size: 13px;
}

.column_center .page_heading,
.column .widget h3.widget_header,
.widget_related_products h3 {
	text-transform: none;
	font-weight: normal;
	padding: 0 0 3px 0;
	margin: 0;
	margin-bottom: 30px;
	border: none;
	font: 20px Roboto;
	color: #333;
	border-bottom: 1px solid #cccccc;
}
.column_center .page_heading span,
.column .widget h3.widget_header span,
.widget_related_products h3 span {
	background: none #fff3b5;
	padding: 6px 15px;
	display: table;
}
.column_center .page_heading a {
	float: right;
}
.column_center .page_heading a:hover {
		color: #ffffff;
}
.product_listing_main .product__1 {
	width: 20%;
}


/* 4.2 PARAGRAPHS & LISTS */
p {
	margin: 15px 0;
	padding: 0;
}

.column_center ul {
	list-style-type: square;
	list-style-position: inside;
}
.column_center ol {
	list-style-type: decimal;
	list-style-position: inside;
}

.f_cont {
  color: #676767;
  padding: 0 0 7px;
  margin: 0;
}

/* 4.3 LINKS */
a {
	color: #66ba6a;
	text-decoration: underline;
}
a:hover, a:focus {
	text-decoration: none;
}

/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product {
/*.product > div {*/
	position: relative;
	padding: 11px;
	border-radius: 4px;
	border: 1px solid transparent;
	transition: box-shadow 0.5s ease;
	z-index: 1;
	background: none #fff;
}
.product form.shop_form {
	display: block;
	float: left;
}
.product .functional-buttons,
.product .comments_note {
	display: block;
	float: right;
}
.product hr.dotted {
	display: block;
	clear: both;
}
.product .cart_one_click {
	clear: both;
}
.product:hover {
/*.product > div:hover {*/
	border: 1px solid #e1e1e1;
	margin-bottom: -80px;
/*	box-shadow: 0 0 12px rgba(0,0,0,0.2);*/
	-moz-box-shadow: 2px 3px 10px rgba(0,0,0,.21);
	-webkit-box-shadow: 2px 3px 10px rgba(0,0,0,.21);
	box-shadow: 2px 3px 10px rgba(0,0,0,.21);
	z-index: 10;
}
.product:hover .sale-box,
.product:hover .product_desc,
.product:hover .cart_one_click {
	display: block !important;
}
.product .sale-box .shop_article,
.product .sale-box .availability,
.product .sale-box .shop_article,
.product .sale-box .shop_article {
	border-radius: 4px;
	border: none;
	background: none #f6ee38;
	height: 23px;
	color: #333;
	font-size: 11px;
	padding: 3px 7px;
	margin-bottom: 5px;
}
.product .sale-box .availability {
	background-color: #35bd35;
	color: #fff;
}
.product .sale-box .availability .fa {
	margin: 2px 0 0 0;
}
.product_img {
	text-align: center;
	position: relative;
}
.product_img a {
	display: block;
		padding: 0 10px;
}
.product_img a img {
	transition: all 0.5s ease; 
}
.product_img a:hover img {
	transform: scale(0.9,0.9);
		-o-transform: scale(0.9,0.9);
		-moz-transform: scale(0.9,0.9);
		-webkit-transform: scale(0.9,0.9); 
}
.product_name {
	text-decoration: none;
	font-size: 15px !important;
	font-weight: normal !important;
	text-transform: none !important;
	color: #3d77a9 !important;
}
.product_name a {
	color: #3d77a9;
	font-size: 15px;
	font-weight: normal;
	transition: all 0.5s ease;
}
.product_name a:hover {
	color: #fa3f4b;
	text-decoration: underline;
}
.product_price {
	padding-top: 12px;
	display: block;
}

.product_price span {
	color: #df1f26;
	font-size: 20px;
	display: block;
}
.product_price .product-price.old-price span {
	color: #333;
	font-family: "Arial";
	font-size: 12px;
}

.product_desc {
	font-size: 12px;
	color: #777777;
}


.money {
	color: #3e77aa;
}
.product_price .compare-at-price,
.product-price .compare-at-price {
	text-decoration: line-through;
		text-decoration: line-through;
		color: #777777;
		font-weight: 400;
		font-size: 14px;
}



/* 4.5 RTE */
.rte {
	margin-top: 15px;
	margin-bottom: 15px;
	color: inherit;
}

.rte a {
	color: inherit;
	text-decoration: underline;
}
.rte a:hover {
	text-decoration: none;
}

.rte h1 {
	font-size: 19px;
}
.rte h2 {
	font-size: 17px;
}
.rte h3 {
	font-size: 16px;
}
.rte h4 {
	font-size: 14px;
}
.rte h5 {
	font-size: 13px;
}
.rte h6 {
	font-size: 12px;
}

.rte img {
	margin-top: 15px;
	margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	/* font-family: "Roboto"; */
	font-size: 20px;
	text-transform: uppercase;
	line-height: 23px;
	color: #2b2b2d;
}


/***************************************************************************
													 5. FORMS & COMPONENTS
***************************************************************************/

/* 5.1 FORMS */
label {
	font-weight: normal;
	font-size: 14px;
}

select,
select.form-control,
textarea,
textarea.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="telephone"] {
	padding: 6px;
	border: 1px solid #e4e4e4;
	font: normal 14px 'Open Sans';
	color: #4e4e4e;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 0;
	box-shadow: none;
	background: #fff;
	width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="telephone"]:focus{

}

textarea{
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}


textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="telephone"]:focus{
    box-shadow: 0 0 5px rgb(102, 186, 106);
}


textarea.error_input:focus,
input[type="text"].error_input:focus,
input[type="email"].error_input:focus,
input[type="number"].error_input:focus,
input[type="tel"].error_input:focus,
input[type="password"].error_input:focus,
input[type="telephone"].error_input:focus{
    box-shadow: 0 0 5px rgb(102, 186, 106);
}

textarea.error_input,
input[type="text"].error_input,
input[type="email"].error_input,
input[type="number"].error_input,
input[type="tel"].error_input,
input[type="password"].error_input,
input[type="telephone"].error_input{
	box-shadow: 0 0 5px rgb(139, 0, 0);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="telephone"] {
	height: 40px;
	line-height: 18px;
	padding-top: 7px;
	padding-bottom: 7px;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
select,
select.form-control {
	padding: 8px 3px;
}

textarea,
textarea.form-control {
	min-width: 100%;
	max-width: 100%;
}

.form-control:focus {
	border-color: #aaa;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
					box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
}

.form-group {
	vertical-align: top !important;
	margin-top: 15px;
	margin-bottom: 0;
}

.form-horizontal label {
	padding-top: 0 !important;
	text-align: right;
	line-height: 34px;
}
.form-horizontal select {
	width: 100%;
}

.action_bottom span.note {
	margin-left: 5px;
}
.action_bottom span.note a {
	margin-left: 5px;
}



/* 5.2 ALERTS */
.alert {
	margin: 15px 0;
	-webkit-border-radius: 0;
		 -moz-border-radius: 0;
					border-radius: 0;
}

.alert > p,
.alert > ul,
.alert > ol {
	list-style-type: none;
	margin: 0;
}

.alert > p + p,
.alert > ul + ul {
	margin: 10px 0 0 0;
}


/* 5.3 BUTTONS */
.btn,
.btn a,
.btn-info,
.btn-primary {
	box-shadow: none !important;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	font-size: 14px;
	line-height: 18px;
	border-radius: 100px;
	font-weight: bold;
	padding: 6px 12px 7px;
	border: none;
	color: #fff;
	background: #66ba6a;
	transition: opacity 0.2s;
	box-shadow: 0 0 1px #da1d52;
	border-radius: 9px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	min-height: 43px;
}

.btn a {
	padding: 0 !important;
	border: none !important;
}

.btn-cart i {
	display: inline-block;
	font-size: 20px;
	vertical-align: middle;
	line-height: 18px;
	text-shadow: 1px 1px 1px #ffffff;
	color: #3e77aa;
		margin: -4px 6px 0 -4px;
}
.btn-cart:hover i,
.btn-cart:focus i{
	color: #ffffff;
}

.btn:hover,
.btn:focus,
.btn:hover a,
.btn-info:hover,
.btn-primary:hover {
/*	
background: #11abd3;
background: -webkit-linear-gradient(top, #11abd3 0%,#19bce7 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#11abd3), color-stop(100%,#19bce7));
background: -moz-linear-gradient(top, #11abd3 0%, #19bce7 100%);
background: -ms-linear-gradient(top, #11abd3 0%,#19bce7 100%);
background: -o-linear-gradient(top, #11abd3 0%,#19bce7 100%);
background: linear-gradient(to bottom, #11abd3 0%,#19bce7 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#11abd3', endColorstr='#19bce7',GradientType=0 );

	color: #ffffff;
	text-shadow: 1px 1px #1191b3;
	border: 1px solid #1191b3;*/
}
.btn-cart:hover i {
		text-shadow: 1px 1px #1191b3;
}
/***************************************************************************
													 6. GLOBAL PAGE LAYOUT
***************************************************************************/

html, body {height: 100%;font-size: 14px;width: 100%;/* overflow: auto; *//* min-width: 1170px!important; */min-width: 1300px!important;}

#wrapper {
	background-color: transparent;
}

#wrapper2 {/* overflow: hidden; */}

.container {
    min-width: 1170px!important;
    /* padding: 0; */
    padding-left: 15px;
    padding-right: 15px;
}

#main {
	margin-top: 30px;
	border-bottom: 1px solid #c6c6c6;
	padding-bottom: 30px;
}

#main_content,
.column .widget {margin-bottom: 30px !important;}



/***************************************************************************
													 7. SIDEBAR CONFIGURATION
***************************************************************************/

/* NO SIDEBAR */

/* LEFT SIDEBAR */
.sidebar_left .column_center {width: 100%;}
.sidebar_left .column_center #main_content {
/*	margin: 0 0 0 25%;
	margin: 0 0 0 290px;*/
}
.sidebar_left .column_left {
/*	margin-left: -100%;*/
}

#main_top .sidebar_left .column_left {
/*	margin-left: 0;
	width: 260px;
	padding-right: 0;
	padding-left: 0;*/
}
#main_top .column_left.column.col-sm-3.pull-left {}

/* RIGHT SIDEBAR */
.column_center_slider.col-sm-9.pull-right {
/*	margin: 0 0 0 -260px;
	padding: 0 0 0 260px;
	width: 100%;*/
}

/* BOTH SIDEBARS */
.sidebar_both .column_center {width: 100%;}
.sidebar_both .column_center #main_content {margin: 0 25%;}
.sidebar_both .column_left {margin-left: -100%;}
.sidebar_both .column_right {margin-left: -25%;}


/* NOSIDEBAR PAGES */
.sidebar_off .column_center #main_content {margin: 0;}



/***************************************************************************
													 8. MAIN PAGE
***************************************************************************/

a:hover, a:focus {
    /* color: #00bb65; */
    color: #691a99;
}

/* 8.1 HEADER */
#header { 
	position: relative;
	margin-bottom: 0px;
}
#logo {
	float: left;
	margin-top: 15px;
	margin-bottom: 9px;
	position: relative;
	padding-left: 20px;
}
#logo img {
	max-height: 82px;
}
#logo .slogan {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#logo a {
	display: block;
	text-transform: uppercase;
	letter-spacing: -2px;
}
#logo a .wrap-1,
#logo a .wrap-2 {
	display: table;
	padding: 0;
}
#logo a .wrap-1 {
	font-size: 50px;
	color: #3e77aa;
		font-weight: 900;
		transition: color .4s ease;
}
#logo a .wrap-2 {
	font-size: 30px;
	color: #000000;
		font-weight: 900;
		transition: color .4s ease;
}
#logo a b:first-child .wrap-2 {
	margin: -27px 0 0 0;
	letter-spacing: 10px;
}
#logo a b:last-child {
	position: absolute;
	right: 0;
	top: 12px;
	text-align: right;
}
#logo a b:last-child .wrap-1 {
	display: block;
	font-size: 18px;
	letter-spacing: 3px;
	margin: 0 0 -1px;
	padding-right: 7px;
	text-align: right;
}
#logo a b:last-child .wrap-2 {
	font-size: 14px;
	letter-spacing: 0;
	padding-right: 10px;
	text-align: right;
}
#logo a:hover .wrap-1 {
	color: #000000;
}
#logo a:hover .wrap-2 {
	color: #3e77aa;
}
.rezhim2,
#phones {
	font-size: 16px;
	margin: 4px 0 0 0;
	color: #282828;
}
#phones {
	margin: 9px 0 0 0;
}
.phones {
	padding: 10px 0 0 0;
}
.phones .block_header,
#phones .block_header {
	text-transform: none;
	font-size: 16px;
	margin: 5px 0 0px 0;
	color: #303030;
}
.rezhim2 b,
.phones b,
#phones b {
	color: #636268;
}
.rezhim2 span,
.phones span,
#phones span {
	color: #036f0b;
}
.rezhim2 {
	margin: 8px 0 0 0;
}
#phones .fa {
}
#phones .fa,
.phones [class^="flaticon-"]:before,
.phones [class*=" flaticon-"]:before,
.phones [class^="flaticon-"]:after,
.phones [class*=" flaticon-"]:after,
#phones [class^="flaticon-"]:before,
#phones [class*=" flaticon-"]:before,
#phones [class^="flaticon-"]:after,
#phones [class*=" flaticon-"]:after {
	color: #036f0b;
	line-height: 27px;
	margin: 0 5px 0 0;
	vertical-align: top;
}
.footer_black {
	background: none #000;
}
.carousel_partners {
	padding: 0 0px 40px;
	position: relative;
}
.carousel_partners h6 {
	color: #a2a2a3;
	font-family: "Arial Narrow";
	font-size: 20px;
	font-weight: normal;
	letter-spacing: 1px;
	padding: 0 0 25px;
	text-transform: uppercase;
}
.block_header {
	color: #4a4a4a;
	font-size: 30px;
	font-weight: 400;
	line-height: 34px;
	margin: 6px 0;
}
.block_header .icon {
	background-color: #f22613;
	border-radius: 100px;
	color: #fff;
	display: inline-block;
	height: 35px;
	line-height: 39px;
	text-align: center;
	width: 35px;
}
.block_header.comments_header {
	color: #333333;
	margin-top: 40px;
	margin-bottom: 10px;
}
.block_header.comments_header .icon {
	background-color: #691a99;
}
.carousel_partners .block_header {
	color: #f22613;
	font-size: 30px;
	font-weight: 400;
	line-height: 34px;
	margin: 30px 0;
}
.carousel_partners .block_header .icon {
	background-color: #f22613;
	border-radius: 100px;
	color: #fff;
	display: inline-block;
	height: 35px;
	line-height: 39px;
	text-align: center;
	width: 35px;
}
.shop_list {
	margin: 30px 0;
}
.js_shop_list.shop_list {
	margin: 0px 0;
}
.shop_list .shop-item,
.carousel_partners .owl-item {
	border-radius: 60px 0;
	overflow: hidden;
	padding: 20px;
	background-color: #fff;
}
.carousel_partners .owl-item {
	width: auto;
}
.content b {
  /* color: #da1d52; */
  /* font-weight: normal; */
}
.content h1 {
  color: #000;
  font-size: 30px;
  line-height: 27px;
  padding: 0 0 0px;
  margin-bottom: 31px;
  text-transform: none;
}
.content h5 {
  color: #da1d52;
  font-family: "trebuchet MS";
  font-size: 18px;
  line-height: 16px;
  padding: 0 0 15px;
}
.contacts {
	color: #9a9a9a;
	font-size: 16px;
	position: relative;
}
.contacts p.t {
	padding-bottom: 12px;
}
.contacts p.l {
	padding: 12px 0;
}
.contacts p.l i {
	font-style: normal;
	padding: 0 15px 0 0;
}
.t {
	border: medium none;
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
}
.addthis_toolbox a.at300b, .addthis_toolbox a.at300m {
	width: auto;
}
.addthis_default_style .at300b, .addthis_default_style .at300bo, .addthis_default_style .at300m {
	padding: 0 2px;
}
.addthis_default_style .addthis_separator, .addthis_default_style .at4-icon, .addthis_default_style .at300b, .addthis_default_style .at300bo, .addthis_default_style .at300bs, .addthis_default_style .at300m {
	float: left;
}
.addthis_toolbox a {
	line-height: initial;
	margin-bottom: 5px;
}
.contacts p {
	padding: 0 0 5px;
}
.contacts p img {
	margin: 0 10px 0 0;
	position: relative;
	top: 2px;
	vertical-align: text-bottom;
}
.contacts p b {
	color: #676767;
	font-weight: normal;
	margin: 0 20px 0 0;
}
form.ajax {
	margin: 0px 0 10px 0;
}
form.ajax .btn {
	margin-left: 10px;
}
/*.feedback_form textarea {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	border: 1px solid #cecece;
	color: #9a9a9a;
	font-family: "trebuchet MS";
	font-size: 16px;
	height: 143px;
	margin: 0 0 0 12px;
	overflow: auto;
	padding: 0;
	resize: none;
	vertical-align: top;
	width: 298px;
}
.feedback_form .btn {
	background: #da1d53 url("/images/btn.gif") no-repeat scroll 0 0;
	border: 0 none;
	cursor: pointer;
	display: block;
	height: 23px;
	margin: 0 0 0 91px;
	width: 97px;
}*/
.news {
	list-style: outside none none;
	margin: 0 auto;
	padding: 20px 0 0;
	position: relative;
}
.news li {
	color: #848484;
	font-size: 12px;
	padding: 0 0 45px;
}
.news li b {
	color: #da1d52;
	font-weight: normal;
}
.news li i {
	display: block;
	font-style: normal;
	padding: 0 0 12px;
}
.news li h3 {
	color: #da1d52;
	font-family: "trebuchet MS";
	font-size: 24px;
	font-weight: normal;
	letter-spacing: 1px;
	padding: 0 0 5px;
	text-transform: none;
}
.news li h3 a {
	color: #da1d52;
	font-family: "trebuchet MS";
	font-size: 24px;
	font-weight: normal;
	letter-spacing: 1px;
	padding: 0 0 5px;
	text-transform: none;
	text-decoration: none;
}
.news li p {
	padding: 0 0 15px;
}
.news li span {
	display: block;
	padding: 0 0 18px;
}
.news li h6 {
/*    background: rgba(0, 0, 0, 0) url("/images/ic2.jpg") no-repeat scroll 0 0;*/
	color: #da1d52;
	font-family: "trebuchet MS";
	font-size: 24px;
	font-weight: normal;
	left: -26px;
	letter-spacing: 1px;
	padding: 6px 0 10px 46px;
	position: absolute;
	top: 14px;
}
.delivery {
	color: #2d2d2f;
	font-size: 16px;
	line-height: 14px;
	margin-top: 12px;
	text-transform: none;
}
.delivery .col-xs-10 {
	font-size: 16px;
	line-height: 17px;
}
.delivery [class^="flaticon-"]:before,
.delivery [class*=" flaticon-"]:before,
.delivery [class^="flaticon-"]:after,
.delivery [class*=" flaticon-"]:after {
	color: #036f0b;
	line-height: 36px !important;
	font-size: 35px;
	margin: 0 5px 0 0;
	vertical-align: top;
}
#zakazat {
	margin: 38px 0 0 0;
}
.header_user {
	float: right;
		margin-top: 40px;
}
.header_user li {
	display: inline-block;
}
.header_user li a {
	font-size: 14px;
	font-weight: bold;
	text-transform: capitalize;
	line-height: 20px;
	vertical-align: top;
	margin-right: 15px;
	color: #000000;
		transition: all .4s ease;
}
.header_user li a i {
	margin: 0 5px 0 0;
	line-height: 1.5em;
}
.header_user li a:hover {
		color: #3e77aa;
}



.header_currency {
	float: right;
		margin-top: 38px;
		margin-right: 33px;
}
.header_currency .jq-selectbox {
	width: 54px;
}
.header_currency .jq-selectbox__select {
	height: 25px;
	padding: 0 12px 0 5px;
}
.header_currency .jq-selectbox__select-text {
	line-height: 24px;
		font-size: 14px;
		color: #000000;
		font-weight: 700;
}
.header_currency .jq-selectbox__trigger i {
	right: 5px;
	top: 3px;
		font-size: 13px;
		vertical-align: top;
		line-height: 20px;
		color: #000000;
}

.header_currency .jq-selectbox__dropdown {
	width: 100% !important;
	background: #ffffff;
	border: 1px solid #dbdbdb;
	top: 24px !important;
		text-align: center;
}
.header_currency .jq-selectbox__dropdown ul li + li {
	margin-top: 1px; 
}
.header_currency .jq-selectbox__dropdown ul li:hover,
.header_currency .jq-selectbox__dropdown ul li.sel  {
		background: #3e77aa;
		color: #ffffff;
}

.header_cart {
	float: right;
	margin: 43px 0 0 15px;
}
.header_cart i {
	font-size: 33px;
		color: #000000;
		line-height: normal;
		vertical-align: top;
		line-height: 40px; 
		padding-right: 10px;
		transition: all .4s ease;
}
.header_cart a:hover i {
	color: #3e77aa;
}
.header_cart a {
	display: block;
	position: relative;
} 
.header_cart a span {
		position: absolute;
		top: -4px;
		right: 0;
	display: block;
	text-align: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	line-height: 26px;
	vertical-align: middle;
	color: #ffffff;
	background-color: #3e77aa;
		transition: all .4s ease;
}
.header_cart a:hover span {
		background: #000000;
}


.header_search {
	position: relative;
	margin: 9px -294px 0 -297px;
	padding: 0 294px 0 297px;
}
.header_search .nav {
	margin: 10px 0 0 0px;
	color: #999999;
	font-size: 13px;
	padding: 5px 0 2px;
}
.header_search .nav a {
	margin: 0 5px;
	font-size: 13px;
	border-bottom: 1px dashed #3e77aa;
}
.header_search .nav a:first-child {
	margin-left: 11px;
}
#tmsearch {
	position: relative;
	height: 35px;
	background-color: #fff;
	-moz-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	-webkit-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
}
.btn.btn-default.button-search {
	background: none transparent;
	border: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	padding: 2px 4px;
}
.btn.btn-default.button-search .icon {
	color: #bbb;
	font-size: 25px;
}
.row {
	position: relative;
	/* overflow: hidden; */
}
.map:before{
	content:' ';
}
.map {
	position: relative;
	z-index: 1;
	min-height: 729px;
	height: 729px;
	background: #f7f7f7;
}
.map ymaps{
/*	visibility:hidden;	*/
}
.map_menu {
	position: absolute;
	top: 97px;
	left: 0;
	width: 265px;
	height: 74px;
	padding: 15px;
	-moz-border-radius: 0 60px;
	-webkit-border-radius: 0 60px;
	border-radius: 0 60px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background: none rgba(0, 0, 0, .7);
	-moz-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	-webkit-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	color: #fff;
}
.map_menu3 {
	position: absolute;
	top: 97px;
	left: 0;
	width: 265px;
	height: auto;
	padding: 10px 15px 17px 15px;
	-moz-border-radius: 0 60px;
	-webkit-border-radius: 0 60px;
	border-radius: 0 60px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background: none rgba(0, 0, 0, .7);
	-moz-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	-webkit-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	/* overflow: hidden; */
}
.map_menu2 {
	position: absolute;
	top: 192px;
	left: 0;
	width: 265px;
	height: 212px;
	padding: 15px;
	-moz-border-radius: 0 60px;
	-webkit-border-radius: 0 60px;
	border-radius: 0 0px 0 60px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background: none rgba(0, 0, 0, .7);
	-moz-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	-webkit-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
}

.map_menu.rkl a{
	display:block;
	width:100%;
	height:100%;
}

.map_menu.rkl p{
	margin:0;
	padding:0;
}

.map_menu.rkl {
	top: 423px;
	padding: 0px;
	-moz-border-radius: 60px 0;
	-webkit-border-radius: 60px 0;
	border-radius: 60px 0;
	overflow: hidden;
	background: transparent;
	width: 263px;
	height: auto;
}
.map_menu.rkl a {
	padding: 0;
}
.map_menu_box {
	position: absolute;
	top: -754px;
	left: 0;
	width: 265px;
}
.cat_map .map_menu {
	top: 136px;
}
.cat_map .map_menu.title_h1 {
	height: 60px;
	top: 55px;
}

.ab_search_cat_ids.main_cat .jq-selectbox__trigger{
    visibility: hidden;
}

.cat_map .map_menu.title_h1 .icon {
background-clip: padding-box;
background-color: #f22613;
border-radius: 15px;
color: #fff;
display: block;
font-size: 25px;
height: 30px;
margin-right: 5px;
text-align: center;
width: 30px;
float: left;
}
.cat_map .map_menu.title_h1 h1 {
color: #fff;
display: inline;
text-transform: none;
font-size: 14px;
font-weight: bold;
line-height: 28px;
padding: 6px 0;
text-decoration: none;
}
.cat_map .map_menu.rkl {
	top: 411px;
}
.map_menu.rkl img {
	margin: 0;
}

.map_menu3 a:hover {
	
/* color: #66ba6a!important; */
	
text-decoration: underline;
}

.map_menu3 a * {
		color: #fff!important;
}

.map_menu3 .nav>li>a:hover,
.map_menu3 .nav>li>a:focus{
	text-decoration:underline;
}

.map_menu3 a {
	display: block;
	color: #fff!important;
	padding: 9px 0!important;
	margin: 0!important;
	width: 100%;
	font-size: 14px;
	line-height: 28px;
	font-weight: normal;
	position: relative;
	text-decoration: none;
	overflow: hidden;
	height: 39px;
}
.map_menu3 a i.icon {
	display: inline-block;
	color: #fff!important;
	font-size: 25px;
	text-align: center;
	margin-right: 5px;
	width: 30px;
	height: 30px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	/* background-color: #f12513; */
}

.header_search #search-field {
	border-radius: 0;
	line-height: 21px;
	height: 23px;
	width: 100%;
	margin: 0;
	color: #000;
	padding: 2px 45px 2px 13px;
	background-color: #fff;
	border: 1px solid #a2a2a2;
	position: relative;
	z-index: 1;
}

.header_search #tmsearch [class^="flaticon-"]:before,
.header_search #tmsearch [class*=" flaticon-"]:before,
.header_search #tmsearch [class^="flaticon-"]:after,
.header_search #tmsearch [class*=" flaticon-"]:after {
	color: #000;
	font-size: 14px;
	line-height: 30px;
	margin: 0;
	position: absolute;
	right: 6px;
	top: -4px;
	z-index: 3;
}
.header_search #search-submit {
	background: transparent none repeat scroll 0 0;
	border: medium none;
	height: 23px;
	line-height: 15px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	vertical-align: middle;
	width: 33px;
	z-index: 2;
}
.header_search #search-submit i {
		vertical-align: middle;
}
.header_search #search-submit:hover {

}

.nopadding {
	padding: 0 !important;
}
.nopadding-left {
	padding-left: 0 !important;
}
.nopadding-right {
	padding-right: 0 !important;
}

/* 8.2 NAVIGATION */
#navigation {
	padding: 25px 0;
	background: none #fff;
	position: relative;
	/* z-index: 2; */
}
#navigation .row {
}
#navigation nav {
	position: relative;
	z-index: 100;
}

#navigation.isStuck {
	width: 100%;
	left: 0;
	top: 0;
	z-index: 100;
/*	box-shadow: 0 0px 2px rgba(237,237,237,0.75);*/
}

#navigation select.menu_mobile {
	width: 100%;
	height: 30px !important;
	display: block;
	background: #eee;
}
#main_top {
	padding-top: 25px;
	background: #f7f7f7;
	z-index: 1;
	position: relative;
	padding-bottom: 40px;
	/* overflow: hidden; */
}
.sf-menu {
}
.sf-menu li {
	position: relative;
}
.socmenu {
	margin: 10px 0 0 0;
}
.socmenu a {
	display: inline-block;
	margin-left: 5px;
}
footer [class^="flaticon-"]:before,
footer [class*=" flaticon-"]:before,
footer [class^="flaticon-"]:after,
footer [class*=" flaticon-"]:after {
	color: #036f0b;
}

footer .footer_block__2 [class^="flaticon-"]:before,
footer .footer_block__2 [class*=" flaticon-"]:before,
footer .footer_block__2 [class^="flaticon-"]:after,
footer .footer_block__2 [class*=" flaticon-"]:after {
	color: #ff0000;
}
.socmenu a i.fa {
	display: inline-block;
	color: #fff;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	margin-right: 5px;
	width: 30px;
	height: 30px;
	/*
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background-color: #f12513;
	*/
}
.socmenu a i.fa.fa-vk {
	background: url("../images/soc_vk.png") no-repeat;
}
.socmenu a i.fa.fa-odnoklassniki {
	background: url("../images/soc_odn.png") no-repeat;
	/*background-color: #e47e25;*/
}
.socmenu a i.fa.fa-twitter {
	background: url("../images/soc_twitter.png") no-repeat;
	/*background-color: #4cc2ff;*/
}
.socmenu a i.fa.fa-facebook {
	background: url("../images/soc_facebook.png") no-repeat;
	/*background-color: #3b5998;*/
}
footer .footer_block__3 i:after,
footer .footer_block__3 i:before {
	font-size: 45px;
	margin-right: 5px;
	line-height: 37px;
}
footer .footer_block__3 i.flaticon-money-1:after,
footer .footer_block__3 i.flaticon-money-1:before {
	font-size: 30px;
}
footer .footer_block__4 i.flaticon-money-1:after,
footer .footer_block__4 i.flaticon-money-1:before {
	font-size: 30px;
}
footer .block_header {
	font-size: 14px;
	color: #000;
	margin-bottom: 5px;
}
.column_left.column.col-sm-2 {
	width: 20%;
}
.column_center_slider.col-sm-10 {
	width: 80%;
}
/*================================>> 1 Level <<========================================*/

.sf-menu > li {
	display: inline-block;
	float: left;
}
.sf-menu > li > a {
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #000;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
}
.sf-menu > li > a > span {
	font-weight: 400;
	position: relative;
	z-index: 1;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	display: block;
	padding: 8px 0px 0;
	border-bottom: 8px solid transparent;
}
.sf-menu > li > a:hover > span {
	border-bottom: 8px solid transparent;
}
.sf-menu > li > a {
	padding: 0px 15px 0px 15px;
	color: #000;
}
/*.sf-menu > li > a::before {*/
.sf-menu > li:first-child > a {
/*	position: absolute;
	top: 0;
	left: 0;*/
/*	z-index: 0;
	padding: 8px 15px;
	width: 100%;
	height: 100%;
	line-height: 20px;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDI1OSAzOSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGxpbmVhckdyYWRpZW50IGlkPSJoYXQwIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjUwJSIgeTE9IjEwMCUiIHgyPSI1MCUiIHkyPSItMS40MjEwODU0NzE1MjAyZS0xNCUiPgo8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNGZiZjQzIiBzdG9wLW9wYWNpdHk9IjEiLz4KPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNzdkNTZkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgPC9saW5lYXJHcmFkaWVudD4KCjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyNTkiIGhlaWdodD0iMzkiIGZpbGw9InVybCgjaGF0MCkiIC8+Cjwvc3ZnPg==);
background-image: -moz-linear-gradient(bottom, #4fbf43 0%, #77d56d 100%);
background-image: -o-linear-gradient(bottom, #4fbf43 0%, #77d56d 100%);
background-image: -webkit-linear-gradient(bottom, #4fbf43 0%, #77d56d 100%);
background-image: linear-gradient(bottom, #4fbf43 0%, #77d56d 100%);
	color: #ffffff;*/
	content: attr(title);
/*	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);*/
	white-space: nowrap;
}
.sf-menu > li > a:hover::before {
/*	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	transform: translateX(0%);*/
}
.sf-menu > li > a:hover > span {
/*	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	transform: translateX(100%); */
}

.sf-menu > li.active > a,
.sf-menu > li.sfHover > a {
	color: #ffffff;
	background: #3e77aa;
}

.sf-menu > li > a.sf-with-ul:after {
	position: absolute;
	content:"";
	left: 50%;
	margin-left: -2px;
	right: 0;
	bottom: 5px;
	border: 4px solid;
	border-color: #ffffff transparent transparent transparent;
	width: 0;
	height: 0;
	z-index: 1000;
}

/*================================>> 2 Level <<========================================*/

.sf-menu ul {
	width: 180px !important;
	position: absolute;
	left: 0;
	top: 50px;
	z-index: 10;
	background: #000000;
	box-shadow: 0 0px 2px rgba(237,237,237,0.75);
}
.sf-menu ul li {
	border-top: 1px solid #3a3a3a;
}
.sf-menu ul li a {
	display: block;
	padding: 5px 10px;
	background: #000000;
		color: #ffffff;
}

.sf-menu ul > li a:hover,
.sf-menu ul > li.active a {
	background: #3e77aa;
	color: #ffffff;
}


#navigation select.menu_mobile {display: none;}


/* 8.3 NIVOSLIDER */
.nivoSlider {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
}
.nivoSlider img {
	max-width: none;
	position: absolute;
	top: 0;
	left: 0;
}
.nivo-main-image {
	width: 100% !important;
	display: block !important;
	position: relative !important;
}

.nivoSlider a.nivo-imageLink {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	z-index: 6;
	position: absolute;
	left: 0;
	top: 0;
	display: none;
	filter: alpha(opacity=0);
	opacity: 0;
		background: #ffffff;  
}

.nivo-slice {
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	z-index: 5;
}

.nivo-box {
	display: block;
	overflow: hidden;
	position: absolute;
	z-index: 5;
}
.nivo-box img {
	display: block;
}

.nivoSlider > a,
.nivoSlider > img,
.caption_hidden {
	display: none;
}


.slider_wrap {
		position: relative;
		z-index: 1;
		margin-top: 30px;
}

.nivo-caption {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 8;
	display: none;
}

.nivo-directionNav a {
	display: block;
	vertical-align: top;
	position: absolute;
	top: 50%;
	z-index: 9;
	cursor: pointer;
}
.nivo-directionNav a span {
	display: none;
}
.nivo-directionNav a i {
	display: inline-block;
}
.nivo-prevNav {
	left: 0;
}
.nivo-nextNav {
	right: 0;
}


.nivo-controlNav {
	width: 100%;
	text-align: right;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
		padding-right: 10px;
		padding-bottom: 7px;
}
.nivo-controlNav a {
	display: inline-block;
	cursor: pointer;
	font-size: 15px;
		color: #d4d4d4;
		margin-left: 8px;
		transition: all .4s ease;
}
.nivo-controlNav a span {
	display: none;
}
.nivo-controlNav a i {
	display: block;
}
.nivo-controlNav a:hover {
		color: #3e77aa;
}
.nivo-controlNav a.active {
	cursor: default;
		color: #3e77aa;
}


/* 8.4 SHOWCASE */

.custom_showcase a {
	display: block;
	position: relative;
	transition: all 0.5s ease;
	border-radius: 2px;
	border: 1px solid #b8b8b8;
}
.custom_showcase {
	margin-bottom: 29px; 
}
.custom_showcase a:hover {
	box-shadow: 0 0 15px rgba(0,0,0,0.9); 
}
.custom_showcase .inside {
	display: block;
	width: 100%;
	text-align: center;
	color: #4b545b;
	font-size: 12px;
	line-height: 17px;
	padding: 14px 10px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.custom_showcase:hover .inside {
	background: rgb(7,248,24); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(7,248,24,1) 0%, rgba(3,111,11,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(7,248,24,1) 0%,rgba(3,111,11,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(7,248,24,1) 0%,rgba(3,111,11,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#07f818', endColorstr='#036f0b',GradientType=0 ); /* IE6-9 */
}
.custom_showcase .inside .cat_names {
	font-size: 17px;
	font-weight: 400;
	line-height: 100%;
	margin-right: 9px;
	margin: 0;
	text-shadow: 0 0 1px #ffffff;
	color: #4e5255;
	border-bottom: 0px;
	padding-bottom: 0px;
	display: inline-block;
	transition: all 0.5s ease;
}
.custom_showcase .inside .arrow {
	color: #036f0b;
	border-bottom: 0px;
	margin: 0px;
	padding: 0px;
	display: inline-block;
	transition: all 0.5s ease;
}
.custom_showcase a img {

}
.custom_showcase .inside p {
	margin: 1px 0px 0px; 
		line-height: 17px;
	transition: all 0.5s ease;
}
.custom_showcase a:hover .arrow {
		color: #4e5255;
}
.custom_showcase a:hover .cat_names,
.custom_showcase a:hover p {
		color: #fff;
}

.banner {
	position: relative;
	margin-bottom: 30px;
	background: transparent;
}
.banner a {
	display: block; 
}
.banner .inside {
	position: absolute;
	text-align: center;
	left: 10px;
	right: 10px;
	top: 10px;
	bottom: 10px;
	text-transform: uppercase;
}
.banner .inside h3 {
	font-weight: 900;
	font-size: 30px;
	color: #ffffff;
	transition: all 0.5s ease;
}
.banner .inside h4 {
	padding-top: 66%;
	font-weight: 900;
	font-size: 24px;
	line-height: 1em; 
	color: #3e77aa;
	transition: all 0.5s ease;
} 
.banner .inside p {
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
	margin: 0;
	transition: all 0.5s ease;
}
.banner img {
	transition: all 0.5s ease;
	background: #000000;
}
.banner:hover img {
/*	-moz-transform: scale(0.9,0.9);
	-webkit-transform: scale(0.9,0.9);
	transform: scale(0.9,0.9);*/
}

.banner:hover h3,
.banner:hover p {
		color: #3e77aa;
}
.banner:hover h4 {
		color: #ffffff;
}

/* 8.5 MAIN PRODUCT LISTING */
.product_listing_main + .product_listing_main {
	margin-top: 30px; 
}

.product_listing_main .product_links {
	margin-top: 6px;
}
.product_listing_main .product_links form {display: inline-block;}



/* 8.6 FOOTER */
footer {
	background-color: #333;
	position: relative;
	padding-top: 25px;
	padding-bottom: 30px;
}
.footer_shadow {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	border-top: 1px solid #f1f1f1;
	z-index: 0;
}
.footer_shadow + div {
	z-index: 1; 
	position: relative;
}


.footer_block h3 {
		padding-top: 30px;
	line-height: normal;
	font-size: 17px;
	text-transform: uppercase;
	margin: 0 0 11px;
	color: #000000;
		font-weight: 700;
}
.footer_block ul li + li {
	margin-top: 6px;
}

.footer_bottom {
		position: relative;
		margin-top: 46px;
} 
footer .copyright {}
footer .copyright p {
	margin: 22px 0px;
}

.footer_block ul li.active a,
.footer_block ul li a:hover {
		color: #000000;
}
footer .copyright {
	float: left; 
}
footer .copyright a { color: #777777;}
footer .copyright a:hover { color: #3e77aa;}

footer .socials {
		margin: 20px 18px 0 0;
		float: right;
}
footer .socials li {
		display: inline-block;
}
footer .socials li a {
	display: block;
	font-size: 23px;
	margin-left: 10px;
	float: left;
	line-height: 30px;
	vertical-align: top;
}
footer .socials li a i {
		transition: all .4s ease;
}
.fa-twitter-square {
	color: #09c7f6;
}
.fa-facebook-square {
	color: #3d6aa7;
}
footer .socials li a:hover i {
	color: #000000;
}

footer .nav li a:hover {
	color:#66ba6a!important;
}

footer .nav li a {
	color: #fff!important;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	text-decoration: none;
}
footer .gorod_menu .nav li a {
	text-decoration: underline;
	padding: 9px 0;
}

footer .help_menu .nav li a {
	padding: 3px 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	text-decoration: underline;
	display:block;
}
footer .nav li a:hover {
	background: none transparent;
	color: #66ba6a;
	text-decoration: underline;
}
footer .cat_menu .nav li {
	margin: 0;
}

footer .cat_menu .nav li a:hover{
	
}

footer .cat_menu .nav li a:hover{
	color:#66ba6a!important;
}

footer .cat_menu .nav li .a *,
footer .cat_menu .nav li .a{
	color:#66ba6a!important;
}

footer .cat_menu .nav li a *{
	color:#fff!important;
}


footer .cat_menu .nav li .a,
footer .cat_menu .nav li a {
	line-height: 28px;
	font-size:14px;
	color:#fff!important;
	padding: 0px 15px 7px;
	margin-bottom: 3px;
	display: block;
}
footer .cat_menu .nav li a:hover *,
footer .cat_menu .nav li a:hover {
	background: none transparent;
	color: #66ba6a!important;
	text-decoration: none;
}
.footer_logo {
	margin-bottom: 15px;
}
.copy_r {
	color: #adadad;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	padding-top: 13px;
	padding-bottom: 11px;
}
/***************************************************************************
													 9. COLLECTION PAGES
***************************************************************************/

/* 9.1 PAGES CONTENT */
ul.tags {
	margin-top: 15px;
	list-style-type: none;
}
ul.tags li {
	float: left;
}
ul.tags li + li {
	margin: 0 0 0 5px;
}
ul.tags li a {
	display: block;
	padding: 5px 10px;
	color: #ffffff;
	background: #000000;
		border-radius: 4px;
		transition: all .4s ease;
}

ul.tags li a:hover,
ul.tags li.active a {
	background: #3e77aa;
	color: #ffffff;
}



.collection_info {
	margin-top: 15px;
}
.collection_info .collection_img {
	text-align: center;
}
.collection_info .collection_desc .rte {
	margin: 0;
}



.sort_by {
	margin: 15px 0;
	padding: 10px 0;
	border: 1px solid #dbdbdb;
	border-width: 1px 0;
	text-align: right;
}
.sort_by label {
	margin: 0 4px 0 0;
	line-height: 30px;
		color: #000000;
		font-size: 15px;
}
.sort_by select {
	height: 30px;
	padding: 6px 4px;
	cursor: pointer;
		border: 1px solid #dbdbdb;
}



/* 9.2 BREADCRUMBS */
.breadcrumb {
	margin: 0 0 17px 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	text-transform: none;
	color: #691a99;
	background:none;
	border: none;
	font-weight: normal;
	padding: 0px;
	font-size: 14px;
}
.breadcrumb span {
		/* font-weight: bold; */
		color: #691a99;
}
.breadcrumb a,
.breadcrumb > li + li:before {
	color: #818181;
	font-weight: normal;
	text-decoration: underline;
}
.breadcrumb a:hover {
		color: #00bb65;
}

/* 9.3 COLLECTION LISTING */
.collection_listing .collection {
	margin: 30px 0 0 0;
}



/* 9.4 PAGINATION */

#pagination {
	display: inline-block;
	overflow: hidden;
	margin: 30px 0 0 0;

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 4px;
}
#pagination span {
	display: block;
	float: left;
}
#pagination span ~ span {
		border-left: 1px solid #3a3a3a;
}

#pagination span a,
#pagination span.deco,
#pagination span.current {
	display: block;
	padding: 7px 18px;
	color: #ffffff;
		background: #000000;
}

#pagination span a:hover,
#pagination span.current {
	color: #3e77aa;
}
#pagination span.current {
	cursor: default;
		border-left: 1px solid #3a3a3a;
}



/***************************************************************************
													 10. SIDEBAR WIDGETS
***************************************************************************/


/* 10.1 LINKS LIST */
.column .widget ul.list li {
	line-height: 1.5em;
}

.column .widget ul.list li + li {
/*	margin-top: 4px;*/
}

.column .widget ul.list a {
	overflow: hidden;
	position: relative;
}
.column .widget ul.list {
	padding: 4px;
	border: 1px solid #ededed;
	border-radius: 4px;
}
.column .widget ul.list.level2 {
	padding: 5px 0px 5px 0px;
	border: none;
}
.column .widget ul.list li {
	margin-bottom: 3px;
}
.column .widget ul.list li a {
	border: 1px solid #ededed;
	border-radius: 4px;

	display: block;
	font-weight: 600;
	line-height: 1.35em;
	text-transform: none;
	background: none #fff;

	color: #007300;
	font-size: 18px;
	text-transform: uppercase;
	z-index: 1;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
}
.column .widget ul.list li.active a,
.column .widget ul.list li a:hover,
.column .widget ul.list.level2 li.active a,
.column .widget ul.list.level2 li a:hover {
	color: #fff;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#07f818+0,036f0b+100 */
	background: rgb(7,248,24); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(7,248,24,1) 0%, rgba(3,111,11,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(7,248,24,1) 0%,rgba(3,111,11,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(7,248,24,1) 0%,rgba(3,111,11,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#07f818', endColorstr='#036f0b',GradientType=0 ); /* IE6-9 */
}
.column .widget ul.list li.firstItem a {
}

.column .widget ul.list li a span {
	position: relative;
	z-index: 1;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	display: block;
	padding: 3px 10px 4px 10px;
	line-height: 1.35em;
}
.column .widget ul.list ul.list.level2 li a {
	position: relative;
	z-index: 1;
	font-size: 16px;
	text-transform: none;
	color: #000;
}
.column .widget ul.list ul.list.level2 li a:hover {
	color: #fff;
}
.column .widget ul.list ul.list.level2 li a span {
	padding: 3px 6px 4px 10px;
}
.column .widget ul.list li a:hover span {

}
.column .widget ul.list ul.list.level2 li a:hover span {
}
.column .widget ul.list li a::before {
/*	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	padding: 6px 11px 6px 0;
	width: 100%;
	height: 100%;
	line-height: 1.35em;
	color: #fb4c57;
	text-decoration: underline;
	content: attr(title);
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);*/
}

.column .widget ul.list li a:hover::before {
/*		-webkit-transform: translateX(0%);
		-moz-transform: translateX(0%);
		transform: translateX(0%);*/
}
.column .widget ul.list li a:hover span {
/*		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		transform: translateX(100%);*/
}



.column .widget ul.list li.active a {
	background: #3e77aa;
	color: #ffffff;
}

.poleznoe i:after,
.poleznoe i:before {
	color: #036f0b;
	margin: 0 10px 0 0;
	vertical-align: baseline;
	line-height: 100%;
}
.poleznoe a:hover i:after,
.poleznoe a:hover i:before {
	color: #ff0000;
}
.column .widget.poleznoe ul.list {
	border: none;
}
.column .widget.poleznoe ul.list li {
	border: 1px solid #ededed;
	margin-bottom: 15px;
}
.column .widget.poleznoe ul.list li a span {
	font-size: 15px;
	line-height: 22px;
	color: #000;
}
.column .widget.poleznoe ul.list li a:hover span {
	color: #fff;
}

/* 10.2 SIDEBAR PRODUCT LISTING */

.product_listing_sidebar .product_price {
		margin-bottom: 20px;
}
.product_listing_sidebar .product_links form {
		display: inline-block;
}



/***************************************************************************
													 11. SEARCH RESULTS PAGE
***************************************************************************/

#searchresults {
	margin: 0;
}
#searchresults .search-form {
	margin: 15px 0 0 0;
}
#searchresults .search-form input {
	width: 100%;
	float: left;
	padding: 0 34px 0 10px;
}
#searchresults .search-form button {
	width: 34px;
	height: 34px;
	float: left;
	margin: 0 0 0 -34px;
	background: none;
	border: none;
	font-size: 20px;
	color: #3e77aa;
}
#searchresults .search-form button:hover {
	color: #000000;
}
#searchresults .search-form button i {
	line-height: 32px;
}

#searchresults h3 {
	margin: 0;
	padding: 0;
} 

#searchresults ol {
	list-style-type: none;
	padding: 15px 0 0 0;
}
#searchresults ol li {
	overflow: hidden;
	margin: 0;
	padding: 10px;
	border: 1px solid #dbdbdb;
		border-radius: 5px;
}
#searchresults ol li + li {
	margin-top: 5px; 
}
#searchresults ol li .search-result_image {
	float: left;
	margin-right: 15px;
}
#searchresults ol li .search-result_container {
	padding: 15px 0 0 0;
}
#searchresults ol li .search-result_image a {
	display: block; 
		transition: all 0.5s ease;
}
#searchresults ol li {
		transition: all 0.5s ease;
}
#searchresults ol li:hover {
		box-shadow: 0 0 19px rgba(0,0,0,0.2);
}
#searchresults ol li .search-result_image a img {
		transition: all 0.5s ease;
}
#searchresults ol li .search-result_image a:hover img {
		-moz-transform: scale(0.9,0.9);
		-webkit-transform: scale(0.9,0.9);
		transform: scale(0.9,0.9);
}


/***************************************************************************
													 12. PRODUCT PAGE
***************************************************************************/

/* 12.1 PRODUCT IMAGES */
.product_img_big {
	max-height: 345px;
	overflow: hidden;
	border: 1px solid #dbdbdb;
}



.product_img_thumbs {
	max-height: 120px;
	padding: 12px 0 0 0;
}
.product_img_thumbs__list a {
	width: 106px !important;
	display: block;
		position: relative;
}
.product_img_thumbs__list a:after {
		position: absolute;
		left:0px;
		right: 1px;
		top: 0px;
		bottom: 0px;
		content: "";
	border: 1px solid #dbdbdb;
}
.product_img_thumbs__list a img {
	width: 100%;
		padding: 5px;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bx-wrapper {
	max-width: 346px !important;
}
.bx-pager {
/*	display: none !important;*/
}

.bx-wrapper .bx-controls-direction a {
	width: 30px;
	height: 0;
	display: block;
	overflow: hidden;
	margin: -15px 0 0 0;
	padding: 30px 0 0 0;
	position: absolute;
	top: 50%;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABZlJREFUeNrsWu9LW1cYvt6oGbpGh424pdGudtCCcbpqv2wZ+9E5EDbNhsvwg/phdIpuf4Df3R+wgX7YKIID/aCt4NyEisKCQsGyCNMEDaHTJLRLuq5xpGaQufcN75EYjDnn3Jt82O4DD3i9OffNc8657znnfVKi8KEa+ArwIvAC0Aq00L04MAoMAR8Ad4F/KvoA47QCm4CXgXZgDd17DNwHBoC/An+h73EmSvLcfwl4DdhCQnmAwr3A+8CIpNBLwBvAt6mjeYAdvQpcBgZFBeP/ncR6yS+9B/QQjzjbYNyPgC7gFcm4fuAd4O3T4ppOaYBT9QNgN7BKw3TEts1AM416Ms/ncareBA4Dz2uIe54GqoJG/dlZgpnYdxT90Ah8DvjbGaJR7OdAt45xsbMrgduZok1Z00lvsQwN9Hxfjml8U2exDFfp+fdOE/wmTeNCAUf6KY10Jj6maVwoNFNGT3e2mpGNnUrh4aRYmdnYVYS4Lop1LPiabDa22WxmgY/XUyyGG7LZ2Gq1mgQ+foVipQVX0zorjImJiZadnZ1PBwYGbALNWiimldZZYYyNjdUFAgFHd3e3RaAZxrLiC90O/ExG7ODg4HX8OxgMxhobG28LNP8O+ALwKxmxo6Oj6Q7e2tpKNDU1+QSaj5bSdlFabDQajbvd7mXBR1ykbaK02FAolOzp6QkKPqJJFdgyniq2s7Pzx42Njbhg4Au0N5YW29HRsevz+ZKCcS+r9C4VUyw7FNiLLBZhVzNOPXmzcV9f36vsemVlJSgplu3oaniz8cjISB27XlhYeCIpNr2jw9TemWNPfQIHBwepSCQSg95tKCsrK4VkUQdILS4uPpQI/A/wRZ64iUTiyO/3J2A2VZvNZrW9vf358vLyI+jwvyTipjDgG7TRzguv13uQKbqtrc0mKRrPy+eI+Y8/fn8yU7TT6bRIiv7dRFsv7tOJTqLx6IgrBPf6rZNon0pHNyFMTk6Gh4eHl2G6pd8lh8MhepwLUaVCCPPz8/H+/v5gPB5P4XVra2uF4CMCJjpCvSYaHEd6c3MzbDKZktDrHsHmK5gWgO8Kn+5hpNfW1uKHh4ep3t7ePcHm0yW0zftCdD3WABzdb4BlwK8FSjhagcWAL1VKIF6lePBSzCjVoIoFjBVlp6X7lEgKjT2KxbBMNahCw0+xjo+HESq2FRoe5WQlM0gFt0LjDsU6sfDvUcGtsUBB7wKXcvR+BS2PhcD3uLDkKuKFqODWoHPQn4E/nVHE26XV4qrOcfHIegs3bLkEJ6nmVKLjSN8lsWftu7GquE1xm3Uc2VtUz1JyCWaifVRwwyWrSkOC+oGmMc9mH0Xfoy9oVeRr0/iKfEvTOJF907BacuA/Y6apyv8MxpTO+L/hHgrCcA8Vwz08jmu4hzqPtOEeCrmHgo5hJjS5h4KOYSbk3UN0CtExRBdCMriUe4hOITqG6EJIxk27h9hjDuBbvK3m5ubeq62ttWioSVvoPX4Z+Alvo9nZ2Ut2u92soSaNK8E2Cn6dzW8erK+vh10uV31lZaVZg+g/aAfl4C5Ira4edHV1VVksllINoh+h4PdFFvpIJJKE4HsaRf9NgrkL8bFYLLW0tPRUo+hnKPhDhdNq0VF0CQk+JxJXB9Eqt3uYDXQO0UFk1+gsCmRvbvcwG+gcooPIrtFZFMjeNdLHQ8zSbrc7nanRckHrJRwOy9qY3MAsPTQ0lM7UaLmg9RKNRlO87dU8taacYpkxzsSi3yTwiHh2rYlXLDPGmVj0mwQe8VjlqRLoLFahmPtFFovYF3YPmVOoQSwrEgi5h8wp1CAWEZD62dLMzMz1qampIGTlmOSrKPWzpfHxcdv09PQTj8eTkIw7ariHRYDhHhYhruEest433EOdYLiH2acYxXAPDfeQZ5013MNs/CvAAN+q3yxd1e4sAAAAAElFTkSuQmCC) !important;
	background-position: 0 0;
	background-repeat: no-repeat;
}
.bx-wrapper .bx-controls-direction a.disabled {
	display: none !important;
}
.bx-wrapper .bx-controls-direction a.bx-prev {
	left: 10px;
	background-position: 0px 0px !important;
}
.bx-wrapper .bx-controls-direction a.bx-prev:hover {
	background-position: -30px 0 !important;
}
.bx-wrapper .bx-controls-direction a.bx-next {
	right: 10px;
	background-position: 0px -30px !important;
}
.bx-wrapper .bx-controls-direction a.bx-next:hover {
	background-position: -30px -30px !important;
}

.preim {
	background: none #fff3b5;
	color: #474640;
	font-size: 12px;
	height: 66px;
	padding: 0 0 0 28px;
}
.preim [class^="flaticon-"]:before,
.preim [class*=" flaticon-"]:before,
.preim [class^="flaticon-"]:after,
.preim [class*=" flaticon-"]:after {
	color: #73726c;
	font-size: 30px;
	line-height: 66px;
	margin: 0 10px 0 0;
}
.preim span {
	color: #73726c;
	font-size: 25px;
	line-height: 28px;
}
.preim .preim_box.preim_box_2 span {
	font-size: 41px;
	line-height: 71px;
	margin: 0 10px 0 0;
}
.preim .preim_box.preim_box_3 span {
	display: block;
	margin: 16px 0 -27px 0;
}
.preim_box {
	width: 14%;
	padding: 0 0 0 0;
}
.preim_box.preim_box_title {
	width: 30%;
	font-size: 13px;
}
.preim .preim_box p {
	margin: 20px 0 0 0;
	line-height: 15px;
}

.preim .preim_box_5 [class^="flaticon-"]:before,
.preim .preim_box_5 [class*=" flaticon-"]:before,
.preim .preim_box_5 [class^="flaticon-"]:after,
.preim .preim_box_5 [class*=" flaticon-"]:after {
	font-size: 40px;
	line-height: 66px;
	vertical-align: middle;
}
.preim .preim_box_5 span {
	background: #73726c none repeat scroll 0 0;
	color: #fff3b5;
	display: block;
	font-size: 10px;
	font-style: normal;
	font-weight: bold;
	left: 3px;
	line-height: 16px;
	position: absolute;
	top: 20px;
}

.preim .preim_box_6 span {
	border: 2px solid #73726c;
	content: "";
	display: block;
	height: 10px;
	left: 10px;
	position: absolute;
	top: 28px;
	width: 10px;
	border-radius: 3px;
}

/* 12.2 PRODUCT INFO */
.product_wrap .product_name {
	margin: -2px 0 0 0;
	font-size: 20px;
}



.product_wrap .product-price {
	margin: 15px 0 0 0;
	padding: 0;
		font-size: 17px;
	font-weight: bold;
}
.product_wrap .product-price .money {
	margin: 0 5px 0 0;
}
.product_wrap .product-price .compare-at-price {
		font-weight: 400;
	font-size: 14px;
}

#purchase label {
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 0 !important;
	line-height: 37px;
}
#purchase #quantity {
	width: 50px;
	height: 37px;
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 9px 0 8px;
	outline: none;
	text-align: center;
}

#purchase .variants-wrapper {
	display: inline-block;
	margin: 15px 10px 0 0;
}
#purchase .variants-wrapper select {
	width: auto;
	height: 37px;
	max-width: 150px;
	padding: 9px 6px;
}

#purchase #add-to-cart {
	margin: 15px 10px 0 0;
}
#purchase #add-to-cart i {
	vertical-align: middle;
	margin: 0 5px 0 0;
	font-size: 15px;
	line-height: 1.5em;
	position: relative;
	top: -2px;
}
		
.product_wrap .product_details {
	margin: 15px 0 0 0;
	padding: 10px 0 15px 0;
	border: 1px solid #dbdbdb;
	border-width: 1px 0;
}
.product_wrap .product_details > div {
	padding: 5px 0 0 0;
}

.product_wrap #product_description h4 {
	padding-bottom: 0;
	border: none;
	text-transform: none;
}



.product_image-additioanl a {
	width: 33%;
	display: block;
	float: left;
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
	}



/* 12.3 PRODUCT PAGINATION */
.product_wrap .pagination__product {
	width: 100%;
	margin: 15px 0;
}
.product_wrap .pagination__product ul {
	list-style-type: none;
	margin: 0 !important;
	padding: 15px !important;
}
.product_wrap .pagination__product ul li.left-arrow {
	float: left;
}
.product_wrap .pagination__product ul li.right-arrow {
	float: right;
}



/* 12.4 RELATED PRODUCTS */
.widget_related_products h3 {
	margin: 40px 0 30px;
}

ul.product_listing_related {
	list-style-type: none;
}
ul.product_listing_related .product_links {
		margin-top: 20px;
}


/***************************************************************************
													 13. BLOG
***************************************************************************/

/* 13.1 POSTS LISTING */

.blog-article {
	padding: 15px 0 0 0;
}

.article_header {
	padding: 15px 0;
	border-bottom: 1px solid #dbdbdb;
}
.article_header .product_name a {
	font-size: 20px;
}

.blog-article_meta-comments {
	float: right;
	padding: 9px 0 0 15px;
}

.blog-article_date,
.blog-article_meta-tags {
	font-style: italic;
}

.blog-article_meta-tags a {
	text-decoration: underline;
}

/* 13.2 SINGLE POST */
.article_meta-comments {
	float: right;
	padding: 2px 0 0 15px;
}
.article_meta-tags a {
	text-decoration: underline;
}

.article_date,
.article_meta-tags,
.article_meta {
	font-style: italic;
}



#comments ul {
	list-style-type: none;
}

.comment-form #comment-author,
.comment-form #comment-email,
.comment-form #comment-body {
	width: 100%;
}

.comment-form #comment-body {
	min-height: 100px;
	margin-bottom: 15px;
}
.article_comments-form {
	padding-bottom: 10px;
	margin-top: 1em;
	padding-top: 10px;
}
.section-title {
	margin-bottom: 2px;
	padding-bottom: 8px;
}
.comment-form .row {
	margin-bottom: 1em;
}



/***************************************************************************
													 14. CUSTOMER PAGES
***************************************************************************/

/* 14.1 LOG IN */

/* 14.2 ACCOUNT */
.customer_name {
	text-transform: none !important;
}
.customer_name .divider {
	margin: 0 7px;
}
.customer_name .email {
	color: #777777;
}
.customer_name a {
	float: right;
}



/* 14.3 ADDRESSES */
.customer_addresses ul.customer_addresses_actions {
	list-style-type: none;
	margin: 15px 0;
}
.customer_addresses ul.customer_addresses_actions li a i {
	margin: 0 5px 0 0;
	line-height: inherit;
}

.customer_addresses .col-sm-offset-4 label {
	line-height: 1.6em;
}

ul.address {
	list-style-type: none;
}


/* 14.4 ORDERS */
.order_date {
	margin: 15px 0 0 0;
}

#order_details {
	margin: 30px 0 0 0;
}



/***************************************************************************
													 15. CART PAGE
***************************************************************************/

/* 15.1 CART PRODUCTS */
.cart-list {
	overflow: hidden;
}

.cart-list > .row {
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #dbdbdb;
}

.cart-list .item_image {
	text-align: center;
}
.cart-list .item_image a img {
	max-width: 100%;
		transition: all .4s ease;
}
.cart-list .item_image a:hover img {
		-moz-transform: scale(0.9,0.9);
		-webkit-transform: scale(0.9,0.9);
		transform: scale(0.9,0.9);
}

.cart-list .product_name {
	margin-top: 15px;
}

.cart-list .item_remove {
	margin: 0 0 0 10px;
}
.cart-list .item_remove a {
	font-size: 20px;
	color: #fe2a2a;
}
.cart-list .item_remove a:hover {
	color: #3e77aa;
}

.cart-list .row h3.item_vendor {
	border-bottom: 1px solid #dbdbdb;
	color: #888;
}

.cart-list .item_price {
	padding: 10px 0 0 0;
}
.cart-list .item_price .price {
	line-height: 37px;
}

.cart-list .item_price label {
	padding: 0;
	line-height: 37px;
}
.cart-list .item_price .input-small {
	width: 60px !important;
	height: 37px;
	display: inline-block;
	padding: 5px;
	text-align: center;
}

.cart-list .item_price .total {
	text-align: right;
}
.cart-list .item_price .total h3 {
	vertical-align: baseline;
	border: none;
}
.cart_subtotal h3 {
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid #dbdbdb;
}
.cart_subtotal h3 .money {
	float: right;
	font-size: inherit;
}
.cart_buttons {
	margin: 30px 0;
}

.cart_instructions textarea {
	width: 100%;
}

#payment-methods {
	overflow: hidden;
}
#payment-methods ul {
	list-style-type:none;
	list-style-position: outside;
}
#payment-methods ul li {
	float:left;
	padding: 15px 15px 0 0;
}



/* 15.2 GUEST CHECKOUT */
#guest {
	padding: 30px 0 0 0;
}
#guest form {
	padding: 15px 0 0 0;
}



/***************************************************************************
													 16. CONTACTS PAGE
***************************************************************************/

.contact-scope iframe {
	width: 100%;
	margin: 0 0 15px;
	border: 1px solid #dbdbdb;
		border-radius: 5px;
}


.contact-form textarea {width: 100%;}


.copyr_big {
    font-size: 12px;
    color: #cdcdcd;
}










.logout{
	border-left: 1px solid #d6d6d6;
}








.usermenus:hover ul.usermenu{
	display: block;
}



ul.usermenu {
    display: none;
    background: url("../images/usermenu.png") no-repeat;
    width: 245px;
    height: 252px;
    padding-top: 29px;
    padding-left: 6px;
    padding-right: 10px;
    position: absolute;
}
ul.usermenu li{
	padding:0;
	margin:0;
}
.login_links_box .nav.nav-pills.login_links li ul.usermenu a
{
	font-size:14px;
	color:#343434;
	display:block;
	width:100%;
	height: 34px;
	padding: 0 0 0 19px;
	margin: 0;
}

.login_links_box .nav.nav-pills.login_links li ul.usermenu a:hover{
color:#66ba6a;
}


.login_links_box .usermenus:hover a span{
	/* font-weight: bold; */
	color: #691a99;
}


footer ul.city_list{
	
background: #333;
	
border-top: 1px solid #6e6e6e;
	
border-left: 1px solid #6e6e6e;
	
border-right: 1px solid #6e6e6e;
}


ul.city_list {
    background: #fff;
    border-top: 1px solid #dfdfdf;
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
    position: absolute;
    /* margin-top: 14px; */
    /* padding-top: 14px; */
    display: none;
    /* visibility: hidden; */
    /* opacity: 0; */
    /* transition: visibility 0s, opacity 0.5s linear; */
    /* transition: opacity 1s ease-out; */
    /* opacity: 0; */
    /* height: 0; */
    overflow: hidden;
	margin-left: 90px;
}

li.current_city:hover ul.city_list{
	/* opacity:1; */
	display:block;
	/* visibility: visible; */
	/* height: auto; */
	/* -webkit-animation: fadeIn 0.3s; */
	/* animation: fadeIn 0.3s; */
	z-index: 99;
}

footer li.current_city{
	/* z-index: 999; */
}

li.current_city {
    position: relative;
    min-height: 41px;
    /* z-index: 999; */
}

.city_menu li a{
	display:block;
	color: #66ba6a;
	font-size:18px;
	text-transform: lowercase;
	text-decoration:none;
	background:url("../images/arrow_city.png") 100% 11px no-repeat;
	padding-right: 18px;
}

ul.city_menu {
    position: absolute;
    top: 32px;
    left: 0;
    /* z-index: 999; */
    width: 236px;
    text-align: right;
    height: auto;
}

.city_menu .city_list li a:hover {
	color:#66ba6a;
}

.city_menu .city_list li a {
    padding-left: 16px;
    padding-bottom: 12px;
    padding-top: 12px;
    display: block;
    padding-right: 20px;
   /* min-width: 295px;*/
    border-bottom: 1px solid #dfdfdf;
    font-size: 17px;
    color: #b1b1b1;
    text-decoration: none;
	background:none;
    text-align:left;
}

footer .city_menu .city_list li a {
	    border-bottom: 1px solid #6e6e6e;
}

.current_city .decor {
    background: url("../images/city_decoration.png") bottom repeat-x;
}

#top-menu li {
    float: left;
    color: #000;
    font-size: 14px;
    text-transform:uppercase;
}

#top-menu li a{
    color: #000;
    font-size: 15px;
    display:block;
    text-decoration:none;
    padding-bottom:4px;
    border-bottom:1px solid transparent;
    font-weight: 400;
}

#top-menu li a:hover{
	color:#66ba6a;
	border-bottom:1px solid #66ba6a;
}



#top-menu li.separ {
    width: 14px;
    border-right: 1px solid #d6d6d6;
    margin-right: 14px;
}

ul#top-menu {
    margin-top: 18px;
    display: block;
    float: left;
}

.add_object {
    float: right;
    margin-top: 12px;
}

.content {
    min-height: 500px;
    padding-bottom: 45px;
    padding: 0!important;
}

.o_c{
	padding: 0!important;
}

button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover{
	opacity:0.9;
}

form.action_print input[type="button"]:hover{
	opacity:1;
	text-decoration:none;
}

form.action_print input[type="button"]{
	background:none;
	color: #333;
	min-height: 24px;
	text-transform: none;
	min-width: 108px;
	text-align: left;
	text-decoration: underline;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"]
{
	min-width: 200px;
	min-height: 43px;
	text-transform: uppercase;
	background: #66ba6a;
	border-radius: 10px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	border: none;
}
.registration_form input[type="submit"] {
    background: url("../images/but_reg.png") no-repeat;
    width: 311px;
    height: 43px;
    overflow: hidden;
    text-indent: -9999px;
    display: block;
    cursor: pointer;
    margin-top: 25px;
}

.required_field {
    background: url("../images/reque.png") no-repeat;
    padding-left: 28px;
    font-size: 14px;
    /* font-weight: 300; */
    color: #333333;
    margin-top: 18px;
    margin-bottom: 18px;
}

.reg1,
.reg2 {
    width: 309px;
    float: left;
}

.reg2{
	margin-left:66px;
}

.reg{
	width:100%;
	clear:both;
	margin-bottom: 36px;
	height: 100%;
}

.breadcrumb a {
    display: inline-block;
    background: url("../images/breacr.png") 100% 3px no-repeat;
    padding-right: 20px;
    margin-right: 3px;
}


input[type=radio], input[type=checkbox] {
	/* display: none; */
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 99;
	opacity: 0;
	cursor: pointer;
	max-height: 22px;
}

input[type=radio] + label, input[type=checkbox] + label {
	display: inline-block;
	cursor: pointer;
	background: url(../images/checkbox.png) no-repeat left 2px;
	padding: 0 0 0 26px;
}

input[type=radio]:checked + label, input[type=checkbox]:checked + label {
	background: url(../images/checkbox_on.png) no-repeat left 2px;
}

input[type=checkbox] + label {
	background: url(../images/checkbox.png) no-repeat left 2px;
}

input[type=checkbox]:checked + label {
	background: url(../images/checkbox_on.png) no-repeat left 2px;
}

.infofield {
    font-size: 14px;
    margin-bottom: 7px;
    margin-top: 14px;
}


	.modal-dialog {
		width: 352px;
		margin: 30px auto;
	}

.modal-content {
	position: relative;
	background-color: #f7f7f7;
	border-top: 6px solid #66ba6a;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	outline: 0;
}

button.close{
	background: url("../images/close.png") center center no-repeat;
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	right: -32px;
	top: -35px;
	min-width: 30px;
}

button.close .fa.fa-times{	
	display:none;
}

.modal-title {
	text-transform: none;
	font-size: 20px;
	font-weight: 600;
}



.popup__item {
    margin-bottom: 10px;
    font-size: 13px;
    color: #575757;
}

.popup__item__title {
    padding-bottom: 4px;
    display: block;
}

.popup_lk .btn.btn_enter {
    width: 100%;
    text-transform: uppercase;
    font-weight: 400;
}

.popup__units a {
    color: #333333;
    font-size: 13px;
}

.errors.error_message {
    font-size: 13px;
    color: darkred;
}
.link_register a:hover{
	text-decoration: none;
}
.link_register a {
    color: #333333;
    font-size: 14px;
    text-decoration: underline;
    position: absolute;
    right: 22px;
    top: 15px;
}

.ab_list .js_ab.ab {
    display: block;
    background: url("../images/ab_fon.png") no-repeat;
    width: 269px;
    height: 503px;
    padding-left: 19px;
    padding-right: 19px;
    padding-top: 19px;
    padding-bottom: 19px;
    float: left;
    margin-left: 21px;
    margin-bottom: 16px;
    margin-top: 10px;
}

.ab_list .ab_img {
    /* border-radius: 50px 0; */
    margin-bottom: 4px;
    height: 231px;
    overflow: hidden;
}
.ab_list .ab_img img,
.ab_list .block-row-img img{
	border-radius: 50px 0;
    display: block;
}

.ab_list .block-row-img {

}

.js_ab.ab.block .block-text a.name {
    text-transform: none;
    color: #000;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
}

.ab_list .block-text {
    border-top: 1px solid #e9e9e9;
    margin-top: 1px;
    padding-top: 7px;
}

.block-text .anons {
	overflow: hidden;
	height: 66px;
	margin-top: 4px;
}
.block-text .anons p{
	margin: 0;
	line-height: 21px;
}
.block-text .anons a{
	color:#4e4e4e;
	font-size: 13px;
	text-decoration: none;
	line-height: 21px;
}

.js_price_votes.price_votes img,
.js_rating_votes.rating_votes img {
    float: left;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.ab_id .js_rating_votes2{
	width:22px;
}
.js_rating_votes2{
	width:17px;
}

.js_price_votes2,
.js_rating_votes2 {
    float: left;
    display: block;
    margin: 0;
    padding: 0;
    /* width: 16px; */
    /* height: 18px; */
    overflow: hidden;
    /* cursor: pointer; */
    /* pointer-events: none; */
}

.js_price_votes.price_votes,
.js_rating_votes.rating_votes {
    display: block;
    width: 90px;
    height: 17px;
    margin-top: 4px;
    float: right;
    margin-left: 0px;
}

.ab_param_address .icon.icon-home-pointer {
    font-size: 28px;
    text-align: left;
}

.ab_param_address .ab_param_value {
    line-height: 21px;
    font-size: 13px;
    vertical-align: top;
    color: #4e4e4e;
}

.ab_param_address {
 margin-left: -6px;
    /*height: 26px;*/
	overflow: hidden;
	max-height: 60px;
}

.ab_id .rate i.icon.icon-rating {
	    font-size: 33px;
	    margin-left: -1px;
	    margin-top: -5px;
	    color: #691a99;
	    display: inline-block;
}

.rate i.icon.icon-rating {
    font-size: 25px;
    display: block;
    float: left;
}

.ab_list .ab_name,
.ab_list .block h4 {margin: 0 0 10px 0;height: 24px;overflow: hidden;}

.ab_id .rate {
	width: 155px;
	height: 21px;
}

.ab_id .js_price_votes.price_votes,
.ab_id .js_rating_votes.rating_votes{
	width: 117px;
	height: 20px;
	margin-top: 1px;
}


.rate {
    margin-left: -4px;
    width: 118px;
    height: 20px;
    overflow: hidden;
    float: left;
}

.ab_reviews {
    float: left;
    width: 115px;
    font-size: 13px;
    color: #333333;
    vertical-align: top;
}

.ab_list .icon{
	color: #691a99;
}


.ab_list.first_page .block_header{
	padding-bottom: 24px;
	background: url("../images/show_all.png") 100% 4px no-repeat;
	margin-left: 0px;
}

.ab_list .icon.icon-talk{
	font-size: 25px;
}

.ab_shares .shares_link:hover,
.ab_reviews .reviews_link:hover{
	text-decoration:none;
}

.ab_shares .shares_link,
.ab_reviews .reviews_link {
    vertical-align: top;
    padding-top: 2px;
    display: inline-block;
    font-size: 13px;
    color: #343434;
    text-decoration: underline;
}

.ab_shares a,
.ab_money a,
.ab_reviews a {
    text-decoration: none;
    color: #000;
    vertical-align: top;
}

.diafan_errors * {
    color: #fff;
}

.ab_list .icon.icon-wallet {
    font-size: 24px;
    float: left;
}
.ab_list .icon.icon-dollar.free{
	color:#b4bbc2;
}
.ab_list .icon.icon-dollar {
    font-size: 12px;
    vertical-align: top;
    color: #66ba6a;
}

.ab_list .ab_money {margin-left: -3px;width: 118px;vertical-align: top;}

.ab_list i.icon.icon-prize {
    font-size: 25px;
}

.ab_list .ab_shares {
    font-size: 13px;
    color:#343434;
    float: left;
    width: 113px;
}

.ab_shares span {
    vertical-align: top;
}

.ic {
    float: left;
    margin-left: 4px;
    margin-top: 1px;
}

.ab_list {
    clear: both;
    /* overflow: hidden; */
    margin-bottom: 16px;
    /* margin-left: -30px; */
}

.cat_name.icon {
    font-size: 20px;
    font-weight: bold;
    vertical-align: middle;
    line-height: 35px;
}

.show_all {
    clear: both;
    width: 100%;
}

.ab_cat_link {
    clear: both;
}



h1.block_header.icon {
    line-height: 37px;
}

a.link_cat_name .cat_name:hover, a.link_all:hover{
	opacity:0.8;
}
a.link_cat_name{
	    display: block;
}
a.link_all {
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: block;
    line-height:32px;
}

a.link_cat_name {
    text-decoration: none;
}

.ab_id h1 {
    margin-bottom: 17px;
}

.ab_id .ab_param_address .icon.icon-home-pointer{
	font-size: 38px;
}

.ab_id .ab_param .icon.icon-social{
	
float: left;
}

.ab_id .ab_param .fa,
.ab_id .ab_param .icon
{
	font-size: 33px;
	margin-left:-4px;
	margin-top: -3px;
	color:#691a99;
	display: inline-block;
}
.ab_id .ab_param_address span.ab_param_value{
	font-size: 16px;
	text-decoration: underline;
}

.ab_id .tabsid .ui-tabs .ui-tabs-nav{
	margin: 27px 0px 0px 0px;
}

.tabsform.tabsid .ui-tabs .ui-tabs-panel{
	margin:0;
	padding:0;
}




.tabsid .ui-tabs { position: relative;/* padding: 30px 30px; */ zoom: 1;} /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.tabsid .ui-tabs .ui-tabs-nav {/* margin: 27px 0px 0px 0px; */padding: 0;/*padding: .2em .2em 0;*/border-bottom: none;background: url("../images/id_border.png") bottom repeat-x;color: #fff;font-weight: normal;overflow: hidden;}
.tabsid .ui-tabs .ui-tabs-nav li {list-style: none;float: left;position: relative;top: 0px;margin: 0;padding: 0 39px 0 0px;white-space: nowrap;background: transparent;border: none!important;outline: none;}
.tabsid .ui-tabs .ui-tabs-nav li a {float: none;padding: 9px 0 7px 0px;text-decoration: none;color: #2f2e2e;font-size: 18px;display: block;}
.tabsid .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
.tabsid .ui-tabs .ui-tabs-nav li.ui-tabs-selected a,
.tabsid .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.tabsid .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.tabsid .ui-tabs .ui-tabs-nav li a,
.tabsid .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer;outline: none;}
.tabsid .ui-tabs .ui-tabs-panel {display: block;border-width: 0;padding: 19px 22px 18px 16px;background: none;background: #fff;min-height: 300px;}
.tabsid .ui-tabs .ui-tabs-hide { display: none !important; }
.tabsid .ui-tabs .ui-tabs-nav li.ui-state-active,
.tabsid .ui-widget-content .ui-state-active,
.tabsid .ui-widget-header .ui-state-active {border: none;background: none;font-weight: normal;color: #66ba6a;margin: 0;display: block;}
.tabsid .ui-tabs .ui-tabs-nav li.ui-state-active a{color: #66ba6a;outline: none;margin: 0;text-decoration:none!important;border-bottom: 2px solid #66ba6a;display: inline-block;padding: 9px 0 7px 0px;}
.tabsid .ui-tabs .ui-tabs-nav li a:hover{text-decoration:underline;}



.tabsid {
    clear: both;
    /* min-height: 389px; */
    margin-bottom: 44px;
    overflow: hidden;
    margin-top: 25px;
}


.ab_id .ab_param,
.ab_param.ab_reviews {
	font-size:16px;
	color:#333333;
	width: 100%;
	float: none;
	margin-bottom: 13px;
	clear: both;
	overflow: hidden;
}

.arr_ballon{
	border-radius: 10px;
	background: #fff;
	width: 333px;
	min-height: 120px;
	overflow: hidden;
	position: relative;
	padding: 21px 17px 22px 19px;
	-webkit-box-shadow: 0px 0px 47px 0px rgba(0,0,0,0.32);
	-moz-box-shadow: 0px 0px 47px 0px rgba(0,0,0,0.32);
	box-shadow: 0px 0px 47px 0px rgba(0,0,0,0.32);
	border-radius: 0 50px;
}
.arr_ballon .icon{
	font-size: 40px;
	color: #691a99;
	float: left;
}
.balloon_close{
	position: absolute;
	right: 0;
	top: 0;
}

.arr_ballon span.ab_param_value {
    vertical-align: top;
    display: block;
    margin-top: 6px;
    padding-top: 3px;
    font-size: 16px;
    color: #4e4e4e;
}

.arr_ballon .h1 {
    text-transform: none;
    margin-top: 6px;
}

.errors.error {
    color: darkred;
}

.separator_big{
	position: relative;
	height: 36px;
	border-top: 1px solid #e2e2e2;
	clear: both;
}


.lr{
	margin-left:-22px;
}

.list_rows {
    clear: both;
    overflow: hidden;
}

.ppf{
	margin-left: 26px;
	margin-right: 26px;
	position: relative;
}


.line{
	background: url("../images/line.png") repeat-x;
	height: 1px;
	width: 100%;
	margin-top: 30px;
	margin-bottom: 12px;
	clear: both;
}

.desc_hint{
	color: #000;
	font-size: 20px;
	text-align: center;
	padding-top: 17px;
}

.add_desc{
	display: block;
	margin: 0 auto;
	background: url("../images/add_button.png") no-repeat;
	width: 261px;
	padding-left: 41px;
	height: 36px;
	padding-top: 1px;
	color: #66ba6a;
	font-size: 20px;
	font-weight: 400;
	margin-top: 15px;
	margin-bottom: 14px;
	cursor: pointer;
	text-decoration: underline;
}

.form_add_header {
	background: url("../images/icon_edit.png") no-repeat right;
	font-size: 20px;
	color: #000;
	display: inline-block;
	padding-right: 35px;
	margin-top: 18px;
	margin-bottom: 17px;
	position: relative;
}

.ab_form form.ajax {
	margin: 0;
	overflow: hidden;
}

.required_field.ppf {
    margin-left: 16px;
}

.ab_id .ab_param .fa{
	margin-left: 0!important;
	margin-top: -5px;
	color: #691a99;
	display: inline-block;
}

.fa-whatsapp {
	width: 27px;
	height: 29px;
	background: url("../images/icon_whatsap.png") no-repeat  3px 7px;
}
.fa.fa-skype {
	width: 27px;
	height: 29px;
	background: url("../images/icon_skype.png") no-repeat left;
}
.fa.fa-phone-square {
	width: 27px;
	height: 29px;
	background: url("../images/icon_viber.png") no-repeat  4px 7px;
}


.ab_pole input[type="text"],
.ab_pole  input[type="email"], 
.ab_pole  input[type="number"],
.ab_pole   input[type="tel"],
 .ab_pole   input[type="password"],
 .ab_pole    input[type="telephone"],
.ab_pole textarea
{padding-left: 12px;padding-right: 20px;}
.ab_pole {
    position: relative;
    margin-bottom: 18px;
    padding-left: 40px;
}

span.ab_req {position: absolute;right: 10px;color: red;top: 8px;}

.form_add_header .ab_req {
    position: relative;
    right: 0;
    top: 4px;
    margin-left: 5px;
    display: inline-block;
}

.ppf textarea {
    height: 98px;
    resize: vertical;
}

.dobratsya {
    margin-bottom: 14px;
}















/* select */

.jq-checkbox {
	top: -1px;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	margin: 0 4px 0 0;
	border: 1px solid #C3C3C3;
	border-radius: 3px;
	background: #F5F5F5;
	background: -webkit-linear-gradient(#FFF, #E6E6E6);
	background:         linear-gradient(#FFF, #E6E6E6);
	box-shadow: 0 1px 1px rgba(0,0,0,.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
	cursor: pointer;
}
.jq-checkbox.checked .jq-checkbox__div {
	width: 12px;
	height: 12px;
	margin: 2px 0 0 2px;
	border-radius: 2px;
	background: #666;
	box-shadow: inset 0 -3px 6px #AAA;
}
.jq-checkbox.focused {
	border: 1px solid #08C;
}
.jq-checkbox.disabled {
	opacity: .55;
}


.jq-radio {
	top: -1px;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	margin: 0 4px 0 0;
	border: 1px solid #C3C3C3;
	border-radius: 50%;
	background: #F5F5F5;
	background: -webkit-linear-gradient(#FFF, #E6E6E6);
	background:         linear-gradient(#FFF, #E6E6E6);
	box-shadow: 0 1px 1px rgba(0,0,0,.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
	cursor: pointer;
}
.jq-radio.checked .jq-radio__div {
	width: 10px;
	height: 10px;
	margin: 3px 0 0 3px;
	border-radius: 50%;
	background: #777;
	box-shadow: inset 1px 1px 1px rgba(0,0,0,.7);
}
.jq-radio.focused {
	border: 1px solid #08C;
}
.jq-radio.disabled {
	opacity: .55;
}


.jq-file {
	width: 100%;
}
.jq-file input {
	position: relative;
	max-width: 100% !important;
	height: auto;
	line-height: 1em;
	cursor: pointer;
}
.jq-file__name {
	cursor: pointer;
	overflow: hidden;
	box-sizing: border-box;
	width: 100%;
	height: 30px;
	padding: 0 10px 0 105px;
	font: 14px/34px ptsans, sans-serif;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.jq-file__browse {
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 17px;
	font: bold 14px/30px ptsans;
	background: #434343;
	color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.jq-file__browse .fa{
	margin-right: 2px;
}
.jq-file:hover .jq-file__browse {}
.jq-file.focused .jq-file__name {}
.jq-file.disabled,
.jq-file.disabled .jq-file__name,
.jq-file.disabled .jq-file__browse {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}


.jq-number {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	padding: 0 36px 0 0;
}
.jq-number__field {
	width: 100px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
}
.jq-number__field:hover {
	border-color: #B3B3B3;
}
.jq-number__field input {
	box-sizing: border-box;
	width: 100%;
	padding: 8px 9px;
	border: none;
	outline: none;
	background: none;
	font: 14px Arial, sans-serif;
	color: #333;
	text-align: left;
	-moz-appearance: textfield;
}
.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}
.jq-number__spin {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 14px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #F5F5F5;
	background: -webkit-linear-gradient(#FFF, #E6E6E6);
	background:         linear-gradient(#FFF, #E6E6E6);
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-shadow: 1px 1px #FFF;
	cursor: pointer;
}
.jq-number__spin.minus {
	top: auto;
	bottom: 0;
}
.jq-number__spin:hover {
	background: #E6E6E6;
	background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
	background:         linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-number__spin:active {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
.jq-number__spin:after {
	content: '';
	position: absolute;
	top: 4px;
	left: 11px;
	width: 0;
	height: 0;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #999;
	border-left: 5px solid transparent;
}
.jq-number__spin.minus:after {
	top: 5px;
	border-top: 5px solid #999;
	border-right: 5px solid transparent;
	border-bottom: none;
	border-left: 5px solid transparent;
}
.jq-number__spin.minus:hover:after {
	border-top-color: #000;
}
.jq-number__spin.plus:hover:after {
	border-bottom-color: #000;
}
.jq-number.focused .jq-number__field {
	border: 1px solid #5794BF;
}
.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-number.disabled .jq-number__spin:after {
	border-bottom-color: #AAA;
}
.jq-number.disabled .jq-number__spin.minus:after {
	border-top-color: #AAA;
}


.jq-selectbox {
	vertical-align: top;
	cursor: pointer;
	color: #2e2e2e;
	width: 428px;
	max-width: 100%;
}
.jq-selectbox__select {
	border: 1px solid #e4e4e4;
	padding: 9px 25px 4px 9px;
	line-height: 30px;
	text-shadow: 1px 1px #FFF;
	background: #fff;
	letter-spacing: 0.2px;
	height: 41px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

}
.jq-selectbox__select:hover {}
.jq-selectbox__select:active {
	background: #fcfcfc;
}
.jq-selectbox.focused .jq-selectbox__select {}
.jq-selectbox.disabled .jq-selectbox__select {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-selectbox__select-text {
	display: block;
	width: 100%;
	white-space: nowrap;
	/* text-overflow: ellipsis; */
	overflow: hidden;
	font-size: 14px;
}
.jq-selectbox .placeholder {
	color: #888;
}
.jq-selectbox__trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 25px;
	height: 100%;
	font: 12px/15px fontawesome;
	background: url("../images/select_arrow.png") center center no-repeat;
}
/*.jq-selectbox__trigger:after{
	content: " ";
	position: absolute;
	top: 8px;
	right: 9px;
	font: 12px/15px fontawesome;
	width: 15px;
	height:10px;
	background: url("../images/select_arrow.png") no-repeat;
}*/
.jq-selectbox__dropdown {
	z-index: 9999;
	margin: -1px 0;
	width: 100%;
	background: #FFF;
	border: 1px solid #a8afb2;
}
.jq-selectbox__search {
	margin: 5px;
}
.jq-selectbox__search input {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 5px 27px 6px 8px;
	border: 1px solid #CCC;
	border-radius: 3px;
	outline: none;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
	box-shadow: inset 1px 1px #F1F1F1;
	color: #333;
	-webkit-appearance: textfield;
}
.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
	-webkit-appearance: none;
}
.jq-selectbox__not-found {
	margin: 5px;
	padding: 5px 8px 6px;
	background: #F0F0F0;
	font-size: 13px;
}
.jq-selectbox ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.jq-selectbox li {
	margin: 0;
	border-top: 1px solid #ecf0f1;
	padding: 6px 6px 5px;
	min-height: 18px;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.jq-selectbox li:first-child{
	border-top: 0;
}
.jq-selectbox li.sel,
.jq-selectbox li.sel:hover{
	cursor: default;
	color: #a8afb2;
	background-color: transparent;
}
.jq-selectbox li:hover{
	background-color: rgba(102, 186, 106, 0.36)!important;
	color: #000!important;
}
.jq-selectbox li.disabled {
	color: #eee;
}
.jq-selectbox li.disabled:hover {
	cursor: default;
	background-color: transparent;
}
.jq-selectbox li.optgroup {
	font-weight: bold;
	font-size: 13px;
}
.jq-selectbox li.optgroup:hover {
	background: none;
	color: #231F20;
	cursor: default;
}
.jq-selectbox li.option {
	padding-left: 13px;
}


.jq-select-multiple {
	box-sizing: border-box;
	border: 1px solid #a8afb2;
	background: #FFF;
	font: 14px/18px ptsans, sans-serif;
	color: #2e2e2e;
	cursor: default;
	width: 428px;
	max-width: 100%;
}
.jq-select-multiple.focused {}
.jq-select-multiple.disabled {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-select-multiple ul {
	margin: 0;
	padding: 0;
}
.jq-select-multiple li {
	padding: 2px 12px 0;
	list-style: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
}
.jq-select-multiple li.selected {
	background: #1b9ada;
	color: #FFF;
}
.jq-select-multiple li.disabled {
	color: #AAA;
}
.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
	background: #CCC;
	color: #FFF;
}
.jq-select-multiple li.optgroup {
	font-weight: bold;
}
.jq-select-multiple li.option {
	padding-left: 25px;
}


input[type='email'].styler,
input[type='password'].styler,
input[type='search'].styler,
input[type='tel'].styler,
input[type='text'].styler,
input[type='url'].styler,
textarea.styler {
	padding: 8px 9px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px Arial, sans-serif;
	color: #333;
}
input[type='search'].styler {
	-webkit-appearance: none;
}
textarea.styler {
	overflow: auto;
}
input[type='email'].styler:hover,
input[type='password'].styler:hover,
input[type='search'].styler:hover,
input[type='tel'].styler:hover,
input[type='text'].styler:hover,
input[type='url'].styler:hover,
textarea.styler:hover {
	border-color: #B3B3B3;
}
input[type='email'].styler:focus,
input[type='password'].styler:focus,
input[type='search'].styler:focus,
input[type='tel'].styler:focus,
input[type='text'].styler:focus,
input[type='url'].styler:focus,
textarea.styler:focus {
	border-color: #CCC;
	border-top-color: #B3B3B3;
	outline: none;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
button.styler,
input[type='button'].styler,
input[type='submit'].styler,
input[type='reset'].styler {
	overflow: visible;
	padding: 8px 11px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	outline: none;
	background: #F5F5F5;
	background: -webkit-linear-gradient(#FFF, #E6E6E6);
	background:         linear-gradient(#FFF, #E6E6E6);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #FFF;
	cursor: pointer;
}
button.styler::-moz-focus-inner,
input[type='button'].styler::-moz-focus-inner,
input[type='submit'].styler::-moz-focus-inner,
input[type='reset'].styler::-moz-focus-inner {
	padding: 0;
	border: 0;
}
button.styler:not([disabled]):hover,
input[type='button'].styler:not([disabled]):hover,
input[type='submit'].styler:not([disabled]):hover,
input[type='reset'].styler:hover {
	background: #E6E6E6;
	background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
	background:         linear-gradient(#F6F6F6, #E6E6E6);
}
button.styler:not([disabled]):active,
input[type='button'].styler:not([disabled]):active,
input[type='submit'].styler:not([disabled]):active,
input[type='reset'].styler:active {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
button.styler[disabled],
input[type='button'].styler[disabled],
input[type='submit'].styler[disabled] {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}


li.icon:before {
	font-family: 'sever-today' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 25px;
	display: block;
	float: left;
}
.jqselect.icon:before{
	font-size: 30px;
	float: left;
	display: block;
	z-index: 9;
	position: absolute;
	left: 0;
	top: 7px;
}
.jq-selectbox li {
	min-height: 17px;
	padding: 4px 10px 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	color: #4e4e4e!important;
	font-size: 14px;
}
.jq-selectbox__select-text {
	padding-left: 25px;
}

li.icon.icon-restoran:before {
	font-size: 17px!important;
	padding-left: 5px;
	padding-right: 5px;
}














.ab_pole .icon {
	
/* float: left; */
	
/* display: inline-block; */
	
height: 26px;
	
width: 26px;
	
position: absolute;
	
top: 11px;
	
left: 0;
	
font-size: 33px;
	
margin-left: -4px;
	
margin-top: -5px;
	
color: #691a99;
}

.ab_pole.abf_name {
    background: url("../images/home.png") no-repeat 3px 50%;
}
.ab_pole.abf_whatsapp {
	background: url("../images/icon_whatsap.png") no-repeat 2px 50%;
}
.ab_pole.abf_viber {
	background: url("../images/icon_viber.png") no-repeat 3px 50%;
}
.ab_pole.abf_skype {
	background: url("../images/icon_skype.png") no-repeat 3px 50%;
}

.abf_wallet .icon {
    font-size: 36px;
    color: #691a99;
    margin-left: -4px;
    margin-top: -5px;
    display: inline-block;
    float: left;
}

.icon_desc{

background: url("../images/icon_desc.png") no-repeat;
}

.ab_pole i.icon.icon-location {
    font-size: 37px;
}



.js_ab_form.ab_form {
    background: #fff;
}

.js_ab_form.ab_form input[type="submit"] {
    margin: 30px auto;
    display: block;
}

.edit_h1 {
    position: relative;
    padding-right: 184px;
    display: inline-block;
}

.show_object {
    position: absolute;
    right: 0;
    top: 7px;
    background: url("../images/show_object.png") no-repeat;
    padding-left: 30px;
    height: 23px;
}
.show_object a{
    font-size: 13px;
    color: #333333;	
}

.ab_param.decor a{
    color: #333333;
    text-decoration:none;
}

.ab_param.decor,
.ab_param.js_ab_wishlist.shop_ab.shop-like {
    cursor: pointer;
}

.ab_param.decor span:hover{
    text-decoration: none;
}

.ab_param.decor span{
	 text-decoration: underline;
	 padding-left: 0px;
}



.ab_list .ab_reviews {
    float: right;
}

.ab_list .rate {
    /* margin: 0; */
    clear: both;
}

.dobratsya span {
	color: #691a99;
}

form .js_price_votes.price_votes{
	width: 179px;
	height: 33px;
}
form .ab_form_param11 {
    /* width: 191px; */
    float: left;
    position: relative;
    height: 33px;
}

form .js_price_votes2{

width: 33px;

cursor: pointer;
}

.wallet_text {
    width: 185px;
    float: left;
    position: relative;
    vertical-align: top;
    padding-top: 8px;
    font-size: 14px;
    color: #333333;
}

.abf_wallet {
    clear: both;
    overflow: hidden;
    vertical-align: top;
}

.main_cat select,
.child_cat select{
	background:transparent;
	color:#fff;
	/* width: 350px; */
}

.main_cat .jq-selectbox__select{
		border:none!important;
}

.main_cat .jq-selectbox__select,
.child_cat .jq-selectbox__select {
	background:transparent;
	color:#fff;
	box-shadow:none;
	text-shadow:none;
}

.child_cat .jq-selectbox__select{
	border: 1px solid #e7e7e7;
}


.main_cat .jq-selectbox__dropdown {
	/* background: #4c4c47; */
	background: #000;
	border: 1px solid #e4e4e4;
	width: 350px!important; 
}


.child_cat .jq-selectbox__dropdown {
	/* background: #4c4c47; */
	background: #000;
	border: 1px solid #e4e4e4;
	/*width: 350px!important;*/
}

.main_cat .jq-selectbox li,
.child_cat .jq-selectbox li {
	color:#fff!important;
	border: none!important;
}
.child_cat .jq-selectbox li,
.main_cat .jq-selectbox li{
	padding-left: 2px;
}

.raion.child_cat .jq-selectbox li {
	padding-left: 11px;
}


.ab_search_cat_ids.main_cat {
    position: absolute;
    top: -682px;
    width: 236px;
    left: 21px;
    /* z-index: 3; */
}

.ab_search_cat_ids.child{
	position: absolute;
	top: -578px;
	width: 223px;
	left: 22px;
	/* z-index: 3; */
}

.ab_search_cat_ids.raion{
	position: absolute;
	top: -523px;
	width: 223px;
	left: 22px;
	/* z-index: 2; */
}
.ab_search_cat_ids.prigorod{
	position: absolute;
	top: -468px;
	width: 223px;
	left: 22px;
	/* z-index: 2; */
}
.ab_search_cat_ids.main_cat .jq-selectbox.jqselect.cs-select.icon .jq-selectbox__select-text {
	text-decoration:underline;
}

.ab_search_cat_ids.child_cat .jq-selectbox.jqselect.cs-select.icon .jq-selectbox__select-text ,
.ab_search_cat_ids.main_cat .jq-selectbox.jqselect.cs-select.icon .jq-selectbox__select-text 
{
    color: #fff!important;
}

.ab_search_cat_ids.main_cat .jq-selectbox.jqselect.cs-select {
    background: url("../images/main_cat_arrow.png") 50% 35px no-repeat;
    padding-bottom: 1px;
}

.main_cat .jq-selectbox__select{
	padding-bottom: 8px;
	height: 50px;
}




.arr_balmap {
	/* background: #fff; */
	width: 283px;
	min-height: 460px;
	height: 460px;
	max-height: 460px;
	overflow: hidden;
	position: relative;
	padding: 0;
	/*-webkit-box-shadow: 0px 0px 47px 0px rgba(0,0,0,0.32);*/
	/*-moz-box-shadow: 0px 0px 47px 0px rgba(0,0,0,0.32);*/
	/*box-shadow: 0px 0px 47px 0px rgba(0,0,0,0.32);*/
	margin: 0;
}

.arr_balmap .close{
	position: absolute;
	right: 22px;
	top: 20px;
	text-decoration: none;
}
.arr_balmap.ab_list .js_ab.ab{
	height: 460px;
	margin: 0;
	float: none;
	background: url(../images/ab_map_fon.png) no-repeat;
	padding-left: 37px;
	padding-right: 22px;
	padding-top: 31px;
	padding-bottom: 19px;
}
.arr_balmap.ab_list .ab_img{
	height: 210px;
}

.arr_balmap .cat_name.icon{
	font-size: 17px;
}

.arr_balmap .rate{
	
width: 108px;
}
.arr_balmap .ab_reviews{
	width: 106px;
}

.arr_balmap .js_price_votes2,
.arr_balmap .js_rating_votes2{
	width: 16px;
}

.arr_balmap .js_price_votes.price_votes,
.arr_balmap .js_rating_votes.rating_votes{
	width: 80px;
}

.arr_balmap .ab_param_address {
	margin-left: -6px;
	height: 26px;
	max-height: 26px;
	overflow: hidden;
}

.arr_balmap.ab_list .ab_money{
	width: 106px;
}

.arr_balmap.ab_list .icon.icon-dollar{
}
.arr_balmap.ab_list .ab_shares{
	width: 100px;
}
.arr_balmap .js_ab.ab.block .block-text a.name{
	font-size: 14px;
}

.arr_balmap.ab_list .block h4{
	height: 30px;
	overflow: hidden;
	margin: 0;
}

.ab_id .col-xs-8 {
    width: 772px;
    margin-right: 26px;
}
.ab_id .col-xs-4 {
    width: 341px;
}


.child_cat .jq-selectbox{
	color: #a4a39f;
}

.child_cat .jq-selectbox__trigger{
	background: url(../images/main_cat_arrow.png) left center no-repeat;
}

.block.paginator {
    clear: both;
    text-align: center;
    font-size: 13px;
    vertical-align: top;
}

.block.paginator a {
	color:#333333;
	text-decoration:underline;
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: top;
}

.block.paginator .active,
.block.paginator a {
	margin-left: 2px;
	margin-right: 2px;
}


.block.paginator .active {
    background: #66ba6a;
    color: #fff;
    display: inline-block;
    width: 20px;
    height: 20px;
}

.block.paginator a.start {
	background: url("../images/paginator_left.png") no-repeat;
	text-indent: -99px;
	overflow: hidden;
}
.block.paginator a.end {
	background: url("../images/paginator_right.png") no-repeat;
	text-indent: -99px;
	overflow: hidden;
}





.image.photomain:before{
	content:" ";
	position:absolute;
	top:0;
	right:0;
	width: 37px;
	height: 37px;
	z-index: 9;
	background: url("../images/photo_main.png") no-repeat;
}

.ppf .col-xs-4 {
    padding-right: 20px;
}

.images_load .image,
.ppf .image{
	
position: relative;
	
width: 231px;
	
height: 231px;
	
overflow: hidden;
	
float: left;
	
margin-right: 40px;
	
margin-bottom: 30px;
}

.images_load .image.after,
.ppf .image.after{
	border: 1px solid #66ba6a;
	position: relative;
	float: left;
	width: 231px;
	height: 231px;
	text-align:center;
	background: url("../images/add_photo_box.png") center center no-repeat;
	cursor: pointer;
}

.image:hover .img_actions{
	display:block;
}

.img_actions{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: url("../images/img_hover.png") repeat;
    display: none;
}

.img_actions a{
    color: #333333;
}
.obj_action,
.image_main,
.image_delete {
 	position: relative;
 	left: 0;
 	bottom: 0;
 	height:35px;
 	width: 100%;
 	display: block;
 }


.img_actions a:hover{
	text-decoration: none;
}
.img_actions a{
    padding-left: 43px;
    padding-top: 7px;
    text-decoration: underline;
}


.image_main {
    background: url("../images/image_main.png") 11px 7px no-repeat;
}

.image_delete {
    background: url("../images/delete.png") 11px 7px no-repeat;
}

.btn.loadButton {
	width: 177px;
	min-width: 177px;
	height: 30px;
	min-height: 30px;
	padding: 4px 10px 5px;
	font-weight: 400;
	text-transform: none;
	margin-top: 17px;
}



.akcii h1.block_header{
	font-size:30px;
	font-weight:normal;
	color: #000;
}






















/* Slider */
.slick-slider
{
	position: relative;

	display: block;
	box-sizing: border-box;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list
{
	position: relative;

	display: block;
	overflow: hidden;

	margin: 0;
	padding: 0;
}
.slick-list:focus
{
	outline: none;
}
.slick-list.dragging
{
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track
{
	position: relative;
	top: 0;
	left: 0;

	display: block;
}
.slick-track:before,
.slick-track:after
{
	display: table;

	content: '';
}
.slick-track:after
{
	clear: both;
}
.slick-loading .slick-track
{
	visibility: hidden;
}

.slick-slide
{
	display: none;
	float: left;

	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide
{
	float: right;
}
.slick-slide img
{
	display: block;
}
.slick-slide.slick-loading img
{
	display: none;
}
.slick-slide.dragging img
{
	pointer-events: none;
}
.slick-initialized .slick-slide
{
	display: block;
}
.slick-loading .slick-slide
{
	visibility: hidden;
}
.slick-vertical .slick-slide
{
	display: block;

	height: auto;

	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}

/* Slider */
.slick-loading .slick-list
{
	background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next
{
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 40px;
	height: 80px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}
.slick-prev:hover,
.slick-prev:focus{
		background: url("../images/slide_left_h.png") no-repeat;
				color: transparent;
	outline: none;
}
.slick-next:hover,
.slick-next:focus
{
	color: transparent;
	outline: none;
		background: url("../images/slide_right_h.png") no-repeat;
		
}

.slick-prev
{
	left: -49px;
	background: url("../images/slide_left.png") no-repeat;
}

.slick-next
{
	right: -229px;
	background: url("../images/slide_right.png") no-repeat;
}

.slider-nav .slick-prev:hover,
.slider-nav .slick-prev:focus{
	/* background: url("../images/slideid_left.png") no-repeat; */
	opacity:0.8;
}
.slider-nav .slick-next:hover,
.slider-nav .slick-next:focus{
	/* background: url("../images/slideid_right.png") no-repeat; */
	opacity:0.8;
}
.slider-nav .slick-prev
{background: url("../images/slideid_left.png") left center no-repeat;width: 11px;max-width: 11px;min-width: 11px;left: 0px;top: 53px;}

.slider-nav .slick-next
{background: url("../images/slideid_right.png") right center no-repeat;width: 11px;max-width: 11px;min-width: 11px;right: 7px;top: 53px;}


/* Dots */
.slick-dotted.slick-slider
{
	margin-bottom: 30px;
}

.slick-dots
{
	position: absolute;
	bottom: -25px;

	display: block;

	width: 100%;
	padding: 0;
	margin: 0;

	list-style: none;

	text-align: center;
}
.slick-dots li
{
	position: relative;

	display: inline-block;

	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;

	cursor: pointer;
}
.slick-dots li button
{
	font-size: 0;
	line-height: 0;

	display: block;

	width: 20px;
	height: 20px;
	padding: 5px;

	cursor: pointer;

	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
	outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
	opacity: 1;
}
.slick-dots li button:before
{
	font-family: 'slick';
	font-size: 6px;
	line-height: 20px;

	position: absolute;
	top: 0;
	left: 0;

	width: 20px;
	height: 20px;

	content:' ';
	text-align: center;

	opacity: .25;
	color: black;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
	opacity: .75;
	color: black;
}


.lr.main_slider {
    max-height: 529px;
    /* overflow: hidden; */
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
    opacity: 0.2;
}

.ab_param.decor.js_ab_wishlist.shop_ab.shop-like.active span {
    /* font-weight: bold; */
    color: #76519e;
    text-decoration: none;
}

.wishlist_remove:hover{
	opacity:0.9;
}

.wishlist_remove {
    cursor: pointer;
    background: url(../images/delete.png) 0px 3px no-repeat;
    height: 35px;
    padding-top: 4px;
    padding-left: 30px;
}

.images_load.photouser {
	position: relative;
	padding-top: 20px;
}

.photouser .errors.error.top.error_p12 {
	position: absolute;
	top: 0;
	bottom: inherit;
}

.photouser .errors.error.bottom.error_p12 {
	position: absolute;
	top: inherit;
	bottom: 0;
}

.add_photo_user {
    position: relative;
    margin-bottom: 4px;
    margin-top: 10px;
}

.comments_form .button {
    margin-top: 14px;
}



.js_shop_preview_img.item.slick-slide.slick-current:after {
	background: url("../images/id_active.png") no-repeat;
	top: -3px;
	left: 0px;
	height: 103px;
}

.js_shop_preview_img.item.slick-slide:after {
	content:" ";
	position:absolute;
	top: 0px;
	left:0;
	width:100%;
	height:100%;
	background: url("../images/id_preview.png") no-repeat;
}

.js_shop_preview_img.item.slick-slide {
    height: 100px;
    width: 135px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    background-size: cover;
}

.slider-nav.slick-initialized.slick-slider {}

.slider-nav .slick-list{
	
padding-top: 3px;
	
width: 725px;
	
margin: 0 auto;
}

.slider-nav {
    margin-top: 12px;
    position: relative;
}

.pid_money .icon.icon-wallet {
    float: left;
    font-size: 33px;
    margin-left: -4px;
    margin-top: -5px;
    color: #691a99;
}

.pid_money .icon.icon-dollar {
	font-size: 19px;
	color: #66ba6a;
}
.pid_money .icon.icon-dollar.free {
	color: #b4bbc2;
}







.comments_name{
	font-weight: bold;
}

.comments_date{
	font-size: 11px;
	font-style: italic;
}

.comment{
	padding: 10px 0;
}

.comment .comments_form{
	padding: 15px 0 15px 30px;
}

a.comments_show_form:link, a.comments_show_form:visited{
	text-decoration: none;
	border-bottom: 1px dashed !important;
}

.comments_level {
	background: url("../images/arrow.gif") no-repeat scroll 10px 8px transparent;
	padding-left: 30px;
}
.comments_form div{
	margin-bottom: 10px;
}
.comments_form textarea {
	width: 580px;
	height: 180px;
}
.comments_param_title{
	font-weight: bold;
}











i.icon.icon-location {}

.ab_list .hasTooltip2.dobratsya span{
	
color: #343434;
	
font-size: 13px;
}

.ab_list .hasTooltip2 i.icon.icon-location {
    font-size: 30px;
    float: left;
    margin-left: -6px;
}

.socials {
    width: 137px;
    float: right;
}

.socials a {
    margin-right: 5px;
}

div#tabs-3 {
    background: #fff;
    padding-left: 20px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

form {}

form.action_print {
    display: inline-block;
    width: 120px;
}

.ab_id .ab_img {
    max-height: 570px;
    overflow: hidden;
}

.ab_form_cat_ids {
    margin-bottom: 18px;
    /* z-index: 9; */
    position: relative;
}
.ab_search_cat_ids.prigorod .jqselect.icon:before,
.abf_prigorod .jqselect.icon:before,
.ab_search_cat_ids.raion .jqselect.icon:before,
.abf_raion .jqselect.icon:before{
	content: "\71";
	color: #a4a39f!important;
}

.abf_raion .jqselect.icon:before,
.jqselect.icon:before {
	font-size: 30px;
	float: left;
	display: block;
	z-index: 9;
	position: absolute;
	left: 0;
	top: 7px;
}

/*
.abf_raion .jq-selectbox {
    background: #fff;
}
*/

.abf_raion {
    position: relative;
    /* z-index: 5; */
}

.jq-selectbox.opened {
    z-index: 1001 !important;
    background: #000;
}


.ab_list.akcii h1.block_header.icon{
	margin-bottom: 17px;
}

.otstup,
.ab_list h1.block_header.icon {
    margin-bottom: 75px;
    clear: both;
    display: block;
    position: relative;
    height: 55px;
}

.search_block {
    position: absolute;
    top: 71px;
    width: 100%;
}















.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
	background: url("../images/datapicker.png") no-repeat;
	width: 276px;
	height: 328px;
	padding-top: 7px;
	padding-left: 10px;
	padding-right: 17px;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
	color: #fff;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
	background: url("../images/datapicker_left.png") 9px 6px no-repeat;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
	background: url(../images/datapicker_right.png) 9px 6px no-repeat;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker th,
.ui-datepicker th span{
	font-weight: bold;
	font-size:16px;
	text-align:center;
	padding-bottom: 20px;
	padding-top: 24px;
}

.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: 5px 3px 5px 3px;
	text-align: right;
	text-decoration: none;
	color: #333333;
	font-size: 14px;
	text-align: center;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}

.ui-datepicker td a.ui-state-default.ui-state-active {
    background: #66ba6a;
    border-radius: 50%;
    color: #fff;
}




.list_rows .ab:hover .ab_actions {
    display: block;
}
.list_rows .ab_actions {
    display: none;
}


.ab_search {
    position: relative;
}

.fim {
    position: absolute;
    top: -834px;
    width: 100%;
}

.fim input[type="text"]{
		-moz-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	-webkit-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
	box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
    height: 34px;
    font-size: 15px;
}

.find_in_map input[type="text"]{
	padding-left:17px;
	padding-right: 46px;

}

.find_in_map input[type="button"]{
	position:absolute;
	right:0;
	top:0;
	background: url("../images/icon_search.png") center center no-repeat;
	width: 56px;
	min-width: 20px;
	height: 35px;
	text-indent: -999px;
	overflow: hidden;
}

.search_block .ab_search_cat_ids {
    width: 250px;
    float: left;
}

.fim2 {
    float: left;
    width: 588px;
    margin-left: 30px;
    position: relative;
}

.reset_all input[type="button"]{
	
background: transparent;
	
text-decoration: underline;
	
font-size: 13px;
	
text-transform: lowercase;
}

.reset_all {
    position: absolute;
    top: -499px;
    left: 35px;
}

.mini_line li.active {
    font-size: 12px;
    color: #00bb65;
}


.tit p{
	margin: 0px;
}

.tit {
    font-size: 12px;
    color: #8f8f8f;
    margin-top: 4px;
    margin-bottom: 3px;
}

.modal-body .infofield {
    color: #575757;
    font-size: 13px;
    margin-top: 9px;
}

.modal-body textarea{
	
height: 91px;
	
resize: vertical;
}

.modal-body .required_field {
    color: #333333;
    font-size: 13px;
}

.modal-footer input[type="submit"]{
	
width: 100%;
	
font-weight: normal;
	
font-size: 15px;
}


.wrap_zal a {
    color: #333;
    text-decoration: none;
}

a:hover .wish_text,
.wish_text{
	text-decoration: underline;
}

.wish_text:hover {
    text-decoration: none;
}

.akcii .block_header {
    font-size: 15px;
    text-decoration: none;
    font-weight: bold;
}

.akcii .block_header.icon:before{
	font-size: 28px;
	padding-top: 2px;
	padding-bottom: 0px;
	padding-left: 2px;
	padding-right: 2px;
	margin-right: 8px;
}

a.akcii_link {
    text-decoration: none;
}

.akcii_link {
	height: 52px;
	overflow: hidden;
	display: block;
}

.akcii .akcii_link .block_header{
	line-height: 22px;
}



.list_rows .ab_actions.akcii {
    /* display: block; */
    bottom: 72px;
}

.my_akcii .js_ab.ab.noact{
	opacity: 0.3;
}

.my_akcii .js_ab.ab {
    position: relative;
    height: 507px;
}

.search_first .fim {
    top: -764px;
}

.block_akcii.ab_list .js_ab.ab {
    height: 409px;
    overflow: hidden;
    margin-left: 4px;
}

.block_akcii .ab_name {
    font-size: 16px;
    color: #000000;
}

.no_image {
    height: 100%;
    width: 100%;
    background: url("../images/no_image.png") center center no-repeat;
    background-size: contain;
}

.ab_actions.akcii.img_actions img {
    margin-right: 8px;
    margin-top: 3px;
}

.wishlist_table {
    margin-left: -21px;
}

.ab_search.search_akcii {
    position: relative;
}

.ab_search.search_akcii .reset_all {
    position: relative;
    top: 0;
}

.ab_search.search_akcii .ab_search_cat_ids.child {
    position: relative;
    top: 0;
    left: 0;
}

.ab_search.search_akcii .search_block {
    position: relative;
    top: 0;
    left: 0;
}

.ab_search_param {
    width: 250px;
    float: left;
    margin-left: 20px;
}

.block_header.header_rel {
    padding-left: 41px;
    background: url("../images/ab_rel.png") no-repeat;
    height: 35px;
    margin-top: 40px;
}

.f_date {
    float: left;
    width: 266px;
    margin-left: 30px;
}

.search_akcii .ab_search_cat_ids {
    width: 400px;
    float: left;
}

.from.timecalendar.hasDatepicker {
    background: url("../images/search_date.png") 94% 50% #fff no-repeat;
}

.date_akcii {
    font-size: 15px;
    background: url(../images/search_date.png) 0% 50% #fff no-repeat;
    padding-left: 20px;
}

.ab_list.akcii .block-text .anons {
    height: 91px;
}

.input-title {
	display: block;
	margin: 7px 0 0;
	font-weight: bold;
}

.button-refresh {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/icon_refresh.png);
	cursor: pointer;
	outline: none;
	text-decoration: none;
}
.js_captcha_update.captcha_update {
	position: absolute;
	top: 29px;
	right: 59px;
}

.reminding_form .captcha{
    margin-bottom: 20px;
}

.reminding_form input[type=email]{
    width: 309px;
    margin-bottom: 10px;
}

span.input-title{
	display: block;
}
.block.captcha {
	position: relative;
}
.captcha{
	width: 309px;
}

.main_first{
	overflow: hidden;
}

.first_main {
	position: relative;
	top: 65px;
	z-index: 3;
}

.map_menu3 li {
    width: 100%;
}

.more_text {
    background: url(../images/main_cat_arrow.png) 50% 12px no-repeat;
    padding-bottom: 1px;
    width: 100%;
    height: 34px;
    border-top: 1px solid rgba(235, 235, 235, 0.22);
    margin-top: 12px;
    cursor: pointer;
}

ul.more_cats {
    display: none;
    padding: 15px;
    -moz-border-radius: 60px 0 0px 0px;
    /* -webkit-border-radius: 60px 0 0px 0px; */
    /* border-radius: 60px 0 0px 0px; */
    -moz-background-clip: padding;
    /* -webkit-background-clip: padding-box; */
    /* background-clip: padding-box; */
    /* background: none rgba(0, 0, 0, .7); */
    -moz-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17);
    /* -webkit-box-shadow: 0 6px 18px 6px rgba(0,0,0,.17); */
    /* box-shadow: 0 6px 18px 6px rgba(0,0,0,.17); */
    width: 255px;
    margin-left: -7px;
    position: relative;
}
/*
li.more_cats_text:hover .more_cats {
    display: block;
}
*/

.login_links_box a span.info_count{
	text-decoration:none;
	color: #9e9e9e!important;
	font-size: 12px;
}

.login_links_box a span.comments_info{
	text-decoration:none;
	color: #9e9e9e!important;
	font-size: 12px;
}
.login_links_box a .info_count span.newobj{
	color: #66ba6a!important;
	text-decoration:none;
	font-size: 12px;
}

.my_city {
    padding-bottom: 11px;
}


.ab_id .ab_actions,
.list_rows .ab_actions,
.first_page .ab_actions{
	display: none!important;
}

.col-xs-3.nopadding.text-right a:hover{
	opacity: 0.8;
}

.ab_form_cat_ids .jq-selectbox__trigger
/*,.abf_raion .jq-selectbox__trigger*/
{
	background: url(../images/select_arrow_req.png) center center no-repeat;
	width: 33px;
}

.ab_search_cat_ids .jq-selectbox li.sel{
	background-color: rgba(102, 186, 106, 0.36)!important;
}


.find_sob {
	position: absolute;
	top: -23px;
	left: 432px;
}