/***********************************************************

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;
}
b, strong {
	font-weight: bold;
}
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 #919185;
}
.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(0,0,0,.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-size: 12px;
    color: #bababa;
	font-family: Arial, Helvetica, sans-serif;
	background:#353535;
}



/* 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;
	text-transform: uppercase;
}

.column_center h2,
.column_center h3,
.column_center h4 {
	font-size: 15px;
}

.column_center h5,
.column_center h6 {
	font-size: 13px;
}

.column_center .page_heading {
	margin: 0;
	padding: 21px 20px 23px 32px;
	font: 20px Open Sans;
	background:#464646;
	color: #ffffff;
}
.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: #d50b0b;
	text-decoration: none;
}
a:hover, a:focus {
	color: #464646;
}



/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product_name {
	font-weight: bold;
	font-size: 14px;
	color: #344046;
	text-transform:uppercase;
	padding-bottom:3px;
}
.product_name a {
	font-weight: bold;
	color: #344046;
	
-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: #d50b0b;
}


.product_desc {
	font-size: 12px;
	color: #bababa;
}


.money {
	color: #d50b0b;
}
.compare-at-price {
	text-decoration: line-through;
	color:#6a6a65;
}



/* 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,
.column_center h2,
h2 {
	font: 20px Open Sans;
	color: #464646;
}
.rte h3,
.column_center h3,
h3 {
	font-size: 18px;
}
.rte h4,
.column_center h4{
	font-size: 14px;
	color:#d50b0b;
}
.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: Open Sans;
	text-transform:uppercase;
	font-weight:600;
}
.title1 {
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 300;
	color: #d50b0b;
	font-family: Open Sans;
	line-height:1em;
}
.title2 {
	font-size: 30px;
	font-weight: 300;
	color: #ffffff;
	font-family: Open Sans;
	line-height:1em;
}
.title3 {
	font-size: 100px;
	font-weight: 300;
	color: #464646;
	font-family: Open Sans;
	line-height:1em;
}
.title4 {
	font-size: 40px;
	font-weight: 300;
	text-transform: uppercase;
	color: #a1a194;
	font-family: Open Sans;
	line-height:1em;
}


/***************************************************************************
                           5. FORMS & COMPONENTS
***************************************************************************/

/* 5.1 FORMS */
label {
	font-weight: bold;
	font-size: 12px;
}

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 #919185;
	font: normal 13px 'Arial';
	color: #bababa;
	-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-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 {
	background: #464646;
	border: none !important;
	color: #ffffff;
	padding:14px 16px 13px;
	text-transform:uppercase;
	font-weight:300;
	border-radius: 0 !important;
	font-size:11px;
	box-shadow: none !important;
	
-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;
	;
}

.btn a {
	padding: 0 !important;
	border: none !important;
}

.btn-cart {
	background: #d50b0b;
	border: none !important;
}

.btn:hover,
.btn:hover a,
.btn-info:hover,
.btn-primary:hover {
	background: #6a6a65;
	color:#ffffff;
	border: none !important;
}

.btn:focus {
	color:#ffffff;
}

.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info,
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
	background: #6a6a65;
	color:#ffffff;
	border: none !important;
}

/***************************************************************************
                           6. GLOBAL PAGE LAYOUT
***************************************************************************/

html, body {
	height: 100%;
}

.page_preloader {
	width: 100%;
	height: 100%;
	background: url(bx_loader40ef.gif?17085342891052072798) 50% 50% no-repeat #ffffff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
}

#wrapper {
	position: relative;
	z-index: 1;
	background:  #ffffff;
	}
#wrapper2 {
	overflow: hidden;
}

.container {
	padding: 0;
}

#main {
	margin-top: 30px;
}

#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 {
background-image:url(top.png);
background-repeat:repeat;
background-position:top;
	
}
.header_top {
	background:#333333;
	height:40px;
}

#logo {
	float:left;
	margin-top:5px;
}
#logo a {
	display:inline-block;
	font-weight:300;
	font-family:Open Sans;
}
#logo img {
	float:left;
	margin-top:2px;
	margin-right:2px;
}
#logo b {
	font-size: 70px;
	color:#ffffff;
	font-weight:300;
	display:block;
	line-height:1em;
	
-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 span {
	text-transform:uppercase;
	color:#a1a194;
	font-size:15px;
	margin-top:-6px;
	display:block;
	padding-left:5px;
	
-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 .logo_left {
	float:right;
}
#logo a:hover b,
#logo a:hover span {
	color:#d50b0b;
}

.header_user {
	float:left;
	margin-top:12px;
	margin-left:39px;
}
.header_user li {
	display:inline-block;
	padding-right:5px;
	padding-right:14px;
}
.header_user li a {
	color:#fff;
	text-transform:uppercase;
	font-size:11px;
	
-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:hover {
	color:#d50b0b;
}
.header_user li a i {
	margin: 0 5px 0 0;
	line-height: 1.5em;
}


.header_currency {
	float:right;
	position:relative;
	background: #545452;
}
.header_currency .jq-selectbox {
	width: 125px;
	line-height: 24px;
}
.header_currency .jq-selectbox__select {
	height: 40px;
	padding: 12px 14px 0 5px;
	text-align:center;
}
.header_currency .jq-selectbox__select-text {
	color: #ffffff;
}
.header_currency .jq-selectbox__trigger i {
	right: 18px;
	top: 13px;
}

.header_currency:after {
	top:50%;
	bottom:50%;
	right:50%;
	left:50%;
	background:#d50b0b;
	content:"";
	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;
	;
}
.header_currency:hover:after {
	top:0;
	bottom:0;
	right:0;
	left:0;
}

.header_currency .jq-selectbox__dropdown {
	width: 100% !important;
	background: #6a6a65;
	top: 40px !important;
}
.header_currency .jq-selectbox__dropdown ul {
}
.header_currency .jq-selectbox__dropdown ul li {
	background: #6a6a65;
	
-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;
	;
	text-align:center;
	padding:5px 5px;
}

.header_currency .jq-selectbox__dropdown ul li:hover,
.header_currency .jq-selectbox__dropdown ul li.sel {
	background: #a1a194;
	color: #000000;
}

.header_center {
	padding-bottom:30px;
}

.header_cart {
	float:right}
.header_cart a {
	position: relative;
	display:block;
	margin-top:20px;
	min-width: 244px;
	padding: 24px 10px 25px 30px;
	background: #545452;
	
-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 i {
	width:67px;
    display: block;
    position:absolute;
    top: 0;
    bottom: 0;
    left: 0;
    font-weight: 300;
	background: #d50b0b;
	color:#ffffff;
	font-size:40px;
	text-align:center;
	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;
	;
}
.header_cart a:hover i {
	left: 100%;
	margin-left: -67px;
}

.header_cart a b {
	color: #ffffff;
	margin-right:8px;
  	padding-left:63px;
  	
-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 span {
	text-transform: uppercase;
	width: 67px;
	color: #a1a194;
	
-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;
	padding-right:2px;
}
.header_cart a:hover b {
	padding-left: 0px;
}
.custom_header_right {
	float:left;
}

.header_search {
	float:right}
.header_search form {
	width: 260px;
	padding-right:2px;
	box-sizing:border-box;
	background: #a1a194;
	color:#000;
	position:relative;
}
.header_search #search-field {
	height: 40px;
	padding-top:15px;
	padding-bottom:20px;
	width: 100%;
	background:transparent;
	border:none;
	color:#000000;
	overflow:hidden;
}
.header_search #search-submit {
	position: absolute;
	height:40px;
	overflow:hidden;
	width:2px;
	right: 0;
	top: 0;
	bottom: 0;
	vertical-align: middle;
	color: #000;
	font-size: 27px;
	
-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;

	text-align:left;
/*   	width:100px; */
  	padding-left:2px;
  	margin-left:0px;
/*   	text-align:center; */
}
.header_search #search-submit i {
	line-height:38px;
	
-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_search #search-submit:hover i {
	margin-top:62px;
}
.header_search #search-submit:before {
	content: "\f002";
	top:-100%;
	height:100%;
	width:100%;
	color:#d50b0b;
	position:absolute;
	  display: inline-block;
	
-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;
	;
	line-height:34px;
	padding-top:13px;
  	padding-left:2px;
	font-family: FontAwesome;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	}
.header_search #search-submit:hover:before {
	top:0px;
}


.custom_header1 {
	float:right;
	padding-top:68px;
	margin-right:60px;
}
.custom_header1 img {
	float:left;
}

.custom_header1 .title2 {
	margin-top:6px;
}
.custom_header1 img {
	margin-right:16px;
	margin-top:3px;
}



/* 8.2 MEGAMENU */
#megamenu {
	position: relative;
	z-index: 999;
}
#megamenu > div {
	background:#a1a194;
}


.sf-menu {
	position: relative;
}
.sf-menu > li {
	float: left;
	background-image:url(top-bg-bt.png);
	width:16.667%;
	text-align:center;
}
.sf-menu > li > a {
	padding:5px 0px 5px;
	display: block;
	line-height: 36px;
	text-transform: uppercase;
	position: relative;
	color:#000;
	font-size:14px;
	font-weight:600;
	font-family:Open Sans;
	position:relative;
	z-index:1;
}
.sf-menu > li + li > a {
	border-left:1px solid #919185;
}
.sf-menu > li.sfHover > a,
.sf-menu > li > a.active {
	background:#d50b0b;
}
.sf-menu > li > a.sf-with-ul:after {
    position: absolute;
    content:"";
    left: 50%;
    margin-left: -2px;
    right: 0;
    bottom: 30px;
    -moz-transition: top 0.3s ease-out;
    -o-transition: top 0.3s ease-out;
    -webkit-transition: top 0.3s ease-out;
    border: 4px solid;
    border-color: #ffffff transparent transparent transparent;
    width: 0;
    height: 0;
}

.sf-menu .menu_badge {
	display: block;
	padding: 2px 5px;
	background: #d50b0b;
	font-size: 9px;
	color: #ffffff;
	text-transform: uppercase;
	position: absolute;
	right: 0px;
	top: -10px;
}

.sf-menu > li > ul {
	width: 100%;
	background: #6a6a65;
	position: absolute;
	left: 0;
	top: 50px;
	display: none;
	text-align:left;
}
.sf-menu .submenu {
	padding: 20px;
}
.sf-menu .submenu .product_img a {
	background:#ffffff;
	display:block;
	padding: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 .submenu .product_img a:hover {
	background:#ececea;
}
.sf-menu .submenu .inside {
	background:#f4f4f4;
}
.sf-menu .submenu .prod_info {
	padding:20px;
}
.sf-menu .submenu .product_price .money {
	font-size:25px;
}
.sf-menu .submenu .product_price .compare-at-price {
	font-size:18px;
}

#animate-box {
    background: #d50b0b;
    position:absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 0;
    padding: 0 20px;
    z-index: 0;
}



#megamenu.isStuck {
	background:#a1a194;
	border-bottom:1px solid #ffffff;
}
#megamenu.isStuck .sf-menu {
	border-left:1px solid #919185;
	border-right:1px solid #919185;
}
#megamenu.isStuck .sf-menu > li > a {
	padding:6px 0px 5px;
}
#megamenu.isStuck .sf-menu > li > a.sf-with-ul:after {bottom:9px;}
#megamenu.isStuck + .pseudoStickyBlock {height:61px !important;}
.megamenu_wrapper {min-height:10px;}
#megamenu.isStuck .sf-menu > li > ul {top:61px;}

/* CUSTOM LINK */

/* CATALOG */
.megamenu__2 .submenu {
	
}
.megamenu__2 .submenu > div > div + div {
	border-left:1px solid #919185;
}
.megamenu__2 h3 a {
	color:#ffffff;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
}
.megamenu__2 h3 a:hover {
	color:#a1a194;
}
.megamenu__2 h3 + ul {
	padding-bottom:15px;
}
.megamenu__2 h3 + ul li a {
	color:#ffffff;
}
.megamenu__2 h3 + ul li a:hover {
	color:#ffffff;
}

.megamenu__2 h3 + ul li + li {
	padding-top:4px;
}
.megamenu__3 img {background:#ffffff;}
.megamenu__3 .btn:hover {background:#000000;}
.megamenu__3 a { 
-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;
	;}

/* 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;
}

/* 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;
}

.slider_wrap {
	max-width:1583px;
	margin:0 auto;
	min-height:400px;
}
.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: relative;
	z-index: 1;
}

.nivo-caption {
	position: absolute;
	left: 0;
	bottom: 0;
	right:0px;
	z-index: 8;
	display: none;
}
.nivo-caption .container {
	margin:0 auto;
	padding-right:44%;
}
.nivo-caption h2 {
	font-size:100px;
	color:#d50b0b;
	font-weight:300;
	line-height:109px;
	text-transform:none;
}
.nivo-caption h3 {
	font-size:40px;
	line-height:40px;
	color:#464646;
	font-weight:300;
	text-transform:uppercase;
	margin-bottom:38px;
}
.nivo-caption p {
	font-size:14px;
	font-family:Open Sans;
	color:#bababa;
}
.slide-2, .slide-4 {
	padding-left:48% !important;
	padding-right:0% !important;
}

.nivo-controlNav {
	width: 100%;
	text-align: right;
	position: absolute;
	left: 0;
	top: 59px;
	z-index: 10;
	padding-right:210px;
}
.nivo-controlNav a {
	display: inline-block;
	cursor: pointer;
	width:15px;
	height:15px;
	border-radius:50%;
	background:#ececea;
	box-sizing:border-box;
	border:0px solid #d50b0b;
	
-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;
	;
}
.nivo-controlNav a + a {
	margin: 0 0 0 7px;
}
.nivo-controlNav a span {
	display: none;
}
.nivo-controlNav a i {
	display: none;
}
.nivo-controlNav a.active,
.nivo-controlNav a:hover {
	border-width:7px;
	border-top-width:8px;
}
.nivo-controlNav a.active {
	cursor: default;
}
.capture_price span {
	font-size:20px;
	font-weight:600;
	font-family:Open Sans;
	color:#464646;
}
.slider_btn {
	position:relative;
	margin-top:86px;
	width:118px;
	height:118px;
	background:#464646;
	text-align:center;
	font-size:52px;
	color:#ffffff;
}
.slider_btn i {
	padding-top:32px;
	z-index:1;
	position:relative;
}

.slider_btn span {
	position:absolute;
	left:50%;
	right:50%;
	top:50%;
	bottom:50%;
	background:#d50b0b;
	display:block;
	
-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;
	;
	z-index:0;
}
.slider_btn:hover span {
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
}

.capture_price .text1 {
	font-size:35px;
	font-weight:300;
	font-family:Open Sans;
	color:#d50b0b;
}
.capture_price {
	padding-top:7px;
}

/* 8.4 SHOWCASE */

.homepage_custom__1 {
	
    background-image: url(custom_showcase1_bg40ef.jpg?17085342891052072798);
	    background-position: 50% 0%;
	    background-repeat: repeat-y;
	    position:relative;
	
}
.custom_showcase {
	margin-top:32px;
}
.custom_showcase a {
	display:block;
	position:relative;
}
.homepage_custom__1 .title4 {
	margin-top:6px;
}
.homepage_custom__1 .link {
	color:#ffffff;
	font-size:130px;
	position:absolute;
	right:0px;
	top:50%;
	margin-top:-58px;
}
.homepage_custom__1 a:after {
	content:"\f054";
	position:absolute;
	width:0px;
	overflow:hidden;
	top:0px;
	left:0px;
	color:#d50b0b;
	
-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;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	}
.homepage_custom__1 a:hover:after {
	width:100%}
.homepage_custom__1 > .inside {
	position:relative;
	padding:89px 85px 115px 0;
}
.custom_showcase img {
	opacity:.5;
	
-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 a:hover img {
	opacity:.2;
}


.custom_showcase__2 a {
	background:#a1a194;
}
.custom_showcase__3 a {
	background:#464646;
}
.custom_showcase__4 a {
	background:#d50b0b;
}
.custom_showcase .ins {
	position:absolute;
	top:50%;
	right:0px;
	left:0px;
	text-align:center;
	margin-top:-38px;
	
-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 {
	color:#000;
	text-shadow: 1px 2px #FFF;
	font-weight:600;
	font-size:30px;
	font-family:Open Sans;
	line-height:1.2em;
	text-transform:none;
}
.custom_showcase h4 {
	color:#000000;
	font-weight:300;
	font-size:20px;
	font-family:Open Sans;
	text-transform:uppercase;
	line-height:1.2em;
}
.custom_showcase a:hover .ins {
	-ms-transform: scale(1.2);
	 /* IE 9 */
    -webkit-transform: scale(1.2);
	 /* Chrome, Safari, Opera */
    transform: scale(1.2);
}

.custom_showcase .arrow {
	overflow: hidden;
	width: 89px;
	height: 88px;
	text-align: center;
	position: relative;
	position:absolute;
	bottom:0px;
	right: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_showcase .arrow i {
	font-size:35px;
	color: #464646;
	z-index:1;
	position:relative;
	float:right;
	margin-top:43px;
	padding-right:9px;
	
-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 .arrow span {
	display: block;
	position: absolute;
	right: -12px;
	bottom: -48px;
	z-index: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;
	;
	width:69px;
	height:130px;
	background:#faf8ce;
	-moz-transform:    rotate(45deg);
	-o-transform:      rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform:         rotate(45deg);
	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865474, M12=-0.7071067811865477, M21=0.7071067811865477, M22=0.7071067811865474, SizingMethod='auto expand')";
}
.custom_showcase a:hover .arrow span {
	width:55px;
	height:125px;
}
.custom_showcase a:hover .arrow i {
	margin-top:50px;
	-ms-transform: scale(0.7) rotate(360deg);
	-webkit-transform: scale(0.7) rotate(360deg);
	transform: scale(0.7) rotate(360deg);
}

.custom_bottom {
	margin-top:20px;
}
.custom_bottom a {
	display:block;
	position:relative;
}
.custom_bottom a span {
	display:block;
	position:absolute;
	left:50%;
	right:50%;
	top:50%;
	bottom:50%;
	opacity:.4;
	border:0px solid #464646;
	background:#000000;
	
-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_bottom a:hover span {
	left:10px;
	right:10px;
	bottom:10px;
	top:10px;
	border-width:5px;
}

/* BLOG */
.homepage_blog {
	position: relative;
	
background: url(homepage_blog_bg40ef.jpg?17085342891052072798) 50% 0 no-repeat;
	

}



/* 8.5 MAIN PRODUCT LISTING */
.product_listing_main .product {
	margin: 30px 0 0 0;
}

.product .prod_inside {
	background:#fafafa;
}
.product .product_info .product_info__inside {
	padding:25px 37px 29px;
}
.product_listing_main .product_img a {
	display: block;
	position: relative;
}
.product .product_img img {
	background-color: #f4f4f4;
	position: relative;
	z-index: 1;
	padding:17px 20px;
	
-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;
	;
}
.product_listing_main .product_img .img__2 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	opacity: 0;
	}
.product .product_img img:hover {
	background-color: #a1a194;
	 }

.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: #000000;
	left: 0;
}
.product_listing_main .product_img span.sale {
	background: #d50b0b;
	right: 0;
}

.product_listing_main .product_price {
	padding-top:10px;
}
.product .product_price .money {
	font-size:25px;
}
.product .product_price .compare-at-price {
	font-size:18px;
}

.product_listing_main .product_links {
	padding-left:1px;
}
.product .product_links form {
	display: inline-block;
	width:50%;
	padding-left:1px;
}
.product .product_links > a {
	width:50%;
	float:left;
}
.product_links form .btn {
	width:100%;
}



/* HOMEPAGE CAROUSEL */
.index-scope .bx-wrapper {
	max-width: 100% !important;
	margin: 30px 0 0 0;
}

.homepage_carousel .product {
	margin: 0;
}

.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(0,0,0,.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(0,0,0,1);
	}

.index-scope .bx-controls a:before {
	display: block;
	font: 12px/31px 'FontAwesome';
	color: #ffffff;
}

.index-scope .bx-prev:before {
	content: '\f053';
	padding: 0 1px 0 0;
}
.index-scope .bx-next:before {
	content: '\f054';
	padding: 0 0 0 1px;
}

.index-scope .bx-prev {
	left: -50px;
}
.index-scope .bx-next {
	right: -50px;
}



/* 8.6 FOOTER */
footer {
	background:#464646;
	margin-top:20px;
	padding-top:15px;
}

.footer_block h4 {
	font-size:18px;
	text-transform:uppercase;
	color:#fff;
	padding-top:30px;
}
.footer_block ul {
	padding-top:15px;
}
.footer_block ul li {
	padding-top:4px;
}
.footer_block ul li a {
	text-transform:uppercase;
	color:#fff;
	
-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;
	;
}

.footer_block ul li.active a,
.footer_block ul li a:hover {
	color:#ffffff;
}

.footer_block__4 {
	
	color:#a1a194;
}
.footer_block__4 ul {
	padding-top:10px;
}
.contacts_company {
	color:#d50b0b;
	font-size:25px;
	font-weight:600;
}
.footer_block__4 li > i {
	color:#d50b0b;
	font-size:15px;
	min-width:30px;
}
.footer_block__4 .contacts_address {
	padding-top:5px;
}
.footer_block__4 .contacts_email {
	text-transform:lowercase;
	padding-top:11px;
}
.footer_block__4 .contacts_phone {
	padding-top:14px;
}
.footer_block__4 .contacts_phone i {
	font-size:20px;
}

h4.title_socials {
	float:left;
	padding-top:20px;
}
.footer_block__4 .socials {
	padding-top:12px;
}
.footer_block__4 .socials li {
	display:inline-block;
	padding-left:14px;
}
.socials i {
	font-size:30px;
	color:#a1a194;
	
-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;
	;
}
.socials a:hover i {
	color:#ffffff;
	
-ms-transform: scale(1.2) rotate(360deg);
	-webkit-transform: scale(1.2) rotate(360deg);
	transform: scale(1.2) rotate(360deg);
	}
.footer_block__4 .socials li a {
	display:block;
}

footer .copyright {
	background:#353535;
	margin-top:62px;
}
footer .copyright p {
	margin:0px;
	padding:24px 0px 40px;
	font-size:11px;
	color:#a1a194;
}
footer .copyright a {
	 
-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;
	;
	 }
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: #464646;
	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;
	;
}

ul.tags li a:hover,
ul.tags li.active a {
	background: #d50b0b;
	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 #919185;
	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: 0 0 15px 0;
	background: #a1a194;
	color:#ffffff;
	-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: #000000;
}


/* 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 15px;
	background: #464646;
	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 a:hover,
#pagination span.current {
	color: #ffffff;
	background: #d50b0b;
}
#pagination span.current {
	cursor: default;
}



/***************************************************************************
                           10. SIDEBAR WIDGETS
***************************************************************************/

.column .widget {
}

.column .widget h3.widget_header {
	margin: 0;
	padding: 21px 20px 23px 32px;
	font-weight:normal;
	background:#464646;
	color: #ffffff;
}

/* 10.1 LINKS LIST */
.column .widget ul.list {
	background:#fafafa;
	 padding:15px 25px;
	margin-top:15px;
}
.column .widget ul.list li {
	padding: 10px 0;
}
.column .widget ul.list li + li {
	border-top: 1px solid #ececea;
}
.column .widget ul.list li a {
	color:#464646;
	
-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;
	;
}

.column .widget ul.list li.active a,
.column .widget ul.list li a:hover {
	color:#d50b0b;
}


/* 10.2 SIDEBAR PRODUCT LISTING */
.product_listing_sidebar .product {
	margin-top:20px;
}

.product_listing_sidebar .product_links form {
	display: inline-block;
}



/***************************************************************************
                           11. SEARCH RESULTS PAGE
***************************************************************************/

#searchresults {
	margin: 0;
}
#searchresults .search-form {
	margin: 15px 0 0 0;
}
#searchresults .search-form input {
	width: 100%;
	height:40px;
	float: left;
	padding: 10px 34px 10px 10px;
	background:#a1a194;
	color:#fff;
	border:none;
}
#searchresults .search-form button {
	width: 34px;
	height: 34px;
	float: left;
	margin: 0 0 0 -34px;
	background: none;
	border: none;
	font-size: 20px;
	color: #d50b0b;
}
#searchresults .search-form button:hover i {
	color: #464646;
}
#searchresults .search-form button i {
	line-height: 40px;
	color:#ffffff;
}

#searchresults h3 {
	margin: 0;
	padding: 0;
} 

#searchresults ol {
	list-style-type: none;
	padding: 15px 0 0 0;
	border-bottom: 1px solid #919185;
}
#searchresults ol li {
	overflow: hidden;
	margin: 0;
	padding: 15px 0;
	border-top: 1px solid #919185;
}
#searchresults ol li .search-result_image {
	float: left;
	margin-right: 15px;
}
#searchresults ol li .search-result_container {
	padding: 15px 0 0 0;
}



/***************************************************************************
                           12. PRODUCT PAGE
***************************************************************************/

.product_wrap {
}



/* 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: #f4f4f4;
}

.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: #f4f4f4;
}

.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(0,0,0,.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(0,0,0,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: 24px;
}
.product_wrap .product-price .compare-at-price {
	font-size: 18px;
}

#purchase label {
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 0 !important;
	line-height: 37px;
}
#purchase #quantity {
	width: 50px;
	height: 37px;
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 9px 0 8px;
	outline: none;
	text-align: center;
}

#purchase .variants-wrapper {
	display: inline-block;
	margin: 15px 10px 0 0;
}
#purchase .variants-wrapper select {
	width: auto;
	height: 37px;
	max-width: 150px;
	padding: 9px 6px;
}

#purchase #add-to-cart {
	height: 37px;
	margin: 15px 10px 0 0;
	padding: 8px 15px;
}


    
.product_wrap .product_details {
	margin: 15px 0 0 0;
	padding: 10px 0 15px 0;
	border: 1px solid #919185;
	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;
}


/***************************************************************************
                           13. BLOG
***************************************************************************/

/* 13.1 POSTS LISTING */
#blog {
}

.blog-article {
	padding: 15px 0 0 0;
}

.article_header {
	padding: 15px 0;
	border-bottom: 1px solid #919185;
}
.article_header .product_name {
	font-size:20px;
}
.article_header .product_name a {
	font-size:20px;
}

.blog-article_meta-comments {
	float: right;
	padding: 7px 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: 7px 0 0 15px;
}
.article_meta-tags a {
	text-decoration: underline;
}

.article_date,
.article_meta-tags,
.article_meta {
	font-style: italic;
}



#comments ul {
	list-style-type: none;
}

.comment-form #comment-author,
.comment-form #comment-email,
.comment-form #comment-body {
	width: 100%;
}

.comment-form #comment-body {
	min-height: 100px;
	margin-bottom: 15px;
}

.article_comments-form {
	padding-bottom: 10px;
	margin-top: 1em;
	padding-top: 10px;
}

.section-title {
	margin-bottom: 2px;
	padding-bottom: 8px;
}

.comment-form .row {
	margin-bottom: 1em;
}



/***************************************************************************
                           14. CUSTOMER PAGES
***************************************************************************/

/* 14.1 LOG IN */

/* 14.2 ACCOUNT */

.customer_name {
	text-transform: none !important;
}
.customer_name .divider {
	margin: 0 7px;
}
.customer_name .email {
	color: #bababa;
}
.customer_name a {
	float: right;
	
-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;
	;
}



/* 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 #919185;
}

.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: #d50b0b;
}

.cart-list .row h3.item_vendor {
	border-bottom: 1px solid #919185;
	color: #888;
}

.cart-list .item_price {
	padding: 10px 0 0 0;
}
.cart-list .item_price .price {
	line-height: 37px;
	font-size:20px;
}

.cart-list .item_price label {
	padding: 0;
	line-height: 37px;
}
.cart-list .item_price .input-small {
	width: 60px !important;
	height: 37px;
	display: inline-block;
	padding: 5px;
	text-align: center;
	padding-top:9px;
	padding-bottom:8px;
}

.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 #919185;
}
.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 #919185;
}


.contact-form textarea {
	width: 100%;
}
