/***********************************************************
0. FONTS
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.1 FORMS
5.2 ALERTS
5.3 BUTTONS

6. GLOBAL PAGE LAYOUT

7. SIDEBAR CONFIGURATION

8. MAIN PAGE
8.1 HEADER
8.2 MEGAMENU
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

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

/***************************************************************************
                           0. FONTS
***************************************************************************/
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: local('Lato Light'), local('Lato-Light'), url(http://fonts.gstatic.com/s/lato/v11/KT3KS9Aol4WfR6Vas8kNcg.woff) format('woff');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url(http://fonts.gstatic.com/s/lato/v11/9k-RPmcnxYEPm8CNFsH2gg.woff) format('woff');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local('Lato Bold'), local('Lato-Bold'), url(http://fonts.gstatic.com/s/lato/v11/wkfQbvfT_02e2IWO3yYueQ.woff) format('woff');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: local('Lato Black'), local('Lato-Black'), url(http://fonts.gstatic.com/s/lato/v11/BVtM30trf7q_jfqYeHfjtA.woff) format('woff');
}


/***************************************************************************
                           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;
}

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

img {
	max-width: 100%;
}

a:focus, a:hover {
	text-decoration: none;
}

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

/* 2.1 GRADIENTS */

/* 2.2 CSS3 TRANSITIONS */






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

/* 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;
}



/* images lazy load */
img.lazy {
	max-width: 100%;
	height: auto;
}



/* 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 #d8d8d8;
}
.addthis_toolbox > a {
	margin: 15px 15px 0 0 !important;
	padding: 0 !important;
}
.addthis_toolbox .at300b {
	height: 21px;
}

.addthis_button_tweet {
	width: 79px;
}

#_atssh {
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
}



/* jquery.formstyler styles for selects */
.jq-selectbox {
	display: block;
	z-index: 1000 !important;
	cursor: pointer;
}
.jq-selectbox.opened {
}
.jq-selectbox.focused {
}

.jq-selectbox__select {
}

.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;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.jq-selectbox__dropdown {
	width: 100%;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}

.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);
}



/* misc */
#at15s {
	z-index: 999 !important;
}

#habla_window_div {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
}



/* hex2rgb color converter */




















/* 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: rgba(51,51,51,.7);
	display: none;
}



/* cookies policy message */
.cookies_container {
	min-height: 60px;
	background: #191919;
	display: none;
}

.cookies_container p {
	display: inline-block;
	margin: 0;
	font-size: 17px;
	line-height: 60px;
	color: #888;
}
.cookies_container p b {
	vertical-align: baseline;
	color: #fff;
}

.cookies_container .cookie_btn {
	height: 40px;
	display: inline-block;
	margin: 10px 0 10px 6px;
	padding: 0 20px;
	border-width: 1px;
	border-style: solid;
	font-weight: bold;
	font-size: 17px;
	line-height: 38px;
	color: #fff;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
	

-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.cookies_container .cookie_ok {
	margin: 10px 0 10px 20px;
	background: #18a439;
	border-color: #18a439;
}
.cookies_container .cookie_no {
	border-color: #585858;
}

.cookies_container .cookie_btn:hover {
	background: #585858;
	border-color: #585858;
}



/* google maps */
#google_map,
#google_map iframe {
	width: 100% !important;
	height: 370px !important;
	background: #f3f3f3;
}



/***************************************************************************
                           4. TYPOGRAPHY
***************************************************************************/




body {
	font-family: Lato;
	font-size: 14px;
	color: #777777;
}



/* 4.1 HEADINGS */



h1,
h2,
h3,
h4,
h5,
h6 {
	font: bold 31px Lato;
	color: #333333;
}

h2,
h3,
h4 {
	font-size: 20px;
}

h5,
h6 {
	font-size: 16px;
}

.column_center h1,
.column_center h2,
.column_center h3,
.column_center h4,
.column_center h5,
.column_center h6 {
	margin: 15px 0;
}



/* PAGE HEADINGS GRADIENT */





































.column_center .page_header {
    text-align: justify;
}

.column_center .page_heading{
	margin: 0;
	padding: 12px 20px 15px 20px;
	border: 1px solid #d8d8d8;
	font: bold 31px/1em Lato;
	color: #333333;
	background: #ececec;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f4f4), color-stop(100%,#ececec)) !important;
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f4f4f4 0%, #ececec 100%) !important;
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	 /* IE10+ */
background: -o-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #f4f4f4 0%,#ececec 100%) !important;
	 /* W3C */

-webkit-border-radius: 5px;
			border-radius: 5px;
}
.column_center .page_heading a {
	float: right;
}
.column_center .page_heading a.title {
	float: left;
	font: bold 31px/1em Lato;
}

.template-index .page_heading {
	margin: 30px 0 0 0;
	-webkit-border-radius: 5px 5px 0 0;
			border-radius: 5px 5px 0 0;
}



/* 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;
}

.badge {
	background-color: inherit;
	color: inherit;
	font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}	


/* 4.3 LINKS */
a {
	color: #333333;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #f8565d;
}

a,
a:before,
a:after {
	-webkit-transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
			transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
}



/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product-box {
	background-color: #ffffff;
	padding: 10px;
	border: 1px solid #d8d8d8;
	-webkit-border-radius: 5px;
			border-radius: 5px;	
}
	
.product_name {
	font-size: 17px;
	color: #333333;
}
.product_name a {
	color: #333333;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.product_name a:hover {
	color: #f8565d;
}


.product_desc {
	font-size: 13px;
	color: #aaaaaa;
}


.money {
	color: red; /* #f8565d;*/
}
.compare-at-price {
	text-decoration: line-through;
}



/* 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;
}



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

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

select,
select.form-control,
textarea,
textarea.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {
	padding: 6px;
	border:1px solid #d8d8d8;
	font: normal 13px 'Arial';
	color: #777777;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	
-webkit-border-radius: 5px;
	        border-radius: 5px;
	
box-shadow: none;
}

select,
select.form-control {
	padding: 8px 3px;
}

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

.form-control:focus {
	border-color: #494d52;
	-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 {
}
.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: 5px;
	        border-radius: 5px;
}

.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 {
	padding: 12px 20px 14px 20px;
	border: none !important;
	font-size: 16px;
	line-height: 1em;
	color: #ffffff !important;
	-webkit-border-radius: 5px;
			border-radius: 5px;
	
-webkit-box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.3);
			box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.3);
	
background: #494d52;
background: -webkit-linear-gradient(top, #303439 0%,#494d52 100%) !important;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303439), color-stop(100%,#494d52)) !important;
background: -moz-linear-gradient(top, #303439 0%, #494d52 100%) !important;
background: -ms-linear-gradient(top, #303439 0%,#494d52 100%) !important;
background: -o-linear-gradient(top, #303439 0%,#494d52 100%) !important;
background: linear-gradient(to bottom, #303439 0%,#494d52 100%) !important;
}

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

.btn:hover,
.btn:hover a,
.btn-info:hover,
.btn-primary:hover {
	background: #f8565d !important;
	background: #f8565d;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #f8565d 0%,#f8565d 100%) !important;
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#494d52), color-stop(100%,#f8565d)) !important;
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f8565d 0%, #f8565d 100%) !important;
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #f8565d 0%,#f8565d 100%) !important;
	 /* IE10+ */
background: -o-linear-gradient(top, #f8565d 0%,#f8565d 100%) !important;
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #f8565d 0%,#f8565d 100%) !important;
	 /* W3C */
}


.btn-cart, btn-contact {
}
.btn-cart:after, .btn-contact:after {
	margin: 0 0 0 5px;
	font: 27px/.1em 'FontAwesome';
	color: #ffffff;
	position: relative;
	top: 3px;
}
.btn-cart:after {
	content: '\f07a';
}
.btn-contact:after {
	content: '\f0e0';
}


.btn-extra-discount, .btn-info {
	padding: 9px 20px 11px 20px;
	background: #ececec !important;
	border: 1px solid #d8d8d8 !important;
	font-size: 14px;
	color: #777777 !important;
	-webkit-box-shadow: none;
			box-shadow: none;
}
/*
.btn-info:before {
	content: '\f129';
	margin: 0 5px 0 0;
	font: 19px/.1em 'FontAwesome';
	color: #494d52;
	position: relative;
	top: 1px;
}
*/
/*
.btn-extra-discount:before {
	margin: 0 10px 0 0;
	content: '\f153';
	font: 27px/.1em 'FontAwesome';
	color: #494d52;
	position: relative;
	top: 6px;
}
*/
.btn-extra-discount:hover, .btn-info:hover {
	background: #ececec !important;
	border: 1px solid #d8d8d8 !important;
	-webkit-box-shadow:	inset 0 0 0 30px rgba(0,0,0,.1);
			box-shadow:	inset 0 0 0 30px rgba(0,0,0,.1);
}



/***************************************************************************
                           6. GLOBAL PAGE LAYOUT
***************************************************************************/

html, body {
	height: 100%;
	background: #494d52;
}

.page_preloader {
	width: 100%;
	height: 100%;
	background: url(img/bx_loader.gif) 50% 50% no-repeat #f4f4f4;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
}

#wrapper {
	position: relative;
	z-index: 1;
	background:  #f4f4f4;
}
#wrapper2 {
	overflow: hidden;
}

.container {
	padding: 0;
}



#main {
	position: relative;
}



/* BACKGROUND GRADIENT */







































.main_bg {
	width: 100%;
	height: 300px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	background: #f4f4f4;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #dfdfdf 0%,#f4f4f4 100%) !important;
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dfdfdf), color-stop(100%,#f4f4f4)) !important;
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #dfdfdf 0%, #f4f4f4 100%) !important;
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #dfdfdf 0%,#f4f4f4 100%) !important;
	 /* IE10+ */
background: -o-linear-gradient(top, #dfdfdf 0%,#f4f4f4 100%) !important;
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #dfdfdf 0%,#f4f4f4 100%) !important;
	 /* W3C */
}



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



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

/* NO SIDEBAR */
.sidebar_none {
}


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


/* RIGHT SIDEBAR */
.sidebar_right {
}


/* BOTH SIDEBARS */
.sidebar_both {
}
.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
***************************************************************************/

/* 8.1 HEADER */
#header {}



.header_row__1 {
	/*height: 50px;*/
	background: #eeeeee;
	position: relative;
	z-index: 999;
}
.header_row__1 .container {
	position: relative;
}












.usermenu {
	float: right;
	/*margin-bottom: 8px;*/
}
#wrapper.simple .usermenu {
	float: right;
	margin-top: 6px;
}
.usermenu li {
	float: left;
	margin: 7px 4px 7px 4px
}
.usermenu li a {
	height: 35px;
	display: block;
	padding: 0 16px;
	background: #ffffff;
	border: 1px solid #d8d8d8;
	line-height: 31px;
	color: #777777;
	-webkit-border-radius: 5px;
			border-radius: 5px;
}
.usermenu li img {
	padding-right: 5px;
    vertical-align: middle;
}
.usermenu ul.dropdown-menu {
	width: 100%;
}
.usermenu li.icon_cart a:before {
	content: '\f07a';
	margin: 0 8px 0 0;
	font: 20px/31px "FontAwesome";
	color: #494d52;
}
/*
.usermenu li.icon_cart {
	position: relative;
}
*/
.usermenu li.icon_cart .badge {
	background: #f8565d;
	color: #ffffff;
	padding: 0 8px;
	line-height: 21px;
	font-weight: bold;
	margin: 0 0 4px 5px;
}
	

/* \f00c */
/*.usermenu li.icon_register a:before,*/
.usermenu li.icon_account a:before {
	content: '\f007';
	margin: 0 8px 0 0;
	font: 20px/31px "FontAwesome";
	color: #494d52;
	position: relative;
	top: -1px;
}
.usermenu li.icon_account .badge {
	position: absolute;
	background: transparent;
	color: #f8565d;
	font-size: 12px;
	top: 2px;
	left: 23px;
	padding: 0 6px;
	line-height: 20px;
}
.usermenu li.icon_login a:before {
	content: '\f023';
	margin: 0 8px 0 0;
	font: 15px "FontAwesome";
	color: #f8565d;
}
.usermenu li.icon_logout a:before {
	content: '\f08b';
	margin: 0 8px 0 0;
	font: 15px "FontAwesome";
	color: #f8565d;
}

.usermenu li a:hover {
	background: #494d52;
	border-color: #494d52;
	color: #ffffff;
}
.usermenu li a:hover:before {
	color: #ffffff;
}

.usermenu li.icon_locale:hover {
	margin: 7px 4px 7px 4px
}

.usermenu li.icon_locale span.caret {
	margin: 0 0 0 5px;
}
.usermenu li.dropdown a.language:hover {
	background: #ffffff;	
	border: 1px solid #d8d8d8;
	color: #777777;
	cursor: pointer;
}
.usermenu li.dropdown a.language:before {
	content: '\f024';
	margin: 0 8px 0 0;
	font: 15px "FontAwesome";
	color: #777777;
}
.usermenu ul.dropdown-menu {
	background: none;
	border: none;
	border-top:1px solid #d8d8d8;
    /*box-shadow: none;*/	
    min-width: 0;
    margin: 0;
    padding: 0;	
}
.usermenu ul.dropdown-menu li {
	margin: 0;
	width: 100%;
}
.usermenu ul.dropdown-menu li a {
	border-top: none;
	-webkit-border-radius: 0;
			border-radius: 0;	
}
.usermenu ul.dropdown-menu li a::before {
	content: none;	
}
.usermenu li.icon_locale ul.dropdown-menu li a {
	/*padding-left: 42px;*/
}


#logo {
	float: left;
	padding: 7px 0 0 0;
}
#wrapper.simple #logo {
	padding: 7px 0;
}
#logo a {
	display: inline-block;
}
#logo a b {
	font-size: 76px;
}
#logo a span {
	display: block;
	margin: -4px 0 0 0;
	font-weight: 300;
	font-size: 15px;
	color: #777777;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
#logo a:hover span {
	color: #494d52;
}

#top_marketing_header {
	float: right; 
	margin: 25px 45px 0 0;
}
#top_marketing_header img {
	max-width: 440px;
}



.header_cart {
	float: right;
}
.header_cart a {
	width: 180px;
	height: 123px;
	display: block;
	margin: 20px 0 0 0;
	border: 1px solid #d8d8d8;
	-webkit-border-radius: 5px;
			border-radius: 5px;
	
-webkit-box-shadow: inset 0 0 0 400px rgba(0,0,0,.03);
			box-shadow: inset 0 0 0 400px rgba(0,0,0,.03);
}
.header_cart a div {
	padding: 0 10px;
}
.header_cart a i {
	display: block;
	float: left;
	margin: 4px 11px 0 0;
	font-size: 53px;
	line-height: 1em;
	color: #f8565d;
}
.header_cart a b {
	display: inline-block;
	vertical-align: baseline;
	padding: 10px 0 0 0;
	font-weight: normal;
	font-size: 20px;
	line-height: 23px;
	color: #333333;
	text-transform: uppercase;
}
.header_cart a b span {
	font-weight: bold;
	font-size: 14px;
	color: #494d52;
	text-transform: none;
}
.header_cart a b span.count {
	margin: 0 3px;
}

	
.header_cart span {
	line-height: 56px;
}


.header_cart a span.btn {
	width: auto;
	display: block;
	margin: 7px 15px 0 15px;
}
.header_cart a span.btn:after {
	content: '\f138';
	margin: 0 0 0 8px;
	font: 16px 'FontAwesome';
	color: #ffffff;
}



.custom_header {
	float: right;
	margin: 15px 0 0 0;
	text-align: right;
}
.custom_header h3 {
	margin: 0;
	font-weight: 300;
	font-size: 21px;
	line-height: 1em;
	color: #333333;
	text-transform: uppercase;
}
.custom_header h4 {
	margin: 5px 0 0 0;
	font-weight: bold;
	font-size: 40px;
	line-height: 1em;
	color: #494d52;
}
.custom_header i {
	vertical-align: middle;
	margin: 0 7px 0 0;
	font-size: 42px;
	color: #f8565d;
}
.custom_header p {
	margin: 1px 0 0 0;
	font-weight: 300;
	font-size: 13px;
	line-height: 1em;
	color: #f8565d;
}
.addthis_native_toolbox {
	margin: 10px 0 0 0;	
}

.header_search {
	margin: 20px 0 0 0;
	padding: 10px;
	background: #333333;
	-webkit-border-radius: 5px 5px 0 0;
			border-radius: 5px 5px 0 0;
}
.header_search .search-form {
	width: 100%;
	height: 40px;
	overflow: hidden;
	padding: 0 115px 0 0;
	background: #ffffff;
	position: relative;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}
.header_search i {
	width: 40px;
	height: 40px;
	display: block;
	font-size: 18px;
	line-height: 39px;
	color: #777777;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	opacity: .7;
}
.header_search #keyword {
	width: 100%;
	height: 40px;
	padding: 0 0 0 40px;
	float: left;
	background: none;
	border: none;
	-webkit-box-shadow: inset 3px 3px 7px 0 rgba(0,0,0,.3);
			box-shadow: inset 3px 3px 7px 0 rgba(0,0,0,.3);
	
-webkit-border-radius: 0;
			border-radius: 0;
}

.header_search #search {
	width: 115px;
	height: 40px;
	margin: 0 -117px 0 0;
}
.header_search #search span {
	width: 115px;
	height: 40px;
	display: block;
	background: #ffffff;
	border-left: 1px solid #d8d8d8;
	font-weight: bold;
	font-size: 17px;
	line-height: 39px;
	color: #333333;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	

	-webkit-border-radius: 0 5px 5px 0;
			border-radius: 0 5px 5px 0;
}
.header_search #search:hover span {
	background: #f8565d;
	color: #ffffff;
}



/* STICK UP MENU STYLES */
.header_row__1.isStuck {
	width: 100%;
	left: 0;
	top: 0;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
}



/* 8.2 MEGAMENU */
#mainmenu {
	height: 50px;
	float: left;
}


.sf-menu {
}
.sf-menu .submenu{
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
	        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
}
.sf-menu > li {
	float: left;
}
.sf-menu > li ~ li {
	margin: 0 0 0 22px;
}
.sf-menu > li > a {
	height: 50px;
	display: block;
	font-size: 16px;
	line-height: 46px;
	color: #333333;
	position: relative;
}
.sf-menu > li > a:before {
	content: '\f138';
	margin: 0 10px 0 0;
	font: 16px 'FontAwesome';
	color: #494d52;
}

.sf-menu > li > a:hover,
.sf-menu > li > a:hover:before,
.sf-menu > li.sfHover > a,
.sf-menu > li.sfHover > a:before,
.sf-menu > li > a.active,
.sf-menu > li > a.active:before {
	color: #f8565d;
}

.sf-menu > li > ul {
	width: 100%;
	background: #eeeeee;
	position: absolute;
	left: 0;
	top: 50px;
	display: none;
	
-webkit-box-shadow: inset 0 1px 0 0 rgba(0,0,0,.1);
			box-shadow: inset 0 1px 0 0 rgba(0,0,0,.1);
}
.sf-menu .submenu {
	padding: 20px}



/* CUSTOM LINK */
.mainmenu__1 {
}



/* CATALOG */
.mainmenu__2 {
}

.mainmenu__2 h3 {
	font-size: 16px;
}
.mainmenu__2 h3 a {
	font-weight: bold;
	text-transform: uppercase;
}

.mainmenu__2 .submenu {
}
.mainmenu__2 .submenu ul {
	padding: 10px 0 0 0;
}
.mainmenu__2 .submenu ul li {
	padding: 5px 0 0 0;
}
.mainmenu__2 .submenu ul li a {
	color: #777777;
}
.mainmenu__2 .submenu ul li a:hover {
	color: #f8565d;
}



/* BLOG */
.mainmenu__3 {
}

.mainmenu__3 .blog_date {
	font-size: 11px;
}

.mainmenu__3 h3 {
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.mainmenu__3 h3 a {
	font-weight: bold;
	text-transform: uppercase;
}



/* SALE */
.mainmenu__4 {
}
.mainmenu__4 .product_img a {
	display: block;
	background: #ffffff;
}
.mainmenu__4 .product_name {
	padding: 15px 0 0 0;
}
.mainmenu__4 .product_price {
	padding: 10px 0 0 0;
}
.mainmenu__4 .product_price .money {
	font-size: 20px;
}
.mainmenu__4 .product_price .compare-at-price {
	margin: 0 0 0 4px;
	font-size: 15px;
	color: #777777;
}



/* CUSTOM LINK */
.mainmenu__5 {
}



/* CUSTOM LINK */
.mainmenu__6 {
}



/* 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;
}

.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 {
	height: 100%;
	overflow: hidden;
	border: 1px solid #d8d8d8;
	position: relative;
	z-index: 1;
	-webkit-border-radius: 0 0 5px 5px;
			border-radius: 0 0 5px 5px;
	margin: 0 0 30px 0;
}

.nivoSlider {
}

.nivo-caption {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 8;
	display: none;
}
.nivo-caption a {
	display: block;
	padding: 0 20px 0 510px;
}
.nivo-caption h2 {
	margin: 88px 0 0 -2px;
	font-weight: 900;
	font-size: 58px;
	line-height: 1em;
	color: #f8565d;
	text-transform: uppercase;
}
.nivo-caption h3 {
	margin: 0;
	font-weight: 700;
	font-size: 31px;
	line-height: 1em;
	color: #333333;
	text-transform: none;
}
.nivo-caption p {
	margin: 12px 0 0 0;
	font-weight: 300;
	font-size: 14px;
	line-height: 19px;
	color: #777777;
}
.nivo-caption .btn {
	margin: 16px 0 0;
	font-weight: 700;
	font-size: 17px;
}



.nivo-directionNav a {
	width: 42px;
	height: 42px;
	display: block;
	background: #ffffff;
	color: #333333;
	text-align: center;
	position: absolute;
	bottom: 18px;
	z-index: 9;
	cursor: pointer;
	-webkit-border-radius: 50%;
			border-radius: 50%;
}
.nivo-directionNav a:hover {
	color: #f8565d;
}
.nivo-directionNav a span {
	display: none;
}
.nivo-directionNav a i {
	display: block;
	font-size: 33px;
	line-height: 41px;
}
.nivo-prevNav {
	padding: 0 2px 0 0;
	right: 67px;
}
.nivo-nextNav {
	padding: 0 0 0 2px;
	right: 20px;
}



/* 8.4 SHOWCASE */
#showcase {
}
#showcase .row {
	margin: 0;
	border: 1px solid #d8d8d8;
	border-width: 0 1px 1px 1px;
	-webkit-border-radius: 0 0 5px 5px;
			border-radius: 0 0 5px 5px;
}
#showcase .row .showcase_item {
	padding: 0;
}
#showcase .row .showcase_item ~ .showcase_item {
	border-left: 1px solid #d8d8d8;
}

.showcase_item__content {
	padding: 0 20px 20px 20px;
}

#showcase .row .showcase_item img {
	padding: 20px;
}

.showcase_item__content h3 {
	margin: 4px 0 0 0;
	font-size: 17px;
}
.showcase_item__content h3 a {
	font-weight: bold;
}

.showcase_item__content .btn {
	margin: 13px 0 0 0;
	font-size: 17px;
}
.showcase_item__content .btn:after {
	content: '\f054';
	margin: 0 0 0 10px;
	font: 17px "FontAwesome";
	color: #ffffff;
}



/* 8.5 MAIN PRODUCT LISTING */
.product_list .product {
	margin: 30px 0 0 0;
}

.product_list .product_img {
}
.product_list .product_img a {
	display: block;
	position: relative;
}
.product_list .product_img img {
	background-color: #ffffff;
	position: relative;
	z-index: 1;
}
.product_list .product_img .img__2 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	opacity: 0;
}







.product_list .product_img span.mkt-badge {
	width: 48px;
	height: 48px;
	background: url("img/mkt/mkt-big.png") no-repeat scroll 0 0 transparent;
	line-height: 46px;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	cursor: pointer;
	display: block;
	position: absolute;
	z-index: 100;
}

.product_list .product_img span.mt_promo,
.product_list .product_img span.mt_awarded,
.product_list .product_img span.mt_extra_discount {background-image: none; display: none;}
.product_list .product_img span.discount-mkt {right: 0; top: 0; background-position: 0 0;}
.product_list .product_img span.mt_new_product {left: 0; top: 0; background-position: 0 -48px;}
.product_list .product_img span.mt_stock_clearing {left: 0; bottom: 0; background-position: 0 -96px;}
.product_list .product_img span.mt_recomandation {right: 0; bottom: 0; background-position: 0 -144px;}
.product_list .product_img span.mt_winter_promo {z-index: 101; right: 0; top: 0; background-position: 0 -192px;}
.product_list .product_img span.mt_easter_promo {z-index: 101; right: 0; top: 0; background-position: 0 -240px;}
.product_list .product_img span.mt_second_hand {z-index: 101; left: 0; top: 0; background-position: 0 -288px;}
.product_list .product_img span.mt_refurbished {z-index: 101; left: 0; top: 0; background-position: 0 -336px;}
.product_list .product_img span.mt_coming_soon {z-index: 102; left: 0; top: 0; background-position: 0 -384px;}
.product_list .product_img span.mt_black_friday {z-index: 102; right: 0px;	top: 0px; width: 80px; height: 80px; background: url("img/mkt/mkt_bf.png") no-repeat scroll 0 0 transparent;}

.product_img span.gifts-badge {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 12px 0;
	opacity: .9;
    width: 100%;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    background: #d92027;
	background: -webkit-linear-gradient(top, #D85B65 0%, #d92027 100%) !important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#D85B65), color-stop(100%,#d92027)) !important;
	background: -moz-linear-gradient(top, #D85B65 0%, #d92027 100%) !important;
	background: -ms-linear-gradient(top, #D85B65 0%, #d92027 100%) !important;
	background: -o-linear-gradient(top, #D85B65 0%, #d92027 100%) !important;
	background: linear-gradient(to bottom, #D85B65 0%, #d92027 100%) !important;

	-webkit-box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.15);
			box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.15);
    
    color: #fff;
	z-index: 98;
}

.product_img span.bundle-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 12px 0;
	opacity: .7;
    width: 100%;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    background: #554050;
	background: -webkit-linear-gradient(top, #808080 0%, #554050 100%) !important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#808080), color-stop(100%,#554050)) !important;
	background: -moz-linear-gradient(top, #808080 0%, #554050 100%) !important;
	background: -ms-linear-gradient(top, #808080 0%, #554050 100%) !important;
	background: -o-linear-gradient(top, #808080 0%, #554050 100%) !important;
	background: linear-gradient(to bottom, #808080 0%, #554050 100%) !important;

	-webkit-box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.15);
			box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.15);
    
    color: #fff;
	z-index: 98;
}






.product_list .product_info {
}

ul.product_list_rel .product_price,
.product_list .product_price {
	padding: 20px 0 0 0;
	min-height: 108px;
}
.product_list .product_price .money {
	font-weight: bold;
	font-size: 20px;
}
.product_list .product_price .money.currency {
	font-weight: bold;
	font-size: 16px;
	color: #333333;
}
.product_list .product_price .compare-at-price {
	margin: 0 0 0 4px;
	/*font-weight: normal;*/
	font-size: 14px;
	color: #777777;
}

.product_list .product_price.currency {
	padding: 0;
}
.product_list .product_price.currency .money {
	font-weight: bold;
	font-size: 16px;
	color: #333333;
}
.product_list .product_price.currency .compare-at-price {
	margin: 0 0 0 4px;
	/*font-weight: normal;*/
	font-size: 14px;
	color: #777777;
}
.product_list .product_price sup {
	line-height: 25px;
}
.product_price_disclaimer {
	font-size: 12px;
	color: #aaaaaa;
	margin-top: 10px;
}

.price-title, 
.price-client-disclaimer {
	display: block;
	padding: 10px 0 0 0;
}
.price-title {
	font-weight: bold;
	text-decoration: underline;
}	
.compare-to {
	margin: 0 !important;
	font-weight: normal !important;
	color: #666666 !important;
}

.pdd_small, .pdd_big { clear: both; margin: 15px 0 0 0; color: #333333; vertical-align: middle; display: inline-flex; }
.pdd_small:before, .pdd_big:before { content: '\f0d1'; margin: 0 5px 0 0; color: #333333; position: relative; top: -5px; }
.pdd_small { font-size: 12px; }
.pdd_small:before { font: 24px/26px 'FontAwesome'; }
.pdd_big { font-size: 14px; }
.pdd_big:before { font: 26px/31px 'FontAwesome'; }

.pdd_empty { height: 41px; }


.product_list .product_name {
	height: 48px;
	overflow: hidden;
	margin: 5px 0;
}

.product_list .product_name a {
	display: inline-block;
	line-height: 24px;
	text-overflow: ellipsis;
}

.comment_rating, .product_rating {
	height: 18px;
	overflow: hidden;
	background: url("img/rating.png") no-repeat scroll 0 0 transparent;
}
.product_rating {margin: 20px 0 5px 0;}
.comment_rating {margin: 0;}
.rating0 {background-position: 0 0;}
.rating1 {background-position: 0 -18px;}
.rating2 {background-position: 0 -36px;}
.rating3 {background-position: 0 -54px;}
.rating4 {background-position: 0 -72px;}
.rating5 {background-position: 0 -90px;}
.rating6 {background-position: 0 -108px;}



table.product_state {
    margin: 0 0 5px 0;
}
table.product_state tr td {
	border: 0;
	padding: 0;
	margin: 0;
}
table.product_state tr td.header {
	color: #333333;
    font-weight: bold;
    width: 30%;
}


.product_list .product_desc {
	height: 50px;
}

.product_list .product_links {
}
.product_list .product_links a {
	margin: 10px auto 0;
	display: block;
}	
.page_header a.edit:before,
.product_links a.edit:before {
	font: 19px/.1em 'FontAwesome';
	content: '\f044';
}
.page_header a.edit {
	position: relative;
	top: -35px;
	right: 0;
}
.product_list .product_links .btn {
	width: 100%;
}
.product_list .product_links .btn-cart,
.product_list .product_links .btn-contact {
	margin: 13px 0 0 0;
	font-size: 17px;
}
.product_list .product_links .btn-info {
	margin: 8px 0 0 0;
}



/* HOMEPAGE CAROUSEL */
.widget_bxslider_carousel .bx-wrapper {
	max-width: 100% !important;
	border: 1px solid #d8d8d8;
	border-width: 0 1px 1px 1px;
	-webkit-border-radius: 0 0 5px 5px;
			border-radius: 0 0 5px 5px;
}

.bxslider_carousel {
	margin: 0;
}
.bxslider_carousel .product {
	margin: 0;
	padding: 0;
	border-right: 1px solid #d8d8d8;
}
.bxslider_carousel .product > div {
	overflow: hidden;
	padding: 20px;
	background: #ffffff;
}

.widget_bxslider_carousel .bx-controls {
	position: absolute;
	right: 20px;
	top: -45px;
	z-index: 99;
}
.widget_bxslider_carousel .bx-controls a {
	width: 30px;
	height: 30px;
	display: block;
	overflow: hidden;
	float: left;
	margin: 0 0 0 5px;
	background: rgba(51,51,51,.7);
	
-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	

-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}

.widget_bxslider_carousel .bx-controls a:hover {
	background: rgba(51,51,51,1);
}

.widget_bxslider_carousel .bx-controls a:before {
	display: block;
	font: 12px/31px 'FontAwesome';
	color: #ffffff;
	text-align: center;
}

.widget_bxslider_carousel .bx-prev:before {
	content: '\f053';
	padding: 0 1px 0 0;
}
.widget_bxslider_carousel .bx-next:before {
	content: '\f054';
	padding: 0 0 0 1px;
}

.widget_bxslider_carousel .bx-prev {
}
.widget_bxslider_carousel .bx-next {
}



/* BLOG */
.homepage_blog {
	position: relative;
}
.homepage_blog h2 {
	margin: 0;
	padding: 30px 0 0 0;
	font-size: 31px;
}

.homepage_blog__article {
	margin: 17px 0 0 0;
}

.homepage_blog__date {
	font-weight: 300;
	font-size: 14px;
	color: #f8565d;
}

.homepage_blog__article .homepage_blog__title {
	min-height: 51px;
	margin: 2px 0 0 0;
	font-size: 17px;
	line-height: 24px;
}
.homepage_blog__article .homepage_blog__title a {
	display: inline-block;
	font-weight: bold;
}
.homepage_blog__article .homepage_blog__title a:hover {
	color: #494d52;
}

.homepage_blog__article .homepage_blog__content,
.homepage_blog__article .homepage_blog__content p {
	font-weight: 300;
	font-size: 14px;
	line-height: 19px;
}

.homepage_blog__article .btn {
	font-size: 14px;
}



/* GOOGLE MAP */
#google_map {
	margin: 50px 0 0 0;
}



/* 8.6 FOOTER */
footer {
	margin: 50px 0 0 0;
	background: rgba(0,0,0,.14);
}

.footer_content .opbox {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #494d52;
}

.footer_block {
}

.footer_block h3 {
	padding: 30px 0 0 0;
	font-weight: normal;
	font-size: 20px;
}
.footer_block ul {
	padding: 9px 0 0 0;
}
.footer_block ul li {
	padding: 9px 0 0 0;
}
.footer_block ul li a {
	font-weight: 300;
	color: #777777;
}

.footer_block ul li.active a,
.footer_block ul li a:hover {
	color: #494d52;
}



.footer_social {
	padding: 85px 0 0 0;
	font-size: 0;
	text-align: right;
}
#wrapper.simple .footer_social {
	text-align: inherit;
}
.footer_social li {
	display: inline-block;
	margin-top: 10px;
	padding: 0;
}
.footer_social li ~ li {
	margin-left: 10px;
}
.footer_social a {
	width: 80px;
	height: 80px;
	display: block;
	background: #ffffff;
	color: #333333;
	text-align: center;
	-webkit-border-radius: 50%;
			border-radius: 50%;
}
.footer_social a:hover {
	color: #f8565d;
}
.footer_social i {
	font-size: 28px;
	line-height: 80px;
}
.seobox {
	margin: 20px 0;
	text-align: right;
}


footer .copyright {
	margin: 55px 0 0 0;
	padding: 15px 0;
	background: #494d52;
}
#wrapper.simple footer .copyright {
	margin: 0;
}
footer .copyright p {
	margin: 0;
	font-weight: 300;
	font-size: 12px;
	color: #eeeeee;
}
footer .copyright a {
	font-weight: 300;
	color: #eeeeee;
}
footer .copyright a:hover {
	color: #f8565d;
}



/* BACK TO TOP BUTTON */
#back_top {width: 38px;height: 38px;display: block;margin: 0 0 0 615px;background: #494d52;color: #ffffff;text-align: center;position: fixed;left: 50%;bottom: 60px;z-index: 999;
-webkit-border-radius: 5px;
        border-radius: 5px;
}
#back_top:before {content: '\f106';font: 18px/37px 'FontAwesome';}
#back_top:hover {background: #f8565d;}



/***************************************************************************
                           9. COLLECTION PAGES
***************************************************************************/

/* 9.1 PAGES CONTENT */
ul.tags, ul.call-to-action {
	margin: 10px 0 0 0;
	list-style-type: none;
}
ul.tags {
	margin: 0 0 30px 0;
	list-style-type: none;
}
ul.mkt, ul.call-to-action {
	margin: 10px 0 0 0;
	list-style-type: none;
}
ul.mkt li, ul.tags li, ul.call-to-action li {
	float: left;
	margin: 5px 5px 0 0;
}
ul.mkt li a, ul.tags li a, ul.call-to-action li a {
	font-size: 15px;
	display: block;
	padding: 5px 10px;
	background: #494d52;
	color: #ffffff;
	-webkit-border-radius: 5px;
			border-radius: 5px;
	
-webkit-box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.3);
			box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.3);
	

-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
}        

ul.tags li a {
	line-height: 24px;
}

ul.mkt li a:hover,
ul.mkt li.active a,
ul.tags li a:hover,
ul.tags li.active a,
ul.call-to-action li a:hover {
	background: #f8565d;
}

ul.mkt li a:before, 
ul.mkt li.active a:before,
ul.tags li a:before, 
ul.tags li.active a:before {	        
	font: 15px/.1em 'FontAwesome';
	margin: 0 5px 0 0;
}
ul.mkt li a:before {	        
	content: '\f096';
}
ul.mkt li.active a:before{	        
	content: '\f046';
}
ul.call-to-action li a.icon-go:after {
	font: 15px/.1em 'FontAwesome';
	margin: 0 0 0 5px;
	content: '\f054';
}
ul.call-to-action li a.icon-print:before {
	font: 15px/.1em 'FontAwesome';
	margin: 0 5px 0 0;
	content: '\f02f';
}


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

.product-listing-navigation {
	margin: 30px 0 0 0;
	background-color: #ffffff;
	border: 1px solid #d8d8d8;
	-webkit-border-radius: 5px;
			border-radius: 5px;	
}

/* START ordonare */
.sort_by {
	margin: 8px 0;
	padding: 10px 0;
	border-width: 1px 0;
	text-align: right;
}
.sort_by label {
	margin: 0 4px 0 0;
	/*line-height: 30px;*/
}

.sort_down, .sort_up, .sort_none, .sort_down:hover, .sort_up:hover, .sort_none:hover 
	{font-weight: bold; color: #777777; font-family: Lato; height: 14px; line-height: 12px; display: inline-block; padding-right:16px; margin-left: 10px;
	background: url("img/order-buttons.png") no-repeat scroll right center transparent; }

.sort_none {background-position: right 0;}
.sort_none:hover {background-position: right -14px;}
.sort_down {background-position: right -14px;}
.sort_down:hover {background-position: right -28px;}
.sort_up {background-position: right -28px;}
.sort_up:hover {background-position: right 0;}
/* END ordonare*/



/* 9.2 BREADCRUMBS */
.breadcrumb {
	margin: 0 0 30px 0;
	border: 1px solid #d8d8d8;
	background: #ececec;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #ececec 0%,#f4f4f4 100%) !important;
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ececec), color-stop(100%,#f4f4f4)) !important;
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #ececec 0%, #f4f4f4 100%) !important;
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #ececec 0%,#f4f4f4 100%) !important;
	 /* IE10+ */
background: -o-linear-gradient(top, #ececec 0%,#f4f4f4 100%) !important;
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #ececec 0%,#f4f4f4 100%) !important;
	 /* W3C */

-webkit-border-radius: 0 0 5px 5px;
	        border-radius: 0 0 5px 5px;
}



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



/* 9.4 PAGINATION */
.pagination {
	display: inline-block;
	overflow: hidden;
	margin: 10px 0;
	background: #333333;
	-webkit-border-radius: 5px;
	        border-radius: 5px;
}
.pagination span {
	display: block;
	float: left;
}
.pagination span ~ span {
	border-left: 1px solid #777777;
}

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

.pagination span a:hover {
	color: #f8565d;
}
.pagination span.current {
	background: #f8565d;
	font-weight: bold;
	color: #ffffff;
	cursor: default;
}

.pagination i {
	margin-top: 4px;
}
.pagination-info {
	margin: 17px 0 0 10px;
	display: inline-block;
}


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

.column .widget {
}

.column .widget h3 {
	height: 60px;
	margin: 0;
	padding: 0 20px;
	border: 1px solid #d8d8d8;
	font: bold 31px/56px Lato;
	color: #333333;
	background: #ececec;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #ffffff 0%,#ececec 100%) !important;
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ececec)) !important;
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #ffffff 0%, #ececec 100%) !important;
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #ffffff 0%,#ececec 100%) !important;
	 /* IE10+ */
background: -o-linear-gradient(top, #ffffff 0%,#ececec 100%) !important;
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #ffffff 0%,#ececec 100%) !important;
	 /* W3C */

-webkit-border-radius: 5px 5px 0 0;
		border-radius: 5px 5px 0 0;
}

.column .widget_top h3 {
	margin: -60px 0 0 0;
}

/* COLLECTIONS WIDGET */
.column .widget__collections h3 {
	height: 60px;
	padding-top: 0;
	padding-bottom: 0;
	border: none;
	color: #ffffff;
	line-height: 58px;
	background: #494d52;
	background: -webkit-linear-gradient(top, #303439 0%,#494d52 100%) !important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303439), color-stop(100%,#494d52)) !important;
	background: -moz-linear-gradient(top, #303439 0%, #494d52 100%) !important;
	background: -ms-linear-gradient(top, #303439 0%,#494d52 100%) !important;
	background: -o-linear-gradient(top, #303439 0%,#494d52 100%) !important;
	background: linear-gradient(to bottom, #303439 0%,#494d52 100%) !important;

-webkit-box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.15);
			box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.15);
}

.widget__collections .widget_content {
	overflow: hidden;
	background: #494d52;
	-webkit-border-radius: 0 0 5px 5px;
			border-radius: 0 0 5px 5px;
}

.widget__collections ul {
}
.widget__collections ul li {
	padding: 1px 0;
}
.widget__collections ul li ~ li {
	padding: 2px 0 1px 0;
	-webkit-box-shadow: inset 0 1px 0 0 rgba(0,0,0,.15);
			box-shadow: inset 0 1px 0 0 rgba(0,0,0,.15);
}
.widget__collections ul li a {
	display: block;
	padding: 11px 20px;
	font-size: 17px;
	color: #ffffff;
}
.widget__collections ul li a.level1 {
	padding-left: 20px;
}
.widget__collections ul li a.level2 {
	padding-left: 40px;
}
.widget__collections ul li a.title, 
.widget__collections ul li a.title-fixed {
	text-transform: uppercase;
}

.widget__collections ul li a:hover,
.widget__collections ul li.active a {
	background: #f8565d;
}

.widget__collections ul li a.title-fixed:hover {
	background: #494d52;
}
/*
.widget__collections ul li a.title-fixed:before {
	font: 17px/21px 'FontAwesome';
	color: #ffffff;
	content: '\f053';
}
*/



.widget__collections .dropdown {
	display: none; 
	right: -310px;
	z-index: 999999; 
	width: 320px;	
	margin: -37px 0 0 0; padding: 0;  
	border: 1px solid #733e13;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.40);
	-webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.40);
	-moz-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.40); 
	overflow: hidden;
}
.widget__collections .dropdown.double {margin: -65px 0 0 0;}
.widget__collections .dropdown-active {display: block !important; position: absolute;}
/*
.widget__collections ul {margin: 0; padding: 0;}
.widget__collections ul li {display: block; }
*/

.widget__collections ul li a.level1,
.widget__collections ul li a.level2,
.widget__collections ul li a.level3 {}
.widget__collections ul li a.level4 {padding-right: 20px;}

.widget__collections ul li a.level1 {padding-left: 20px; font-weight: bold;}
.widget__collections ul li a.level2 {padding-left: 35px;}
.widget__collections ul li a.level3 {padding-left: 50px;}
.widget__collections ul li a.level4 {padding-left: 15px; padding-right: 15px;}
.widget__collections .dropdown-active ul li a.level1 {padding-left: 15px; padding-right: 15px; font-weight: normal;}

.widget__collections ul .triangolino {border: 8px solid transparent; border-left: 7px solid #733e13; border-right: none; top: 10px; left: 0px; position: absolute; width: 0; height: 0; z-index: 1000000;}
.widget__collections ul .triangolino.double {top: 21px;}





.slide-toggle-action {cursor: pointer; cursor: hand; position: relative;}

.slide-toggle-action[name='close'] h3 {
	-webkit-border-radius: 5px;
			border-radius: 5px;
}

.slide-toggle.first .slide-toggle-action[name='close'] h3 {
	-webkit-border-radius: 5px 5px 0 0;
			border-radius: 5px 5px 0 0;
}

.arrow-expand {position: absolute; top: 25px; right: 20px;}
.arrow-expand:after {
	content: '\f138';
	margin: 0 0 0 5px;
	font: 27px/.1em 'FontAwesome';
	color: #cccccc;
	position: relative;
	top: 1px;
}
.hover .arrow-expand:after {
	content: '\f138';
	color: #ffffff;
}
.active .arrow-expand:after {
	content: '\f13a';
	color: #cccccc;
}
.active.hover .arrow-expand:after {
	content: '\f13a';
	color: #ffffff;
}

.expanded {}
.st-collapsed {display: none;}




/* PRODUCT TYPES WIDGET */
.widget__types {
}
.widget__types .widget_content {
	background: #eeeeee;
	border: 1px solid #d8d8d8;
	border-top: none;
	-webkit-border-radius: 0 0 5px 5px;
			border-radius: 0 0 5px 5px;
}
.widget__types ul {
}
.widget__types ul li {
}
.widget__types ul li ~ li {
	border-top: 1px solid #d8d8d8;
}
.widget__types ul li a {
	display: block;
	padding: 12px 20px;
	font-size: 17px;
	color: #777777;
}

.widget__types ul li a:hover {
	color: #494d52;
}
.widget__types ul li.active a {
	font-weight: bold;
	color: #494d52;
}



/* CUSTOM SIDEBAR WIDGETS */
.widget__custom {
	overflow: hidden;
	padding: 14px 15px 14px 20px;
	border: 1px solid #d8d8d8;
	background: #ececec;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f4f4), color-stop(100%,#ececec)) !important;
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f4f4f4 0%, #ececec 100%) !important;
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	 /* IE10+ */
background: -o-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #f4f4f4 0%,#ececec 100%) !important;
	 /* W3C */

-webkit-border-radius: 5px;
			border-radius: 5px;
}
.widget__custom img {
	float: left;
	margin: 0 13px 0 0;
	font-size: 72px;
	position: relative;
	top: -2px;
}

.widget__custom h4 {
	padding: 7px 0 0 0;
	font-weight: bold;
	font-size: 24px;
	line-height: 24px;
}
.widget__custom h5 {
	font-weight: bold;
	font-size: 24px;
	line-height: 24px;
}
.widget__custom p {
	clear: both;
	margin: 0;
	font-size: 13px;
	line-height: 16px;
	color: #777777;
}



.widget__custom_1 i {
	color: #f8565d;
}
.widget__custom_1 h5 {
	font-weight: 300;
	font-size: 19px;
}

.widget__custom_2 i {
	color: #494d52;
}

.widget__custom_3 i {
	color: #777777;
	opacity: .3;
}



/***************************************************************************
                           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: #333333;
}
#searchresults .search-form button:hover {
	color: #f8565d;
}
#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;
	border-bottom: 1px solid #d8d8d8;
}
#searchresults ol li {
	overflow: hidden;
	margin: 0;
	padding: 15px 0;
	border-top: 1px solid #d8d8d8;
}
#searchresults ol li .search-result_image {
	float: left;
	margin-right: 15px;
}
#searchresults ol li .search-result_container {
	padding: 15px 0 0 0;
}



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

.product_wrap {
	/*padding-right: 15px;*/
	margin-top: 30px;
}



/* 12.1 PRODUCT IMAGES */
/* BIG IMAGE + ZOOM */
.zoomWrapper,
#elevatezoom_big {
	width: 345px !important;
	height: auto !important;
	background: #ffffff;
	position: relative !important;
}

#elevatezoom_big ~ #elevatezoom_big {
	width: 0 !important;
	height: 0 !important;
}

.zoomWrapper {
}

.zoomContainer {
	z-index: 1 !important;
}
.zoomLens {
	z-index: 1 !important;
}
.zoomWindow {
	margin: -1px 0 0 0 !important;
}


/* THUMBS */
.product_images {
	margin-bottom: 30px;
}
.product_images .bx-wrapper {
	max-width: 100% !important;
	margin: 12px 0 0 0;
	padding: 0 30px;
	position: relative;
}

#elevatezoom_gallery {
}
#elevatezoom_gallery a {
	width: 87px !important;
	display: block;
	margin: 0 12px 0 0;
	background: #ffffff;
}

.product_images .bx-controls a {
	width: 20px;
	height: 20px;
	display: block;
	overflow: hidden;
	margin: -10px 0 0 0;
	line-height: 1em;
	text-align: center;
	position: absolute;
	top: 50%;
	background: rgba(51,51,51,.7);
	
-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	

-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.product_images .bx-controls a:hover {
	background: rgba(51,51,51,1);
}

.product_images .bx-controls a:before {
	font: 10px/21px 'FontAwesome';
	color: #ffffff;
}

.product_images .bx-controls a.bx-prev {
	left: 0;
}
.product_images .bx-controls a.bx-prev:before {
	content: '\f053';
}
.product_images .bx-controls a.bx-next {
	padding: 0 0 0 1px;
	right: 0;
}
.product_images .bx-controls a.bx-next:before {
	content: '\f054';
}



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



.product_wrap .product-price {
	margin: 0;
	padding: 0;
	text-align: right;
}
.product_wrap .product-price .title {
	margin: 0 0 10px 0;
	font-weight: bold;
	font-size: 16px;
	color: #000000;
}
.product_wrap .product-price .money {
	margin: 0;
	font-weight: bold;
	font-size: 20px;
	display: block;
	text-align: inherit;
}
.product_wrap .product-price .money label {
	font: inherit;
	color: inherit;
}

.product_wrap .product-price .money.currency {
	font-weight: normal;
	font-size: 14px;
	color: #333333;
}
.product_wrap .product-price .compare-at-price {
	font-weight: normal;
	font-size: 14px;
	color: #777777;
}
/*
.product_wrap .product-price .money.greentax {
	font-weight: normal;
	color: green;
	font-size: 14px;
	margin: 10px 0 0 0;
}
*/

.greentax {
	margin: 15px 0 !important;
	font-size: 14px !important;
	font-weight: 300 !important;
	color: green;
}
.greentax:before {
	content: '\f06c';
	margin: 0 5px 0 0;
	font: 26px/13px 'FontAwesome';
	color: green;
	position: relative;
	top: 5px;
}
.product_wrap .product-price sup {
	/*line-height: 30px;*/
	top: -0.1em;
}

.price-expand, 
.client-price-expand {
	position: absolute; 
	top: -50px; 
	right: 0px;
}

.price-expand:after,
.client-price-expand:after {
	content: '\f138';
	margin: 0 0 0 5px;
	font: 20px/.1em 'FontAwesome';
	color: #cccccc;
	position: relative;
	top: 1px;
}
.hover .price-expand:after {
	content: '\f138';
	color: #ffffff;
}
.hover .client-price-expand:after {
	content: '\f138';
	color: #333333;
}
.active .price-expand:after,
.active .client-price-expand:after {
	content: '\f13a';
	color: #cccccc;
}
.active.hover .price-expand:after {
	content: '\f13a';
	color: #ffffff;
}
.active.hover .client-price-expand:after {
	content: '\f13a';
	color: #333333;
}


#purchase {
}
#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: 0;
	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 {
	height: 37px;
	margin: 15px 10px 0 0;
	padding: 8px 15px;
}
    
.product_wrap .product_details {
	margin: 15px 0 0 0;
	padding: 10px 0 15px 0;
	border: 1px solid #d8d8d8;
	border-width: 1px 0;
}
.product_wrap .product_details > div {
	padding: 5px 0 0 0;
}

.product_wrap #product_description {
}
.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 {
}
.widget_related_products h3 {
	margin: 30px 0 0 0;
}

ul.product_list_rel {
	list-style-type: none;
}
ul.product_list_rel .product {
}

ul.product_list_rel .product_img {
}
ul.product_list_rel .product_name {
	height: 48px;
	overflow: hidden;
	padding: 5px 0;
}


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

/* 13.1 POSTS LISTING */
#blog {
}

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

.article_header {
	padding: 15px 0;
	border-bottom: 1px solid #d8d8d8;
}
.article_header .product_name {
}
.article_header .product_name a {
}
.article_header .product_name a:hover {
}
.article_header .product_name a:before {
	content: '\f0f4';
	margin: 0 10px 0 0;
	font: 19px/.1em 'FontAwesome';
	/*color: #494d52;*/
	position: relative;
	top: 1px;
}

.blog-article_meta-comments {
	float: right;
	padding: 2px 0 0 15px;
}
.blog-article_meta-comments a:before {
	content: '\f0e6';
	margin: 0 5px 0 0;
	font: 17px/.1em 'FontAwesome';
	position: relative;
	top: 1px;
}
.product_name a.edit:before {
	font: 19px/.1em 'FontAwesome';
	position: relative;
	top: 1px;
	content: '\f044';
	margin: 0 5px 0 25px;
}




.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;
	padding-left: 25px;
}

#comments {border-top: 1px solid #cccccc; margin-top: 40px;padding-top: 20px;}

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

.comment-form {
}

.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 {
	margin-top: 1em;
	padding-bottom: 30px;
	/*padding-top: 10px;*/
}

.section-title {
	margin-bottom: 2px;
	padding-bottom: 8px;
}

.comment-form .row {
	margin-bottom: 1em;
}

.comment-submit {
}



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

/* 14.1 LOG IN */

/* 14.2 ACCOUNT */
.customer_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 {
}

.customer_addresses ul.customer_addresses_actions {
	list-style-type: none;
	margin: 15px 0;
}
.customer_addresses ul.customer_addresses_actions li {
}
.customer_addresses ul.customer_addresses_actions li a {
}
.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;
}


.address_table .address_title {
	vertical-align: baseline;
}
.address_table .address_title .address_actions {
	vertical-align: baseline;
	float: right;
	margin: 0 0 0 15px;
	text-transform: none;
}
.address_table .address_title .address_actions span {
	vertical-align: baseline;
}


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;
	border-top: 1px solid #d8d8d8;
	margin-top: 30px;
}

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

.cart-list .item_image {
	text-align: center;
}
.cart-list .item_image a img {
	max-width: 100%;
}

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

.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: #333333;
}

.cart-list .row .product_info {
	color: #888;
	margin: 10px 0;
}

.cart-list .item_price {
	padding: 10px 0 0 0;
}
.cart-list .item_price .money {
	font-weight: bold;
	font-size: 16px;
}
.cart-list .item_price .money.currency {
	font-weight: normal;
	font-size: 13px;
	color: #333333;
}

.combobox { padding: 4px; min-width: 120px; }




.cart-list .item_gift-package {
	padding: 10px 0 0 0;
}
.cart-list .item_gift-package label.gist-package-title {
	font-weight: bold;
}

.cart-list .item_gift-package  ul.gift-package-items {
	list-style-type: disc;
	list-style-position: unset;
	padding: 0 0 0 20px;
}


.cart-list .item_price .price {
	/*line-height: 37px;*/
}

.cart-list .item_price label {
	padding: 0;
}
.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_subtotal {
	font-weight: bold;
	font-size: 20px;
	margin: 15px 0 30px 0;
}
.cart_subtotal .money {
	font-weight: bold;
	font-size: 20px;
}
.cart_subtotal .money.currency {
	font-weight: normal;
	font-size: 16px;
	color: #333333;
}

.cart_buttons {
	margin: 30px 0;
}

.cart_buttons #empty,
.cart_buttons #actualize,
.cart_buttons #order {
	margin: 5px;
}

.cart_buttons #empty {
}
.cart_buttons #actualize {
}
.cart_buttons #login-first,
.cart_buttons #order {
	float: right;
}

#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 {
}
.contact-scope #google_map {
	margin: 15px 0;
}

.contact-form {
}

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="telephone"],
.contact-form textarea {
}

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

.contact-form_buttons {
}
.contact-form_buttons .btn-toolbar {
}



.feed {
	float: right;
}

a.feed:after {
	content: '\f143';
	margin: 0 5px 0 0;
	font: 27px/.1em 'FontAwesome';
	color: #ffffff;
	position: relative;
	top: 1px;
}


a.button-refresh:after {
	content: '\f021';
	margin: 0 0 0 5px;
	font: 17px/.1em 'FontAwesome';
	color: inherit;
	position: relative;
	top: 1px;
	line-height: 1.5em;
}



























div.options {
	border-top: 1px solid #d8d8d8;
	margin: 10px 0 0 0;
	padding: 10px 0;
}
div.options div.price {
	margin-bottom: 15px;
}

div.options label {
	padding: 0;
	margin: 0;
	vertical-align: middle;
	text-align: left;
}

div.options label.group-title {
	color: #000000;
	margin: 0 10px 0 0;
	text-transform: uppercase;
	font-weight: bold;
}


div.gift-packages {
	border-top: 1px solid #d8d8d8;
	margin: 10px 0 0 0;
	padding: 10px 0;
}
div.gift-package {
	color: #000000;
	margin: 0 0 15px 0;
}

div.gift-package ul.gift-package-items {
	list-style-type: disc;
	list-style-position: unset;
	padding: 0 0 0 20px;
}

div.options input.option-radio, div.options input.option-check {
	vertical-align: middle;
	margin: 0 4px;
}

div.options div.total-price {
	border-top: 1px solid #d8d8d8;
	padding: 10px 0 0 0;
}

div.options .option-price .money {
	font-weight: normal;
}
div.options .option-price .money.currency {
	color: #333333;
}
.product_wrap .options .price sup,
.product_wrap .options .price.currency sup {
	top: -0.1em;
}

div.options a.btn-details {
	display: inline;
	margin-left: 5px;
	float: right;
}
div.options a.btn-details:before {
	content: '\f0a9';
	margin: 0 0 0 5px;
	font: 14px/.1em 'FontAwesome';
	color: inherit;
	position: relative;
	top: 1px;
}

label.group-desc,label.group-desc a {
	font-weight: bold;
	color: orange !important;
}

label.group-desc a:hover {
	color: #333333 !important;
}

div.product-selections {
	border-top: 1px solid #d8d8d8;
	margin: 15px 0;
	padding: 15px 0 0 0;
}
div.product-selections ul {
	list-style: none outside none; margin: 0; padding: 0; line-height: 20px;
}
div.qty .input-qty,
div.options-group .input-qty,
div.product-selections .input-qty {
	width: 50px;
	text-align: right;
}




.nav-tabs > li > a {
	background: #494d52;
	 /* Old browsers */
	background: -webkit-linear-gradient(top, #303439 0%,#494d52 100%) !important;
	 /* Chrome10+,Safari5.1+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303439), color-stop(100%,#494d52)) !important;
	 /* Chrome,Safari4+ */
	background: -moz-linear-gradient(top, #303439 0%, #494d52 100%) !important;
	 /* FF3.6+ */
	background: -ms-linear-gradient(top, #303439 0%,#494d52 100%) !important;
	 /* Opera 11.10+ */
	background: -o-linear-gradient(top, #303439 0%,#494d52 100%) !important;
	 /* W3C */
	background: linear-gradient(to bottom, #303439 0%,#494d52 100%) !important;	
	color: #ffffff !important;
}

.nav-tabs > li > a:hover,
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
	background: #f8565d !important;
	 /* Old browsers */
	background: -webkit-linear-gradient(top, #f8565d 0%,#f8565d 100%) !important;
	 /* Chrome10+,Safari5.1+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#494d52), color-stop(100%,#f8565d)) !important;
	 /* Chrome,Safari4+ */
	background: -moz-linear-gradient(top, #f8565d 0%, #f8565d 100%) !important;
	 /* FF3.6+ */
	background: -ms-linear-gradient(top, #f8565d 0%,#f8565d 100%) !important;
	 /* IE10+ */
	background: -o-linear-gradient(top, #f8565d 0%,#f8565d 100%) !important;
	 /* Opera 11.10+ */
	background: linear-gradient(to bottom, #f8565d 0%,#f8565d 100%) !important;
	 /* W3C */
	 color: #ffffff !important;
}

.nav-tabs {
	margin: 30px 0 0 0;
}

.tab-content {
	background: #ffffff;
/*
	background: #ececec;
	background: -webkit-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f4f4), color-stop(100%,#ececec)) !important;
	background: -moz-linear-gradient(top, #f4f4f4 0%, #ececec 100%) !important;
	background: -ms-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	background: -o-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	background: linear-gradient(to bottom, #f4f4f4 0%,#ececec 100%) !important;
*/

	-webkit-border-radius: 0 5px 5px 5px;
	   -moz-border-radius: 0 5px 5px 5px;
	        border-radius: 0 5px 5px 5px;
				
	border-color: #d8d8d8;
	border-width: 0 1px 1px 1px;
	border-style: solid;
	padding: 14px 15px 14px 20px;
	margin: 0 0 30px 0;
}

.product-view-videos-panel ul {
 	list-style-type: none;
	list-style-position: inside;
}

.product-view-parameters-panel {
	margin: 0 0 5px 0;
}
.product-view-parameters-panel tr td.header {
	font-weight: bold;
	width: 30%;
}
.product-view-parameters-panel thead tr td {
	font-weight: bold;
	background: #494d52;
	 /* Old browsers */
	background: -webkit-linear-gradient(top, #303439 0%,#494d52 100%) !important;
	 /* Chrome10+,Safari5.1+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303439), color-stop(100%,#494d52)) !important;
	 /* Chrome,Safari4+ */
	background: -moz-linear-gradient(top, #303439 0%, #494d52 100%) !important;
	 /* FF3.6+ */
	background: -ms-linear-gradient(top, #303439 0%,#494d52 100%) !important;
	 /* Opera 11.10+ */
	background: -o-linear-gradient(top, #303439 0%,#494d52 100%) !important;
	 /* W3C */
	background: linear-gradient(to bottom, #303439 0%,#494d52 100%) !important;	
	color: #ffffff !important;
}

.product-details-box {
	background: #ececec;
	 /* Old browsers */
	background: -webkit-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	 /* Chrome10+,Safari5.1+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f4f4), color-stop(100%,#ececec)) !important;
	 /* Chrome,Safari4+ */
	background: -moz-linear-gradient(top, #f4f4f4 0%, #ececec 100%) !important;
	 /* FF3.6+ */
	background: -ms-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	 /* IE10+ */
	background: -o-linear-gradient(top, #f4f4f4 0%,#ececec 100%) !important;
	 /* Opera 11.10+ */
	background: linear-gradient(to bottom, #f4f4f4 0%,#ececec 100%) !important;
	 /* W3C */

	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
				
	border: 1px solid #d8d8d8;
	
	padding: 14px 15px 14px 20px;
}


.info:before {
	content: '\f05a';
	margin: 0 5px;
	font: 16px 'FontAwesome';
	color: #f8565d;
}



/* Cookie Message */
.cookie-policy {
    z-index: 101; background: #FFF none repeat scroll 0% 0%; padding: 1em 3em 1em 1em; width: 100%;
    position: fixed; bottom: 0px; box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.25); display: none;}
.cookie-policy .icon-cancel { width:13px; height:13px; background:url('img/cancel.png') no-repeat 0 0; float:right; margin-top:0px; margin-right:-28px; cursor:pointer;}
.cookie-policy p {color: #000; font-size: 0.9em; line-height: 14px; margin: 0 10px; text-align: center;}
.cookie-policy a, .cookie-policy a:hover, .cookie-policy a:visited { color:#f60; font-weight: bold;}
.cookie-policy a:hover {text-decoration: underline;}


h4.widgettitle { font-size: 14px; color: #ddd491; padding-bottom: 5px;}
h4.white {color: #5d681b; padding-bottom: 5px; margin-top: 0 !important;}

.footer_newsletter {
	border-bottom: 1px solid #494d52;
    height: auto;
    margin: 30px auto 0;
    padding: 0 0 30px;
}

.newsletter_input {
	margin: 20px 0 0 0;
	padding: 10px;
	background: #333333;
	-webkit-border-radius: 5px 5px 5px 5px;
			border-radius: 5px 5px 5px 5px;
}
.newsletter_input .newsletter-form {
	width: 100%;
	height: 40px;
	overflow: hidden;
	padding: 0 115px 0 0;
	background: #ffffff;
	position: relative;
	-webkit-border-radius: 5px 7px 7px 5px;
			border-radius: 5px 7px 7px 5px;
}
.newsletter_input i {
	width: 40px;
	height: 40px;
	display: block;
	font-size: 18px;
	line-height: 39px;
	color: #777777;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	opacity: .7;
}
.newsletter_input #subscriber-email {
	width: 100%;
	height: 40px;
	padding: 0 0 0 40px;
	float: left;
	background: none;
	border: none;
	-webkit-box-shadow: inset 3px 3px 7px 0 rgba(0,0,0,.3);
			box-shadow: inset 3px 3px 7px 0 rgba(0,0,0,.3);
	
-webkit-border-radius: 0;
			border-radius: 0;
}

.newsletter_input #subscribe-to-newsletter {
	width: 115px;
	height: 40px;
	margin: 0 -117px 0 0;
}
.newsletter_input #subscribe-to-newsletter span {
	width: 115px;
	height: 40px;
	display: block;
	background: #ffffff;
	border-left: 1px solid #d8d8d8;
	font-weight: bold;
	font-size: 17px;
	line-height: 39px;
	color: #333333;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	

	-webkit-border-radius: 0 5px 5px 0;
			border-radius: 0 5px 5px 0;
}
.newsletter_input #subscribe-to-newsletter:hover span {
	background: #f8565d;
	color: #ffffff;
}

.newsletter-subscribe-response {
	margin: 24px 0 0 0;
}














.filter-box{
	color: #333333;
	padding: 10px;
	background-color: #ffffff;
    border: 1px solid #d8d8d8;
	-webkit-border-radius: 5px;
			border-radius: 5px;	
    margin: 30px 0 0;	
}
.filter-box .available-filters {
	margin: 0 0 10px 0;
}
.filter-box a.icon-remove {
	display: inline-block;
	margin: 0 0 0 13px;
}
.filter-box a.icon-remove:hover {margin: 0;}
.filter-box a.icon-remove:hover:before {content: '\f00d';margin: 0 2px 0 0;color:#f8565d;font: 14px "FontAwesome";}

.filtermenu {
	list-style-position: inside;
	list-style-type: none !important;
}
.filtermenu li {
	float: left;
	margin: 7px 7px 0 0;
}
.filtermenu li a {
	height: 35px;
	display: block;
	padding: 0 16px;
	background: #ffffff;
	border: 1px solid #d8d8d8;
	line-height: 31px;
	color: #777777;
	-webkit-border-radius: 5px;
			border-radius: 5px;
}
.filtermenu li.icon_deleteall a {background-color: #eeeeee;}
.filtermenu li.icon_deleteall a:before,.filtermenu li.icon_filter a:before {margin: 0 8px 0 0;font: 14px "FontAwesome";color: #494d52;position: relative;top: -1px;}
.filtermenu li.icon_deleteall a:before {content: '\f00d';color:#f8565d;}
.filtermenu li.icon_filter a:before {content: '\f0b0';}
.filtermenu li a:hover {background: #494d52;border-color: #494d52;color: #ffffff;}
.filtermenu li a:hover:before {color: #ffffff;}

.filtermenu ul.dropdown-menu {
	list-style-position: inside;
	list-style-type: none !important;
	background: none;
	border: none;
	border-top:1px solid #d8d8d8;
    /*box-shadow: none;*/	
    min-width: 0;
    margin: 0;
    padding: 0;	
}
.filtermenu ul.dropdown-menu li {
	margin: 0;
	width: 100%;
}
.filtermenu ul.dropdown-menu li a {
	border-top: none;
	-webkit-border-radius: 0;
			border-radius: 0;	
}
.filtermenu ul.dropdown-menu li a::before {
	content: none;	
}
.filtermenu li.icon_locale ul.dropdown-menu li a {
	padding-left: 42px;
}


.addthis_native_toolbox div { vertical-align: top !important;}

.product-view-videos-panel ul {
	list-style-type: none;
	list-style-position: inside;
}
.product-view-videos-panel ul li.youtube{
	margin: 20px auto;
}


li.comment {
	margin: 30px 0 0 0;
}
li.comment .show-comment-button.show-all:before {
	content: '\f196';
	margin: 0 5px;
	font: 14px 'FontAwesome';
}
li.comment .show-comment-button.show-short:before {
	content: '\f147';
	margin: 0 5px;
	font: 14px 'FontAwesome';
}
li.comment a.icon-remove:before {content: '\f00d';margin: 0 2px 0 0;color:#f8565d;font: 14px "FontAwesome";}

table.table tr th {
    background-color: #666666 !important;
    color: #ffffff !important;
    vertical-align: middle;
}

.treeheader a {font-weight: bold;}
.treeheader a, .treeview li, .treeview li a {font-size: 16px; line-height: 18px; color: #333333;}
.treeview, .treeview ul{list-style-type: none !important;}
.treeview .expandable-hitarea {background-position: -80px -1px;}
.treeview .hover {color: #333333; text-decoration: underline;}

.contact-modul {border-top: 1px dotted #999;border-bottom: 1px dotted #999; margin: 10px 0 0 0; padding: 10px 0 0 0;}
.contacts td:first-child {font-size: 20px;}


.dialog-error { border: 1px solid red;}
.dialog-error .ui-dialog-content { background:#fff url(../images/msgbox/error_bg.jpg) bottom right no-repeat; padding: 1em 1em; color: red;}
.dialog-error .ui-dialog-buttonpane { border-top: 1px solid red; padding: 0; }

.dialog-warning { border: 1px solid #957c17;}
.dialog-warning .ui-dialog-content { background:#fff url(../images/msgbox/warning_bg.jpg) bottom right no-repeat; padding: 1em 1em; color: #957c17}
.dialog-warning .ui-dialog-buttonpane { border-top: 1px solid #957c17; padding: 0; }

.dialog-success .ui-dialog-content { background:#fff url(../images/msgbox/success_bg.jpg) bottom right no-repeat; padding: 1em 1em; color: #3c7f51; }
.dialog-success .ui-dialog-buttonpane { padding: 0; }

.dialog-prompt { border: 1px solid #cccccc;}
.dialog-prompt .ui-dialog-content { background:#fff url(../images/msgbox/prompt_bg.jpg) bottom right no-repeat; padding: 1em 1em; }
.dialog-prompt .ui-dialog-buttonpane { border-top: 1px solid #cccccc; padding: 0; }

.dialog-confirm .ui-dialog-content { background:#fff url(../images/msgbox/prompt_bg.jpg) bottom right no-repeat; padding: 1em 1em; }
.dialog-confirm .ui-dialog-buttonpane { padding: 0; }

.dialog-splash { border: 1px solid red;}
.dialog-splash .ui-dialog-content { padding: 1em 1em; }


.js-video {
  height: 0;
  padding-top: 25px;
  padding-bottom: 67.5%;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
 
.js-video.widescreen {
  padding-bottom: 56.34%;
}
 
.js-video.vimeo {
  padding-top: 0;
}

.js-video embed, .js-video iframe, .js-video object, .js-video video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}


h2.qa {margin: 30px 0 10px 0;}
span.question {font-weight: bold; vertical-align: middle; display: block; clear: both; margin: 20px 0 5px 0;}
span.question:before {
	content: '\f059';
	margin: 0 5px 0 0;
	font: 19px/.1em 'FontAwesome';
	color: #494d52;
	position: relative;
	top: 1px;
}
span.info {font-weight: bold; vertical-align: middle; display: block; clear: both; margin: 20px 0 5px 0;}
span.info:before {
	content: '\f05a';
	margin: 0 5px 0 0;
	font: 19px/.1em 'FontAwesome';
	color: #494d52;
	position: relative;
	top: 1px;
}
p.answer {margin: 0;}

.product-scope,
.collection-scope,
.cart-scope,
.tags-scope {
	min-height: 500px;
}

.login-3rdparty {display:block; width:100%;text-align:center; }
.facebook-login {background:#3a589e; border-radius: 5px;-moz-border-radius: 5px;-webkit-border-radius: 5px; padding:4px; color:#FFF !important; text-decoration:none !important; font-weight:bold !important; font-size:19px; position:relative; display:inline-block; margin:0 auto; padding: 10px 15px;}
fieldset[disabled] .facebook-login, fieldset[disabled] .facebook-login:hover {cursor: not-allowed; background:#3a589e; filter: alpha(opacity=85);opacity: .85;}
.ie7 .facebook-login {display:inline;}
.facebook-login .fa-facebook {font-size: 28px;line-height: 30px; margin-right: 10px;}

.google-login {background:#3a589e; border-radius: 5px;-moz-border-radius: 5px;-webkit-border-radius: 5px; padding:4px; color:#FFF !important; text-decoration:none !important; font-weight:bold !important; font-size:19px; position:relative; display:inline-block; margin:0 auto; padding: 10px 15px;}
fieldset[disabled] .google-login, fieldset[disabled] .google-login:hover {cursor: not-allowed; background:#3a589e; filter: alpha(opacity=85);opacity: .85;}
.ie7 .google-login {display:inline;}
.google-login .fa-google {font-size: 28px;line-height: 30px; margin-right: 10px;}



li.icon_account span.img {
    width: 28px;
    height: 28px;
    border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    background-clip: padding-box;
    background-size: auto 28px !important;
	position: absolute;
	top: 3px;
	left: 3px;
	vertical-align: middle;
}




ul.mkt li a.filter_mt_black_friday,
ul.mkt li a.filter_mt_black_friday:hover,
ul.mkt li.active a.filter_mt_black_friday {
	background: red !important;
}

.TDatePicker_default {
    z-index: 100;
}
.form-horizontal .dtpicker select {
	width: auto;
	padding: 6px;
	margin: 0 15px 0 0;
}
select.datepicker_month_options {
	text-transform: capitalize;
}

#gdpr_confirmation {
	width: 244px;
}