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

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



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



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



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




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



/* 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: 18px Roboto Condensed;
	color: #3e3e3e;
	text-transform: uppercase;
	letter-spacing:2px;
}

h2,
h3 {
	font: 18px Roboto Condensed;
	color: #3e3e3e;
	text-transform: uppercase;
	letter-spacing:2px;
}
.column_center h4 {
	font-size: 15px;
}

.column_center h5,
.column_center h6 {
	font-size: 13px;
}
.column_center .page_heading {
	margin: 0;
	padding: 0 0 5px 0;
	font: 700 18px Roboto Condensed;
	color: #3e3e3e;
	text-transform: uppercase;
	letter-spacing:7px;
	text-align:center;
}
.column_center .page_heading a {
	float: right;
}



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



/* 4.3 LINKS */
a {
	color: #668359;
	text-decoration: none;
}
a:hover, a:focus {
	color: #3e3e3e;
}



/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product_name {
	font-weight: bold;
	font-size: 17;
	color: #3e3e3e;
	text-transform:uppercase;
}
.product_name a {
	font-weight: bold;
	color: #3e3e3e;
	
-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: #668359;
}


#borde {
  border:2px solid #e8e8e8;
}


#marco {
  border:2px solid #e8e8e8;
}


#marco2 {
  border:4px solid #e8e8e8;
}


#contenedor {
  height: 100px;
  width: 210px;
}

#alinea {

  height: 45px;
  width: 210px;
}


#alineador {

  height: 45px;
  width: 300px;
}

.product_desc {
	font-size: 14px;
	color: #3e3e3e;
}

.money {
	color: #3e3e3e;
	font-weight:bold;
}
.compare-at-price {
	text-decoration: line-through;
	color: #191919;
}
.compare_price {
	color:#bebebe;
	padding-right:10px;
}


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

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

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

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


h1,h2,h3,h4,h5,h6 {
	font-family:Roboto Condensed;
	text-transform:uppercase;
	font-weight:bold;
}


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

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

select,
select.form-control
{
  	padding: 30px;
	border:1px solid #e8e8e8;
	font: normal 13px 'Arial';
	color: ;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 0;
	box-shadow: none;
    width: 300px;

}

textarea,
textarea.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {
	padding: 6px;
	border:1px solid #e8e8e8;
	font: normal 13px 'Arial';
	color: ;
	-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 12px;
}

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

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


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

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

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



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

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

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


/* 5.3 BUTTONS */








































.btn,
.btn:focus,
.btn a,
.btn-info,
.btn-primary {
	font-size:14px;
	text-transform:uppercase;
	letter-spacing:0px;
	border:0px;
	border-bottom:4px solid #333333;
	padding:0px 0px 0px;
	position:relative;
	background: none !important;
	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;
	;
	border-radius: 0 !important;
	box-shadow: none !important;
}

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

.btn-cart {
	background: none !important;
	border-color: none !important;
	padding:0px;
	z-index:1;
	border-bottom:0px;
}
.btn-cart:focus {
	border-bottom:0px;
  	padding:0px;
}
.btn-cart i {
	font-size:56px;
}
.btn-cart:after {
	position:absolute;
	left:0px;
	top:0px;
	height:0px;
	right:0px;
	content:"\f07a";
	
-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;
	color:#668359;
	font-size:56px;
	line-height:1em;
	overflow:hidden;
}
.btn-cart:hover:after{
	height:100%;
}
.btn-cart:hover {
	border-color:transparent !important;
}

.btn:hover,
.btn:hover a,
.btn-info:hover,
.btn-primary:hover {
	background: none !important;
	border-bottom-color: #668359;
	color:#668359;
}

.btn-primary,
.btn-primary:focus,
.btn-info,
.btn-info:focus {
	border:2px solid #333333;
	padding:4px 7px;
}
.btn-primary:hover,
.btn-info:hover {
	border:2px solid #668359;
}




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

html, body {
	height: 100%;
}

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

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

.container {
	padding: 0;
}



#main {
	margin-top: 15px;
}
.template-index #main {
	margin-top:0px;
	
    background: url(//cdn.shopify.com/s/files/1/0925/7682/t/2/assets/homepage_products_bg_img.jpg?12789674506094264276) center 0 no-repeat;
	
}

#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 {
	position:relative;
	z-index:10;
	background:#191919;
}
.subpage #header {
	
    background: url(//cdn.shopify.com/s/files/1/0925/7682/t/2/assets/header_resize_bg_img.jpg?12789674506094264276) center 0 no-repeat;
	background-size:100% auto;
	
    padding-bottom:25px;
}

#logo {
	display:block;
	text-align:center;
	margin-top:0px;
	margin-bottom:29px;
}
#logo a {
	/*display:inline-block;*/
	background:;
	text-align:center;
	color:#191919;
	padding:0 18px 28px;
	position:relative;
}
#logo img {
	margin-top:0px;
}
#logo a b,
#logo a span {
	 
-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 b {
	font-size: 80px;
	display:inline-block;
	margin-top:-20px;
	font-family: 'Grand Hotel', cursive;
	display:block;
	line-height:1em;
	font-weight:normal;
	padding-right:7px;
}
#logo span {
	font-size:14px;
	text-transform:uppercase;
	line-height:1em;
	margin-top:-8px;
	display:block;
	letter-spacing:3px;
}
#logo a:hover {
	border-top-color:#668359;
}
.logo_bg {
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	/*border:0px solid #668359;
	border-top:8px solid #191919;
    border-top:8px solid ; */
	margin:0px;
	box-sizing:content-box;
	
-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 .logo_bg {
	border:8px transparent #668359;
}
#logo a:hover b,
#logo a:hover span {
	color:#668359;
}

.header_top {
	position:relative;
	z-index:1;
}
.header_user {
	float:left;
	margin-top:38px;
}
.header_user li {
	display:inline-block;
	position:relative;
}
.header_user li a {
	text-transform:uppercase;
	font-size:14px;
	color:#ffffff;
	font-weight:300;
	letter-spacing:2px;
	position:relative;
}
.header_user li a i {
	margin: 0 5px 0 0;
	line-height: 1.5em;
}
.header_user li + li:before {
	position:relative;
	content:"|";
	width:47px;
	text-align:center;
	display:inline-block;
}
.header_user li a:after {
	right:50%;
	bottom:0px;
	content:"";
	position:absolute;
	width:0px;
	
-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;
	;
	border-bottom:1px solid #ffffff;
}
.header_user li a:hover:after {
	width:100%;
	 right:0%;
}

.header_currency {
	float:right;
	margin:38px 46px 0 0;
}
.header_currency .jq-selectbox {
	width: 60px;
	line-height: 24px;
}
.header_currency .jq-selectbox__select {
	height: 25px;
	padding: 0 25px 0 5px;
	color:#ffffff;
}
.header_currency .jq-selectbox__select-text {
	letter-spacing:2px;
}
.header_currency .jq-selectbox__trigger i {
	right: 6px;
	top: 2px;
	font-size:20px;
}

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

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

.header_cart {
	float:right;
	margin-top:26px;
	line-height:46px;
	vertical-align:baseline;
}
.header_cart a {
	color:#ffffff;
	min-width:269px;
	display:block;
	letter-spacing: 2px;
	position:relative;
}
.header_cart a i {
	font-size:56px;
	padding-right:14px;
}
.header_cart a span {
	font-size:14px;
	font-weight:300;
}
.header_cart a:after {
	position:absolute;
	content:"";
	right:50%;
	bottom:-4px;
	border-bottom:1px solid #ffffff;
	width:0px;
	
-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;
	;
	opacity:.5;
}
.header_cart a:hover:after {
	width:100%;
	right:0%;
}

.header_search {
	float:right;
	margin-top:31px;
	margin-right:31px;
	float:right;
}
.header_search form {
	position:relative;
	width:270px;
	padding-right:35px;
	z-index:2;
}
.header_search #search-field {
	border:none;
	height:39px;
	width:100%;
	padding-top:9px;
	padding-bottom:8px;
    color:#ffffff;
}
.header_search #search-submit {
	position:absolute;
	right:0px;
	top:0px;
	bottom:0px;
	font-size:15px;
	color:#ffffff;
	width:31px;
	padding-top:6px;
	
-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_search #search-submit:hover {
	color:#668359;
}
.header_search form:after {
	position:absolute;
	border:1px solid #ffffff;
	content:"";
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	opacity:.3;
	z-index:-1;
}



/* 8.2 MEGAMENU */
#megamenu {
	position: relative;
	z-index: 999;
}

.sf-menu {
	position: relative;
	text-align:center;
}
.sf-menu > li {
	display:inline-block;
	padding:0 20px;
}
.sf-menu > li > a {
	display: block;
	position:relative;
	line-height: 50px;
	font-size:20px;
	line-height:1.6em;
	position: relative;
	color:#ffffff;
	letter-spacing:2px;
	padding:0 12px 7px;
}
.sf-menu > li + li > a:before {
	position:absolute;
	left:-21px;
	top:-3px;
	bottom:0px;
	content:"";
	height:43px;
	width:1px;
	background:#ffffff;
	opacity:.2;
	-moz-transform:    rotate(20deg);
	-o-transform:      rotate(20deg);
	-webkit-transform: rotate(20deg);
	transform:         rotate(20deg);
	}
.sf-menu > li > a:after {
	position:absolute;
	content:"";
	border-bottom:7px solid #ffffff;
	right:50%;
	bottom:0px;
	width:0px;
	
-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.sfHover > a:after,
.sf-menu > li > a:hover:after,
.sf-menu > li > a.active:after {
	width:100%;
	right:0%;
}

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

.sf-menu > li > ul {
	width: 100%;
	background: #ffffff;
	position: absolute;
	left: 0;
	top: 50px;
	display: none;
	-webkit-box-shadow: 0 0px 30px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0px 30px 0px rgba(0,0,0,0.3);
	box-shadow: 0 0px 30px 0px rgba(0,0,0,0.3);
  	z-index:666;
}
.row_links {
	padding: 0 175px 0 82px;
}
.sf-menu .submenu li {
	padding-top:7px;
}
.sf-menu .submenu a {
	color:#191919;
	text-transform:uppercase;
}
.sf-menu .submenu a:hover {
	color:#668359;
}
.sf-menu .submenu h3 {
	font-size:24px;
	padding:26px 0 5px;
}
.sf-menu .row_links ul {
	padding-bottom:14px;
}

.sf-menu .submenu {
	padding: 20px;
	text-align:left;
}
.sf-menu > li > a.sf-with-ul .sf_bg {
    position: absolute;
    content:"";
    right: -2px;
    bottom: 42%;
    border: 3px solid;
    border-color: #ffffff transparent transparent transparent;
    width: 0;
    height: 0;
}
.row_banners {
	padding: 0 80px;
	margin: 57px auto 0px;
}
.banner__1 {
	width:38%;
	float:left;
	position:relative;
}
.banner__2 {
	width:59%;
	float:right;
	position:relative;
}
.row_banners img + div {
	position:absolute;
	left:33px;
	top:30px;
	max-width:50%;
}
.row_banners h4 {
	font-size:24px;
	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;
	;
}
.row_banners h4 span {
	font-weight:300;
}
.row_banners a:hover h4 {
	color:#668359;
}

.column__4  {
	clear:left;
}

.submenu .blog_date {
	color:#668359;
}
.submenu .blog_title {
	padding-top:5px !important;
}
.submenu .blog_title a {
	 
-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;
	;
}
.submenu .blog_content + .btn {
	margin-top:10px;
}

.submenu .product_name {
	padding-top:10px;
}
.submenu .product_img a {
	background:#000000;
	display:block;
}
.submenu .product_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;
	;
	opacity:1;
}
.submenu .product_img a:hover img {
	opacity:.6}
.submenu .product_price {
	font-size:24px;
}

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


/* STICK UP MENU STYLES */
#megamenu.isStuck {
	width: 100%;
	left: 0;
	top: 0;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	}
#megamenu.isStuck .menu_badge {
	display: none;
}
#megamenu.isStuck {
	background:#191919;
	padding-bottom:2px;
}
#megamenu.isStuck .sf-menu > li > ul {
	top:41px;
}



/* 8.3 NIVOSLIDER */
.nivoslider_height_wr {
	min-height:436px;
}
.nivoslider_height{
	position:relative;
	text-align:center;
	width:775px;
	margin:32px auto 0;
}
.slider_parallax_wr {
	height:1065px;
	overflow:hidden;
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	z-index:-1;
}
.nivolink {
	display:block;
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
}
.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%;
	position: absolute;
	z-index: 1;
	top:0px;
	left:0px;
	right:0px;
}

.nivo-caption {
	position: relative;
	z-index: 8;
	display: none;
	text-align:center;
}
.nivo-caption {
	position: absolute;
	z-index: 8;
	display: none;
	text-align:center;
	top:0px;
	left:0px;
	right:0px;
}
.nivo-caption a {
	display:inline-block;
	width:774px;
	background:#ffffff;
	padding:93px 0 132px;
}
.nivo-caption h2 {
	font-size:120px;
	font-family: 'Grand Hotel', cursive !important;
	line-height:.8em !important;
	text-transform:none;
	font-weight:normal;
	color:#668359;
	letter-spacing:0px;
}
.nivo-caption h2 span {
	position:relative;
	display:inline-block;
}
.nivo-caption h2 span:after {
	position:absolute;
	left:17px;
	right:10px;
	bottom:-4px;
	border-bottom:8px solid #668359;
	content:"";
}
.nivo-caption h3 {
	font-size:80px;
	color:#191919;
	font-weight:bold;
	padding-top:15px;
	line-height:1em;
	margin-top:20px;
	letter-spacing:0px;
}
.nivo-caption h3 span {
	display:inline-block;
	position:relative;
	text-transform:none;
	letter-spacing:0px;
}
.nivo-caption h3 span:after {
	position:absolute;
	left:17px;
	right:10px;
	bottom:-6px;
	border-bottom:8px solid #191919;
	content:"";
}

.caption_wrapper_2 h2 span {
	color:#d69e45;
}
.caption_wrapper_3 h2 span {
	color:#bc5863;
}
.nivo-caption .caption_wrapper_2 h2 span:after {
	border-color:#d69e45;
}
.nivo-caption .caption_wrapper_3 h2 span:after {
	border-color:#bc5863;
}

.nivo-controlNav {
	text-align: center;
	position: absolute;
	left:0;
	right:0px;
	bottom: 0;
	z-index: 10;
	background:#191919;
	height:36px;
}
.nivo-controlNav a {
	display: inline-block;
	cursor: pointer;
	width:15px;
	height:15px;
	border-radius:50%;
	background:#ffffff;
	position:relative;
	z-index:1;
	margin:11px 4px 0;
}
.nivo-controlNav a span {
	display: none;
}
.nivo-controlNav a i {
	display: block;
	position:absolute;
	top:0px;
	left:0px;
	bottom:0px;
	width:0px;
	
-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;
	;
	overflow:hidden;
}
.nivo-controlNav a:hover i {
	width:100%;
}
.nivo-controlNav a i:before {
	display:block;
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	bottom:0px;
	width:15px;
	border-radius:50%;
	background:#668359;
}
/* .nivo-controlNav a:hover, */
.nivo-controlNav a.active {
	background:#668359;
}
.nivo-controlNav a.active:hover i {
	width:0px;
} 
.nivo-controlNav a.active {
	cursor: default;
}



/* CUSTOM HEADER */
.custom_header a {
	display:block;
	position:relative;
}
.custom_header a:after {
	border:1px solid transparent;
	position:absolute;
	left:-5px;
	right:-5px;
	top:-5px;
	bottom:-5px;
	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;
	;
}
.custom_header a:hover:after {
	border:1px solid #ffffff;
}
.custom_header_wr {
	margin-top:7px;
	padding-bottom:42px;
}
.custom_header {
	margin-top:40px;
}
.custom_header img {
	float:left;
	margin-right:18px;
}
.custom_header .ins {
	overflow:hidden;
	display:block;
}
.custom_header .ins h3 {
	color:#ffffff;
	text-transform:uppercase;
	line-height:1.1em;
	padding-top:13px;
}
.custom_header .ins h3 span {
	display:block;
	font-weight:300;
	text-transform:none;
}
.custom_header .ins p {
	margin:9px 0px;
	color:#ffffff;
	letter-spacing:.6px;
}



/* 8.4 SHOWCASE */






































#showcase {
	max-width:1920px;
	margin:0px auto;
	margin-bottom:220px;
}
#showcase > .row {
	background:#191919;
	margin-left:0px;
	margin-right:0px;
}

.custom_showcase {
	padding:0px;
	background:#191919;
}
.custom_showcase a {
	display:block;
	background:#000;
	position:relative;
	overflow:hidden;
}
.custom_showcase img {
	width:100%;
}
.custom_showcase .ins {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	text-align:center;
	padding-top:11%;
	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;
	;
}
.custom_showcase h3 {
	color:#ffffff;
	font-weight:300;
	text-align:center;
	letter-spacing:7px;
}
.custom_showcase h3 span {
	display:block;
	 color:#ffffff;
	font-weight:700;
}
.custom_showcase a:after {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	background:#000;
	content:"";
	z-index:0;
	opacity:.7;
	
-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:hover:after {
	left:20px;
	right:20px;
	top:20px;
	bottom:20px;
	border:10px solid #ffffff;
}
.custom_showcase a:hover .ins {
	-ms-transform: scale(.7);
	-webkit-transform: scale(.7);
	transform: scale(.7);
}

.custom_showcase__4 {
	background:transparent;
}
.custom_showcase__4 .ins {
	background:#191919;
	border-top:1px solid #262626;
	text-align:center;
	position:relative;
	position:relative;
	padding-top:23px;
	padding-bottom:23px;
}
.custom_showcase__4 .showc_btn {
	position:relative;
	text-align:center;
}
.custom_showcase__4 .showc_btn a {
	display:inline-block;
	background:#191919;
	text-transform:uppercase;
	font-weight:300;
	color:#ffffff;
	margin-top:4px;
	padding:11px 5px 15px;
	letter-spacing:3px;
	width:170px;
}
.custom_showcase__4 .showc_btn:before,
.custom_showcase__4 .showc_btn:after {
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:50%;
	margin-right:90px;
	content:"";
	background:#191919;
}
.custom_showcase__4 .showc_btn:after {
	left:50%;
	right:0px;
	margin-left:90px;
	margin-right:0px;
}

.title1 {
	font-family: 'Grand Hotel', cursive !important;
	font-size:80px;
	text-transform:none;
	letter-spacing:0px;
	color:#ffffff;
}
.title1 span {
	position:relative;
	display:inline-block;
	font-weight:300;
}
.title1 span:after {
	position:absolute;
	left:8px;
	right:8px;
	bottom:18px;
	border-bottom:8px solid #ffffff;
	content:"";
}
.custom_showcase__4 h3 {
	margin-top:-3px;
}

.custom_showcase__4 a:after {
	display:none;
}
.custom_showcase__4 .showc_btn a {
	opacity: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;
	;
	overflow:visible;
}
.custom_showcase__4 .showc_btn a:hover {
	opacity:.7;
}



/* CUSTOM BOTTOM */

#custom_bottom {
	margin-top:26px;
	overflow:hidden;
	position:relative;
	z-index:1;
	overflow:hidden;
	background:#000000;
	text-align:center;
	color:#ffffff;
}
#custom_bottom .parallax_img {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	opacity:.3;
}
#custom_bottom h3 {
	color:#ffffff;
	font-weight:bold;
	letter-spacing:3px;
	letter-spacing:4px;
}
#custom_bottom h4 {
	font-weight:300;
	font-size:24px;
	color:#ffffff;
	margin-top:-5px;
	letter-spacing:4px;
}
.custom_bottom {
	text-align:center;
	margin-top:37px;
}
.custom_bottom .ins {
	display:block;
	padding:0 10px;
	position:relative;
}
.custom_bottom .ins:hover img {
	-ms-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.custom_bottom img {
	margin-bottom:10px;
	
-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_bottom p {
	color:#ffffff;
	margin:10px 0;
	font-weight:300;
	padding: 0px 40px;
	letter-spacing: 0.5px;
}
.custom_bottom .btn {
	color:#ffffff;
	border-bottom-color:#ffffff;
	margin-top:6px;
}
.custom_bottom .btn:hover {
	color:#668359;
	border-bottom-color:#668359;
}

.custom_bottom__4  {
	margin-top:47px;
	color:#bebebe;
}
.custom_bottom__4 > div,
.custom_bottom__4 > p {
	padding: 0 40px;
}
.custom_bottom__4 .title1 span:after {
	border-bottom:4px solid #bebebe;
	bottom:25px;
}
.custom_bottom p {
	color:#bebebe;
}
.text1 {
	text-transform:uppercase;
}
.bottom_btn {
	display: inline-block;
	background: #191919;
	text-transform: uppercase;
	font-weight: 300;
	color: #ffffff;
	margin-top: 18px;
	padding: 11px 5px 15px;
	letter-spacing: 3px;
	width: 170px;
	border:4px solid #ffffff;
	border-bottom:0px;
	
-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_bottom__4 .bottom_btn:hover {
	opacity:1;
	background:#668359;
	color:#ffffff;
}



/* SOCIAL BLOCKS BOTTOM */
#instafeed {
    margin-top:11px;
}
#instafeed a {
    width: 81px;
    height: 81px;
    display: inline-block;
    margin: 0 15px 15px 0;
    border: 1px solid #e8e8e8;
}

#social_bottom .fb_iframe_widget {
    width: 100% !important;
    overflow: hidden;
}

.social_bottom  {
	margin-top:50px;
}
.social_bottom h3 {
	padding-bottom:20px;
}



/* 8.5 MAIN PRODUCT LISTING */

.product_listing_main .product {
	margin: 0 0 0 0;
}

.product_listing_main .product_img {
	padding-bottom:22px;
}
.product_listing_main .product_img a {
	display: block;
	position: relative;
	overflow:hidden;
	max-height:254px;
}
.product_listing_main .product_img img {
	background-color: #ffffff;
	position: relative;
	z-index: 1;
}
.product_listing_main .product_img .img__2 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 8;
	opacity: 0;
}
.product .product_img a {
	background:#000000;
	display:block;
}
.product .product_img a img {
	opacity: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;
	;
	width:100%;
}
.product .product_img a:hover img {
	opacity:.8}


.product_listing_main .product_img span.product_badge {
	display: block;
	padding: 5px 10px;
	color: #ffffff;
	position: absolute;
	top: 0;
	z-index: 9;
}
.product_listing_main .product_img span.new {
	background: #191919;
	left: 0;
}
.product_listing_main .product_img span.sale {
	background: #668359;
	right: 0;
}
.product .product_name {
	min-height:40px;
}

.product_listing_main .product_price {
	padding-top:14px;
}
.product .product_price .money {
	font-size:24px;
}
.product_listing_main .product_links {
	margin-top:8px;
}
.product_listing_main .product_links form {
	display: inline-block;
}



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

.homepage_carousel .product {
	margin: 30;
}

.index-scope .bx-controls a {
	width: 30px;
	height: 30px;
	display: block;
	overflow: hidden;
	margin: -15px 0 0 0;
	text-align: center;
	position: absolute;
	top: 50%;
	z-index: 99;
	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;
	
}

.index-scope .bx-controls a:hover {
	background: rgba(25,25,25,1);
}

.index-scope .bx-controls a:before {
	display: block;
	font: 12px/31px 'FontAwesome';
	color: #ffffff;
}

.index-scope .bx-prev:before {
	content: '\f053';
	padding: 0 0px 0 0;
}
.index-scope .bx-next:before {
	content: '\f054';
	padding: 0 0 0 3px;
}

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



/* 8.6 FOOTER */
footer {
	margin-top:29px;
	padding-bottom:40px;
}
footer,
footer a {
	color:#191919;
}

footer > div {
	border-top: 1px solid #e8e8e8;
}

.footer_block {
	padding-top:33px;
}
.footer_block ul {
	margin-top:25px;
}
.footer_block ul li + li {
	margin-top:7px;
}
.footer_block ul li a {
	position:relative;
	
-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;
	;
	text-transform:uppercase;
	font-weight:bold;
	letter-spacing:2px;
}


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

footer h4 {
	font-size:24px;
	letter-spacing:2px;
}

footer .copyright {
	margin-top:80px;
}
footer .copyright p {
	font-weight:bold;
	color:#bebebe;
	letter-spacing:1px;
}
footer .copyright a {
	color:#bebebe;
}
footer .copyright a:hover {
	color:#668359;
}



/***************************************************************************
                           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: #3e3e3e;
	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: #668359;
	color: #ffffff;
}

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

.sort_by {
	margin: 15px 0;
	padding: 10px 0;
	border: 1px solid #e8e8e8;
	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;
	letter-spacing:1px;
	color:#ffffff;
	background:#668359;
	padding:10px 15px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.breadcrumb a,
.breadcrumb > li + li:before {
	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;
	;
}
.breadcrumb a:hover {
	color:#191919;
}



/* 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: #3e3e3e;
	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: #668359;
	color: #ffffff;
}
#pagination span.current {
	cursor: default;
}



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


.column .widget h3.widget_header {
	margin: 0;
	padding: 0 0 5px 0;
	letter-spacing:3px;
	font:700 18px Roboto Condensed;
	color: #3e3e3e;
	text-transform: uppercase;
}


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



/* 10.2 SIDEBAR PRODUCT LISTING */
.product_listing_sidebar .product {
	margin-top:30px;
}
.product_listing_sidebar .product_img {
	float:left;
	margin-right:15px;
}
.product_listing_sidebar .product_info {
	overflow:hidden;
	text-align:left;
}

.product_listing_sidebar .product_name {
	min-height:0px;
}

.product_listing_sidebar .product_desc {
	padding:5px 0px;
}


.product_listing_sidebar .product_desc {
	padding:5px 0px;
}



.product_listing_sidebar .product_links form {
  display: inline-block;
}



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

#searchresults {
	margin: 0;
}
#searchresults .search-form {
	margin: 15px 0 0 0;
}
#searchresults .search-form input {
	width: 100%;
	float: left;
	padding: 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: #668359;
}
#searchresults .search-form button:hover {
	color: #3e3e3e;
}
#searchresults .search-form button i {
	line-height: 32px;
}

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

#searchresults ol {
	list-style-type: none;
	padding: 15px 0 0 0;
}
#searchresults ol li {
	overflow: hidden;
	margin: 0;
	padding: 15px 0;
}
#searchresults ol li + li {
	border-top: 1px solid #e8e8e8;
}
#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 {
	border: 1px solid #e8e8e8;
}

.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: #191919;
}
#elevatezoom_gallery a:hover img {
	opacity:.8;
}
#elevatezoom_gallery a img {
	opacity: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_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: 24px;
}



.product_wrap .product-price {
	margin: 15px 0 0 0;
	padding: 0;
	font-size: 20px;
}
.product_wrap .product-price .money {
	margin: 0 5px 0 0;
}

#purchase label {
	display: inline-block;
	margin: 10px 0px 0 0;
	padding: 0px 0px 0px;
    !important;
	line-height: 37px;
}

#purchase #quantity {
	width: 50px;
	height: 35px;
	display: inline-block;
	margin: 0px 0 0 0;
	padding: 9px 0 0px;
	outline: none;
	text-align: center;
}

#purchase .variants-wrapper {
	display: inline-block;
	margin: 10px 0px 0 0;
}

#purchase .variants-wrapper select {
	width: auto;
	height: 35px;
	max-width: 150px;
	padding: 0px 0px 0px;
    margin-top: 10px;
    margin-left: auto;
  	margin-right: auto;
}

#purchase #add-to-cart {
	margin: 10px 0px 0 0;
}


    
.product_wrap .product_details {
	margin: 15px 0 0 0;
	padding: 10px 0 15px 0;
	border: 1px solid #e8e8e8;
	border-width: 1px 0;
}
.product_wrap .product_details > div {
	padding: 5px 0 0 0;
}

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



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



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



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

ul.product_listing_related {
	list-style-type: none;
}
ul.product_listing_related .product_name {
	min-height:0px;
}



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

/* 13.1 POSTS LISTING */
#blog {
}

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

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

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

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

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



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

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

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

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

.comment-form #comment-body {
	min-height: 100px;
	margin-bottom: 15px;
}

.article_comments-form {
	padding-bottom: 10px;
	margin-top: 1em;
	padding-top: 10px;
}

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

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



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

/* 14.1 LOG IN */

/* 14.2 ACCOUNT */

.customer_name {
	text-transform: none !important;
}
h2.customer_name {
	font-size:20px;
}
.customer_name .divider {
	margin: 0 7px;
}
.customer_name .email {
	color: #afafaf;
}
.customer_name a {
	float: right;
}



/* 14.3 ADDRESSES */

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

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


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

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

.cart-list .row h3.item_vendor {
	border-bottom: 1px solid #e8e8e8;
	color: #bebebe;
	font-size:20px;
}

.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;
	font-size:20px;
}

.cart_subtotal h3 {
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid #e8e8e8;
  	font-size:25px;
}
.cart_subtotal h3 .money {
	float: right;
	font-size: inherit;
}

.cart_buttons {
	margin: 30px 0;
}

.cart_instructions textarea {
	width: 100%;
}

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



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



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

.contact-scope #google_map {
	margin: 15px 0;
}

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

.contact-form textarea {
	width: 100%;
}
#logo a {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
}