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

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

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



/***************************************************************************
                           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;
	line-height:inherit;
	font-weight:inherit;
}
b, strong {
	font-weight: bold;
	vertical-align:baseline;
}
i, dfn {
	font-style: italic;
}

img {
	max-width: 100%;
}

#back_top {
	width: 30px;
	height: 30px;
	display: block;
	margin: 0 0 0 570px;
	background: #595959;
	text-align: center;
	position: fixed;
	left: 50%;
	bottom: 50px;
	z-index: 999;
}
#back_top i {
	display: block;
	font-size: 15px;
	line-height: 30px;
	color: #ffffff;
}
#back_top:hover {
  background:#E49600;
}

/***************************************************************************
                           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 #afafaf;
}
.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;
}
.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(25,25,25,.7);
	display: none;
}
.top_pad .cart_popup {top:53px !important;}


/* 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: 469px !important;
	background: #e7e7e6;
}



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




body {
	font-family: Roboto Condensed;
	font-size: 14px;
	color: #191919;
}



/* 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;
	font: 31px Roboto Condensed;
	color: #1a1a1a;
}

.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,
.page_heading {
	margin: 0;
	padding: 0 0 5px 0;
	font: 31px Roboto Condensed;
	color: #115B74;
	font-weight:bold;
	text-align:center;
}
.column_center .page_heading a {
	float: right;
}



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

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



/* 4.3 LINKS */
a {
	color: #E49600;
	text-decoration: none;
}
a:hover, a:focus {
	color: #191919;
}



/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product_name {
	font-weight: bold;
	font-size: 14px;
	color: #191919;
}
.product_name a {
	font-weight: bold;
	color: #191919;
	
-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: #E49600;
}


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


.money {
	color: #191919;
}
.compare-at-price {
	text-decoration: line-through;
	color: #777777;
}



/* 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 {
	color: #115B74;
	font-weight: bold;
	font-size:16px;
}
.rte h5 {
	font-size: 13px;
}
.rte h6 {
	font-size: 12px;
}

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

h1,h2,h3,h4,h5,h6 {
	font-family:Roboto Condensed;
	text-transform:uppercase;
	line-height: 0.97em;
}

/***************************************************************************
                           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 #afafaf;
	font: normal 13px 'Arial';
	color: #191919;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 0;
	box-shadow: none;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {
	height:34px;
	line-height:18px;
	padding-top:7px;
	padding-bottom:7px;
}

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-group a {
	color:#bfaf00;
}
.form-group a:hover {
	color:#191919;
}

.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 {
	font-size:21px;
  	line-height:1.7em;
	border:1px solid #d9d9d9;
	border-right:1px solid #afafaf;
	border-bottom:1px solid #afafaf;
	
background: #ffffff;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f2f2f2));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #ffffff 0%,#f2f2f2 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );
	 /* IE6-8 */
;
	text-align:center;
	border-radius:3px;
	color:#191919;
	position:relative;
	padding:13px 20px;
    border-radius: 3px !important;
	text-transform:uppercase;
	letter-spacing:-0.2px;
	
-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;
	;
	box-shadow: none !important;
}

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

.btn-cart i {
	background: #E49600;
	font-size:20px;
	width:32px;
	height:32px;
	border-radius:50%;
	color:#191919;
	padding-top:6px;
	margin-right:3px;
	overflow:hidden;
}

.btn:focus {
	color:#191919;
	border:1px solid #d9d9d9;
	border-right:1px solid #afafaf;
	border-bottom:1px solid #afafaf;
}
.btn:hover,
.btn:hover a,
.btn-info:hover,
.btn-info:active,
.btn-primary:hover {
	 background:#191919;
	 border:1px solid #afafaf;
	border-right:1px solid #d9d9d9;
	border-bottom:1px solid #d9d9d9;
	color:#E49600 !important;
}

.btn:active {
	 
background: #ffffff;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f2f2f2));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #ffffff 0%,#f2f2f2 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );
	 /* IE6-8 */
;
	border:1px solid #d9d9d9;
	border-right:1px solid #afafaf;
	border-bottom:1px solid #afafaf;
}


.link {
	display:inline-block;
	font-size:21px;
	text-transform:uppercase;
	color:#E49600;
	border-bottom:1px solid #E49600;
}
.link:hover {
	color:#ffffff;
	border-bottom:1px solid #ffffff;
}

.btn-cart:hover {
	 
background: #f2f2f2;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #f2f2f2 0%,#ffffff 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#ffffff));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f2f2f2 0%, #ffffff 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #f2f2f2 0%,#ffffff 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #f2f2f2 0%,#ffffff 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #f2f2f2 0%,#ffffff 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=0 );
	 /* IE6-8 */
;
	color:#191919 !important;
}

.links a {
	color:#bfaf00;
}
.links a:hover {
	color:#191919;
}

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

html, body {
	height: 100%;
}

.page_preloader {
	width: 100%;
	height: 100%;
	background: url(//cdn.shopify.com/s/files/1/0742/8803/t/2/assets/bx_loader.gif?1921314223274587613) 50% 50% no-repeat #f2f2f2;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
}

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

.container {
	padding: 0;
}



















.bg2 {
	position: relative;
	z-index: 1;
	background: url() 0 0 repeat #191919;
	}
.bg2:after {
	position:absolute;
	content:"";
	z-index:-1;
	position:absolute;
	left:0px;
	bottom:0px;
	right:0px;
	height:100%;
	background: -webkit-linear-gradient(top, rgba(25,25,25,0) 0%,rgba(25,25,25,.9) 100%);
	background: -moz-linear-gradient(top, rgba(25,25,25,0) 0%, rgba(25,25,25,.9) 100%);
	background: -ms-linear-gradient(top, rgba(25,25,25,0) 0%,rgba(25,25,25,.9) 100%);
	background: -o-linear-gradient(top, rgba(25,25,25,0) 0%,rgba(25,25,25,.9) 100%);
	background: linear-gradient(to bottom, rgba(25,25,25,0) 0%,rgba(25,25,25,.9) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(25,25,25,0)), color-stop(100%,rgba(25,25,25,.9)));
}

#main {
	margin-top: 0px;
}



#main_content,
.column .widget {
	margin-bottom: 49px !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 {
	margin-bottom:10px;
}

.header_top {
	background:#f2f2f2;
	position:relative;
	z-index:122;
}







































.header_user {
	float:left;
	margin-top:17px;
}
.header_user li {
	display:inline-block;
	margin-right:19px;
}
.header_user li a {
	color:#777777;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	;
}
.header_user li a:before {
	content:"\f007";
	display:inline-block;
	margin: 0 5px 0 0;
	line-height: 1.6em;
	font-size:14px;
	width:26px;
	height:26px;
	border-radius:50%;
	  border:1px solid #d9d9d9;
	border-right:1px solid #afafaf;
	border-bottom:1px solid #afafaf;
	  background:#ffffff;
	text-align:center;
	color:#d9d9d9;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	;
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.header_user li a:hover {
	color:#191919;
}
.header_user li:hover a:before {
	color:#191919;
}

#customer_login_link:before,
#customer_logout_link:before {
	content:"\f13e";
}


.header_currency {
	float:right;
	padding:19px 0px 16px 0px;
	position:relative;
}
.header_currency:before {
	position:absolute;
	top:0px;
	bottom:100%;
	left:0px;
	right:0px;
	background:#E49600;
	content:"";
	
-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;
	;
}
.header_currency:hover:before {
	bottom:0px;
}
.header_currency .jq-selectbox {
	width: 80px;
	line-height: 24px;
	padding: 0 17px;
}
.header_currency .jq-selectbox__select {
	height: 25px;
	padding: 0 10px 0 5px;
	color:#777777;
}
.header_currency .jq-selectbox__trigger i {
	right: 0px;
	top: 4px;
}

.header_currency .jq-selectbox__dropdown {
	width: 100% !important;
	background: #191919;
	top: 41px !important;
	border-top:1px solid #191919;
}
.header_currency .jq-selectbox__dropdown ul li {
	background:#191919;
	color:#ffffff;
	text-align:center;
}

.header_currency .jq-selectbox__dropdown ul li:hover,
.header_currency .jq-selectbox__dropdown ul li.sel {
	background: #E49600;
	color:#191919;
}






































.header_cart {
	float:right;
	margin-right:9px;
}
.header_cart a {
	position:relative;
	z-index:1;
	font-size:17px;
	display:block;
	background:#777777;
}
.header_cart a i {
	font-size:31px;
	color:#ffffff;
	padding-right:6px;
}
.header_cart a span.count {
	padding:0 4px;
}
.header_cart a .cart_bg {
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	z-index:-1;
	background:#303030;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	;
}
.header_cart a:hover .cart_bg {
	bottom:100%;
}
.header_cart .ins {
	display:inline-block;
	padding:13px 21px 15px 19px;
	line-height:32px;
}
.header_cart a:hover span {
	color:#E49600;
}







































.checkout {
	float:right;
	margin-top:11px;
}
.checkout a {
	display:inline-block;
	border:1px solid #d9d9d9;
	border-right:1px solid #afafaf;
	border-bottom:1px solid #afafaf;
	  
background: #ffffff;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f2f2f2));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #ffffff 0%,#f2f2f2 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );
	 /* IE6-8 */
;
	text-align:center;
	border-radius:3px;
	color:#191919;
	position:relative;
	padding:8px 10px;
}
.checkout a:before {
	position:relative;
	content:"\f00c";
	font-size:14px;
	padding-right:4px;
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.checkout a:hover {
	background:#E49600;
}

.header_center {
	z-index:120;
	position:relative;
}
.header_center.bg2:after {
	display:none;
}

#logo {
	float:left;
	margin-top:10px;
	padding-bottom:7px;
	position:relative;
	z-index:10;
	position:relative;
	z-index:1;
}
#logo a {
	display:block;
}
#logo b {
	font-size: 20px;
}
#logo a:before {
	position:absolute;
	left:-5px;
	top:-5px;
	right:-5px;
	z-index:-1;
	content:"";
	height:0px;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	;
	opacity:.3;
}
#logo a:hover:before {
	height:100%;
}







































.header_search {
	float:right;
	margin-top:25px;
	float:right;
	position:relative;
	z-index:11;
}
.header_search form {
	position:relative;
	border:1px solid #191919;
	width:230px;
	padding-right:41px;
	background:#303030;
	border-radius:3px 2px 2px 3px;
	border-bottom:1px solid #505050;
}
.header_search #search-field {
	border:none;
	height:40px;
	width:100%;
	padding-top:10px;
	padding-bottom:10px;
	color:#ffffff;
}
.header_search #search-submit {
	position:absolute;
	right:0px;
	top:0px;
	bottom:-2px;
	color:#191919;
	width:41px;
	
-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;
	;
	padding-top:10px;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	;
	background:#E49600;
	border-radius:0px 2px 2px 0px;
	font-size:19px;
	border-right:1px solid #bfaf00;
	border-bottom:1px solid #bfaf00;
}
.header_search #search-submit:hover {
	background:#bfaf00;
}



/* 8.2 MEGAMENU */
#megamenu {
	position: relative;
	text-align:center;
	margin-top:20px;
}

#megamenu .sf-menu {
	display:inline-block !important;
}
.sf-menu > li {
	float: left;
}
.sf-menu > li > a {
	height: 50px;
	display: block;
	line-height: 50px;
	text-transform: uppercase;
	padding: 0 12px 0 12px;
	position: relative;
	  font-size:21px;
	color:#ffffff;
	
-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;
	;
}

.sf-menu > li + li > a:before {
	content:"";
	left:0px;
	top:10px;
	bottom:10px;
	width:1px;
	background:#505050;
	position:absolute;
	
-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;
	;
}

.sf-menu > li > a.sf-with-ul:after {
	position:relative;
	content:"\f107";
	color:#ffffff;
	font-size:21px;
	padding-left:3px;
	
-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;
	;
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.sf-menu > li.sfHover > a,
.sf-menu > li > a:hover,
.sf-menu > li > a.active,
.sf-menu > li > a.sf-with-ul:hover:after,
.sf-menu > li.sfHover > a.sf-with-ul:after {
	color:#E49600;
}

.sf-menu .menu_badge {
	display: block;
	padding: 2px 5px;
	background: #E49600;
	font-size: 9px;
	line-height:1em;
	color: #191919;
	text-transform: uppercase;
	position: absolute;
	right: -10px;
	top: -10px;
}

.sf-menu > li > ul {
	width: 100%;
	background: #191919;
	position: absolute;
	left: 0;
	top: 70px;
	text-align:left;
	display: none;
	}
.sf-menu .submenu {
	padding: 20px}
.sf-menu > li > ul li a {
	color:#505050;
}
.sf-menu > li > ul li a:hover {
	color:#E49600;
}
.sf-menu > li > ul li h3 > a {
	color:#ffffff;
	
-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;
	;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	padding-left:55px;
}
.sf-menu > li > ul li h3 > a:hover {
	color:#E49600;
	padding-left:55px;
}
.sf-menu > li > ul li a.btn {
	
}


/* CATALOG */
.megamenu__2 .submenu {
	
}

/* BLOG */
.sf-menu .blog_content {
	color:#777777;
}
.sf-menu .product_ins {
	display:block;
	background:#e6e6e6;
	padding:10px 20px;
	
-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;
	;
}
.sf-menu .product_ins:hover {
	background:#E49600;
}
.sf-menu .blog_date {
  color:#777777; 
}




/* STICK UP MENU STYLES */
.header_center.isStuck {
	width: 100%;
	left: 0;
	top: 0;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	-webkit-box-shadow: 0 0px 5px rgba(0,0,0,0.75);
	-moz-box-shadow: 0 0px 5px rgba(0,0,0,0.75);
	box-shadow: 0 0px 5px rgba(0,0,0,0.75);
	
}
.header_center.isStuck .menu_badge {
	display: none;
}
.isStuck #logo {
 	padding-bottom:3px; 
}
.isStuck #logo img {
  	
-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;
	;
  	width:55%;
}
.isStuck #megamenu {
  	
-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;
	;
	margin-top:0px;
}
.isStuck .header_search {
  	
-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;
	;
	margin-top:5px;
}
.isStuck .sf-menu > li > ul {
 	top:53px; 
}


/* 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_parallax_wr {
	height:580px;
	overflow:hidden;
}
.slider_wrap {
	height: 100%;
	position: relative;
	z-index: 1;
	top:-300px;
}

.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;
	background:#303030;
	padding:2px 16px 4px 13px;
	border-radius:0px 20px 20px 0px;
	color:#ffffff;
	transition:padding .4s ease, color .4s ease, background .4s ease;
}
.nivo-directionNav a span {
	display: none;
}
.nivo-directionNav a i {
	display: inline-block;
	font-size:38px;
}
.nivo-prevNav {
	left: 0;
}
a.nivo-nextNav {
	right: 0;
	padding:2px 13px 4px 16px;
	border-radius:20px 0 0 20px;
}
.nivo-directionNav a:hover {
	background:#E49600;
	color:#191919;
	padding:2px 16px 4px 51px;
}
a.nivo-nextNav:hover {
	padding:2px 51px 4px 16px;
}




/* 8.4 SHOWCASE */
#showcase {
	min-height:326px;
}
#showcase .bg2:after {
	height:100%;
}

.custom_showcase {
	margin-top:-135px;
	text-align:center;
	padding-bottom:60px;
	position:relative;
}
.custom_showcase a {
	display:block;
	
}
.custom_showcase .showcase_img {
	border-radius:50%;
	position:relative;
	margin-bottom:13px;
}
.custom_showcase .showcase_img:before {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	border-radius:50%;
	content:"";
	border:0px solid #E49600;
	
-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-box-shadow: inset 0 0 70px 10px rgba(0,0,0,0.4);
	-moz-box-shadow: inset 0 0 70px 10px rgba(0,0,0,0.4);
	box-shadow: inset 0 0 70px 10px rgba(0,0,0,0.4);
}
.custom_showcase a:hover .showcase_img:before {
	border-width:10px;
}
.custom_showcase .showcase_img img {
	 
-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-transform: scale(1);
	transform: scale(1);
  	height:auto;
}
.custom_showcase a:hover .showcase_img img {
	-webkit-transform: scale(.94);
	transform: scale(.94);
}
.custom_showcase h3 {
	font-size:43px;
	color:#ffffff;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	;
}
.custom_showcase h3 span {
	font-size:36px;
	display:block;
}
.custom_showcase a:hover h3 {
	color:#E49600;
}
.custom_showcase .link {
	margin-top:13px;
	
-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;
	;
}
.custom_showcase a .link:hover {
	color:#ffffff;
	border-bottom:1px solid #ffffff;
}

.custom_showcase img {
	border-radius:50%;
}



/* BANNER */

.banner {
	margin-top:0px;
	background:#ffffff;
	position:relative;
	overflow:hidden;
	min-height:580px;
	z-index:2;
}
.banner a {
	display:block;
}
.banner img {
	width:100%;
	position:absolute;
	left:0px;
	right:0px;
	top:-100px;
	z-index:-1;
}
.banner_wrapper {
	max-width:1500px;
	margin:0 auto;
}
.banner h4 {
	font-size:43px;
	max-width:415px;
	line-height:1.2em;
	color:#191919;
}
.banner .inside {
	padding-top:112px;
}
.banner h3 {
	font-size:66px;
	color:#777777;
	padding-top:6px;
}
.banner .ins {
	background:#191919;
	display:inline-block;
	color:#ffffff;
	text-transform:uppercase;
	text-align:center;
	width:167px;
	height:167px;
	border-radius:50%;
	padding-top:32px;
	margin-top:22px;
}
.banner span {
	line-height:0.8em;
}
.banner .text1 {
	font-size:26px;
}
.banner .text2 {
	font-size:76px;
	color:#E49600;
}
.banner .text3 {
	font-size:36px;
}
.banner__2 {
	margin-top:48px;
}



/* HOMEPAGE BESTSELLERS */

.bestsellers_homepage {
	margin-top:41px;
}
.bestsellers_homepage .product_listing_main .product {
	margin: 0;
}



/* BLOG */
.homepage_blog {
	position: relative;
	padding:49px 0 46px;
}
.homepage_blog h2 {
	color:#ffffff;
}
.homepage_blog .p_img,.homepage_blog .p_img img {
	border-radius:50%;
}
.homepage_blog .p_img {
	overflow:hidden;
	margin:0px 0px 12px;
	position:relative;
}
.homepage_blog .p_img:after {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	border-radius:50%;
	content:"";
	border:0px solid #E49600;
	
-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-box-shadow: inset 0 0 70px 10px rgba(0,0,0,0.4);
	-moz-box-shadow: inset 0 0 70px 10px rgba(0,0,0,0.4);
	box-shadow: inset 0 0 70px 10px rgba(0,0,0,0.4);
	}
.homepage_blog a:hover .p_img:after {
	border-width:10px;
}

.homepage_blog .p_img img {
	
-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-transform: scale(1);
	transform: scale(1);
  	height:auto;
}
.homepage_blog a:hover .p_img img {
	-webkit-transform: scale(.94);
	transform: scale(.94);
}

.homepage_blog .blog_post {
	margin-top:25px;
	padding-bottom:30px;
}
.homepage_blog__content {
	display:none;
}
.homepage_blog .ins {
	text-align:center;
}
.homepage_blog h3 {
	color:#ffffff;
	padding:6px 0px 0px;
	line-height:1.2em;
	
-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;
	;
}
.homepage_blog a:hover h3 {
	color:#E49600;
}
.homepage_blog__date {
	color:#E49600;
	
-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;
	;
}
.homepage_blog a:hover .homepage_blog__date {
	color:#ffffff;
}



/* CUSTOM BOTTOM */
.custom_bottom_wr {
	background:#115B74;
	text-align:center;
}
.custom_bottom {
	padding:54px 0 54px;
}
.custom_bottom h3 {
	font-size:43px;
	color:#E49600;
}
.custom_bottom h3 span {
	font-size:36px;
	display:block;
	letter-spacing:-1px;
}



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

.product .product_img {
	margin-bottom:10px;
}
.product .product_img a {
	display: block;
	position: relative;
	padding:20px;
}
.product_listing_main .product_img img {
	background-color: #e6e6e6;
	position: relative;
	z-index: 1;
	
-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_listing_main .product_img .img__2 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	padding:20px;
	opacity: 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;
	;
}

.product_ins {
	background:#e6e6e6;
	text-align:center;
	padding-bottom:21px;
	
-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_listing_main .product_img span.product_badge {
	display: block;
	padding: 5px 10px;
	color: #ffffff;
	position: absolute;
	top: 0;
	z-index: 100;
}
.product_listing_main .product_img span.new {
	background: #191919;
	left: 0;
}
.product_listing_main .product_img span.sale {
	background: #E49600;
	right: 0;
	color:#191919;
}

.product .product_info {
	padding:0 20px;
	text-align:center;
}

.product_listing_main .product_name {
	min-height:41px;
}

.product .product_price .money {
	font-size:34px;
}
.product .product_price .compare-at-price {
	font-size:14px;
	display:block;
}
.product_listing_main .product_price {
	min-height:50px;
}

.product .product_links {
	margin-top:9px;
}
.product_listing_main .product_links form {
	display: block;
}
.product_listing_main .product_links .btn {
	width:100%;
}

.product_ins:hover {
	background:#ffffff;
}
.product_listing_main .product_ins:hover .product_img img {
	background:#ffffff;
}
.product_listing_main .product_ins:hover .product_img .img__2 {
	background:#ffffff;
}



/* HOMEPAGE CAROUSEL */
.index-scope .bx-wrapper {
	max-width: 100% !important;
	margin: 17px 0 0 0;
}

.homepage_carousel .product {
	margin: 0;
}

.index-scope .bx-controls {
	position:absolute;
	top:-60px;
	right:0px;
}
.index-scope .bx-controls a {
	width: 38px;
	height: 38px;
	display: block;
	overflow: hidden;
	margin: 0px 0 0 5px;
	text-align: center;
	display:inline-block;
	  z-index: 99;
	-webkit-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;
	;
	background:#505050;
	color: #ffffff;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
}

.index-scope .bx-controls a:hover {
	background: #E49600;
	color:#191919;
}

.index-scope .bx-controls a:before {
	display: block;
	font: 28px/37px 'FontAwesome';
}

.index-scope .bx-prev:before {
	content: '\f104';
	padding: 0 3px 0 0;
}
.index-scope .bx-next:before {
	content: '\f105';
	padding-left:5px;
}

.index-scope .bx-prev {
	left: -50px;
}
.index-scope .bx-next {
	right: -50px;
}



/* 8.6 FOOTER */






































footer {
	background:#191919;
	color:#888888;
}
footer,
footer a {
	color:#888888;
}

footer .bg2 {
	padding-bottom:58px;
	padding-top:28px;
}

footer h3 {
	font-size:21px;
	min-height:20px;
	color:#ffffff;
}

.footer_block {
	padding-top:30px;
	padding-left:15px;
}
.footer_block .ins {
	padding-left:28px;
	border-left:1px solid #505050;
}
.footer_block ul {
	margin-top:21px;
}
.footer_block ul li + li {
	margin-top:12px;
}
.footer_block ul li a {
	display:block;
	font-size:14px;
	position:relative;
	color:#888888;
	
-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;
	;
	max-width:100%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}


.footer_block ul li.active a,
.footer_block ul li a:hover,
.footer_block ul li a:hover:before {
	color:#E49600;
}

.contacts_phone {
	color:#E49600;
	font-size:36px;
	margin-top:-4px !important;
}

.footer_block__4 {
	padding-left:0px;
}
.footer_block__4 .ins {
	border-left:0px;
}


footer .copyright {
	background:#000000;
	padding-top:7px;
	padding-bottom:40px;
}
footer .copyright p {
	font-size:12px;
}
footer .copyright a {
	color:#E49600;
}
footer .copyright a:hover {
	color:#ffffff;
}



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



/* 9.1 PAGES CONTENT */
ul.tags {
	margin: 10px 0 0 0;
	list-style-type: none;
}
ul.tags li {
	float: left;
	margin: 5px 5px 0 0;
}
ul.tags li a {
	display: block;
	padding: 5px 10px;
	background: #191919;
	color: #ffffff;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	;
}

ul.tags li a:hover,
ul.tags li.active a {
	background: #191919;
	color: #E49600;
}

.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 #afafaf;
	border-width: 1px 0;
	text-align: right;
}
.sort_by label {
	margin: 0 4px 0 0;
	line-height: 30px;
}
.sort_by select {
	width: auto !important;
	height: 30px;
	display: inline-block;
	padding: 5px 4px;
	cursor: pointer;
}



/* 9.2 BREADCRUMBS */
.breadcrumb {
	margin: 20px 0 35px;
	color:#E49600;
	padding:10px 15px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: url(//cdn.shopify.com/s/files/1/0742/8803/t/2/assets/second_bg_img.png?1921314223274587613) 0 0 repeat #191919;
}
.breadcrumb a,
.breadcrumb > li + li:before {
	color:#E49600;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	;
}
.breadcrumb a:hover {
	color:#ffffff;
}



/* 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: 0;
}
#pagination span {
	display: block;
	float: left;
}
#pagination span ~ span {
	margin-left: 1px;
}

#pagination span a,
#pagination span.deco,
#pagination span.current {
	display: block;
	padding: 4px 16px;
	background: #191919;
	color: #ffffff;
	
-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;
	;
}

#pagination span.current,
#pagination span a:hover {
	background: #191919;
	color: #E49600;
}
#pagination span.current {
	cursor: default;
}



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

.column .widget h3.widget_header {
	margin: 0;
	padding: 0 0 5px 0;
	font: 31px Roboto Condensed;
}



/* 10.1 LINKS LIST */
.column .widget ul.list {
	border-bottom: 1px solid #afafaf;
}
.column .widget ul.list li {
	padding: 10px 0;
}
.column .widget ul.list li + li {
	border-top: 1px solid #afafaf;
}
.column .widget ul.list li a {
	color:#191919;
}

.column .widget ul.list li.active a,
.column .widget ul.list li a:hover {
	color:#bfaf00;
}



/* 10.2 SIDEBAR PRODUCT LISTING */
.product_listing_sidebar .product {
	margin-top:15px;
}
.product_listing_sidebar .product_img {
	float:left;
}
.product_listing_sidebar .product_img a {
	padding:20px 2px;
}
.product_listing_sidebar .product_info {
	overflow:hidden;
	text-align:left;
	padding:20px 7px 0;
}

.product_listing_sidebar .product_links form {
	display: inline-block;
}
.product_listing_sidebar .product_links .btn-cart {
	font-size:18px;
	padding:8px 7px;
}



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

#searchresults {
	margin: 0;
}
#searchresults .search-form {
	margin: 15px 0 0 0;
}
#searchresults .search-form input {
	width: 100%;
	float: left;
	padding: 7px 34px 7px 10px;
}
#searchresults .search-form button {
	width: 34px;
	height: 34px;
	float: left;
	margin: 0 0 0 -34px;
	background: none;
	border: none;
	font-size: 20px;
	color: #E49600;
}
#searchresults .search-form button:hover {
	color: #191919;
}
#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 #afafaf;
}
#searchresults ol li {
	overflow: hidden;
	margin: 0;
	padding: 15px 0;
	border-top: 1px solid #afafaf;
}
#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
***************************************************************************/



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

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

.zoomWrapper {
	background: #e6e6e6;
}

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



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

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

.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(25,25,25,.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(25,25,25,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: 20px;
}

.product_wrap .product-price {
	margin: 15px 0 0 0;
	padding: 0;
}
.product_wrap .product-price .money {
	margin: 0 5px 0 0;
	font-size:25px;
}
.product_wrap .product-price .compare-at-price {
	font-size:20px;
}
#purchase label {
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 0 !important;
	line-height: 37px;
}
#purchase #quantity {
	width: 50px;
	height: 44px;
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 12px 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: 44px;
	margin: 15px 10px 0 0;
	padding: 2px 15px;
}

    
.product_wrap .product_details {
	margin: 15px 0 0 0;
	padding: 10px 0 15px 0;
	border: 1px solid #afafaf;
	border-width: 1px 0;
}
.product_wrap .product_details > div {
	padding: 5px 0 0 0;
}
.product_wrap .product_details > div a {
	color:#bfaf00;
}
.product_wrap .product_details > div a:hover {
	color:#191919;
}

.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;
}
.product_wrap .pagination__product ul li a {
  color:#bfaf00;
}
.product_wrap .pagination__product ul li a:hover {
  color:#777777;
}


/* 12.4 RELATED PRODUCTS */
.widget_related_products h3 {
	margin: 30px 0 0 0;
	font: 31px Roboto Condensed;
}

ul.product_listing_related {
	list-style-type: none;
}
ul.product_listing_related .product_info {padding: 0 10px;}


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

/* 13.1 POSTS LISTING */


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

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

.blog-article_meta-comments {
	float: right;
	padding: 18px 0 0 15px;
}
.blog-article_meta-comments a {
	color:#bfaf00;
}
.blog-article_meta-comments a:hover {
	color:#191919;
}

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

.blog-article_meta-tags a {
	text-decoration: underline;
	color:#bfaf00;
}
.blog-article_meta-tags a:hover {
	color:#191919;
}



/* 13.2 SINGLE POST */
.article_meta-comments {
	float: right;
	padding: 18px 0 0 15px;
}
.article_meta-comments a {
	color:#bfaf00;
}
.article_meta-comments a:hover {
	color:#191919;
}
.article_meta-tags a {
	text-decoration: underline;
}

.article_date,
.article_meta-tags,
.article_meta {
	font-style: italic;
}
.article_meta-tags a {
	color:#bfaf00;
}
.article_meta-tags:hover {
	color:#191919;
}



#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_account a {
	color:#bfaf00;
}
.customer_account a:hover {
	color:#191919;
}

.customer_name {
	text-transform: none !important;
}
.customer_name .divider {
	margin: 0 7px;
}
.customer_name .email {
	color: #191919;
}
.customer_name a {
	float: right;
}



/* 14.3 ADDRESSES */
.customer_addresses a {
	color:#bfaf00;
}
.customer_addresses a:hover {
	color:#191919;
}

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


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

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

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

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

.cart-list .row h3.item_vendor {
	border-bottom: 1px solid #afafaf;
	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: 9px 5px 8px;
	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 #afafaf;
}
.cart_subtotal h3 .money {
	float: right;
	font-size: inherit;
}

.cart_buttons {
	margin: 30px 0;
}
.cart_buttons a {
	color:#bfaf00;
}
.cart_buttons a:hover {
	color:#191919;
}

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

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

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