/***********************************************************

1. CSS RESET

2. VARIABLES
2.1 GRADIENTS
2.2 CSS3 TRANSITIONS

3. GLOBAL THEME STYLES
3.1 HOVERS

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 NAVIGATION
8.3 NIVOSLIDER
8.4 SHOWCASE
8.5 MAIN PRODUCT LISTING
8.6 FOOTER

9. COLLECTION PAGES
9.1 PAGES CONTENT
9.2 BREADCRUMBS
9.3 COLLECTION LISTING
9.4 PAGINATION

10. SIDEBAR WIDGETS
10.1 LINKS LIST
10.2 SIDEBAR PRODUCT LISTING

11. SEARCH RESULTS PAGE

12. PRODUCT PAGE
12.1 PRODUCT IMAGES
12.2 PRODUCT INFO
12.3 PRODUCT PAGINATION
12.4 RELATED PRODUCTS

13. BLOG
13.1 POSTS LISTING
13.2 SINGLE POST

14. CUSTOMER PAGES
14.1 LOG IN
14.2 ACCOUNT
14.3 ADDRESSES
14.4 ORDERS

15. CART PAGE
15.1 CART PRODUCTS
15.2 GUEST CHECKOUT

16. CONTACTS PAGE

***********************************************************/



/***************************************************************************
                           1. CSS RESET
***************************************************************************/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, 
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, input, textarea, button
{
	margin: 0;
	padding: 0;
	border: 0;
	outline: none !important;
	vertical-align: top;
	background: transparent;
	font-weight: normal;
	line-height: 1.5em;
}

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;
}



/* 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 #c1c0c0;
}
.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.opened {
}
.jq-selectbox.focused {
}

.jq-selectbox__select {
}

.jq-selectbox__select-text {
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.jq-selectbox__trigger i {
	position: absolute;
	top: 0;
	right: 0;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.jq-selectbox__dropdown {
	width: 100%;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}

.jq-selectbox.opened .jq-selectbox__trigger i {
	-webkit-transform: rotate(180deg);
	   -moz-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	     -o-transform: rotate(180deg);
	        transform: rotate(180deg);
	}





















/* 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;
	}



/* 3.1 HOVERS */
.hover__1 {
	overflow: hidden;
	position: relative;
}

.hover__1:before,
.hover__1:after {
	content: '';
	width: 100%;
	height: 50%;
	display: block;
	background: rgba(0,0,0,.2);
	position: absolute;
	left: 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;
	
}

.hover__1:before {
	top: -100%;
}
.hover__1:after {
	bottom: -100%;
}

.hover__1:hover:before {
	top: 0;
}
.hover__1:hover:after {
	bottom: 0;
}



.hover__2 {
	overflow: hidden;
	position: relative;
}

.hover__2:before,
.hover__2:after {
	content: '';
	width: 50%;
	height: 100%;
	display: block;
	background: rgba(0,0,0,.2);
	position: absolute;
	top: 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;
	
}

.hover__2:before {
	left: -100%;
}
.hover__2:after {
	right: -100%;
}

.hover__2:hover:before {
	left: 0;
}
.hover__2:hover:after {
	right: 0;
}



.hover__3 {
	overflow: hidden;
	position: relative;
}

.hover__3:before {
	content: '';
	width: 100%;
	height: 0;
	display: block;
	background: rgba(0,0,0,.2);
	position: absolute;
	left: 0;
	top: 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;
	
}

.hover__3:hover:before {
	height: 100%;
	top: 0;
}



.hover__4 {
	overflow: hidden;
	position: relative;
}

.hover__4:before {
	content: '';
	width: 0;
	height: 100%;
	display: block;
	background: rgba(0,0,0,.2);
	position: absolute;
	left: 50%;
	top: 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;
	
}

.hover__4:hover:before {
	width: 100%;
	left: 0;
}



.hover__5 {
	overflow: hidden;
	position: relative;
}

.hover__5:before {
	content: '';
	width: 200%;
	height: 200%;
	display: block;
	position: absolute;
	left: -50%;
	top: -50%;
	-webkit-box-shadow: inset 0 0 0 0 rgba(0,0,0,.2);
	        box-shadow: inset 0 0 0 0 rgba(0,0,0,.2);
	
-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;
	
}

.hover__5:hover:before {
	-webkit-box-shadow: inset 0 0 0 300px rgba(0,0,0,.2);
	        box-shadow: inset 0 0 0 300px rgba(0,0,0,.2);
	-webkit-transform: rotate(180deg);
	   -moz-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	     -o-transform: rotate(180deg);
	        transform: rotate(180deg);
	}



.hover__6 {
	overflow: hidden;
	position: relative;
}

.hover__6:before,
.hover__6:after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(0,0,0,.1);
	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;
	
}

.hover__6:before {
	left: -100%;
	top: -100%;
}
.hover__6:after {
	right: -100%;
	bottom: -100%;
}

.hover__6:hover:before {
	left: 0;
	top: 0;
}
.hover__6:hover:after {
	right: 0;
	bottom: 0;
}



.hover__7 {
	overflow: hidden;
	position: relative;
}

.hover__7:before {
	content: '';
	width: 200%;
	height: 200%;
	display: block;
	position: absolute;
	left: -50%;
	top: -50%;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	-webkit-box-shadow: inset 0 0 0 0 rgba(0,0,0,.2);
	        box-shadow: inset 0 0 0 0 rgba(0,0,0,.2);
	
-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;
	
}

.hover__7:hover:before {
	-webkit-box-shadow: inset 0 0 0 300px rgba(0,0,0,.2);
	        box-shadow: inset 0 0 0 300px rgba(0,0,0,.2);
	}



.hover__8 {
	overflow: hidden;
	position: relative;
}

.hover__8:before {
	content: '';
	width: 200%;
	height: 200%;
	display: block;
	position: absolute;
	left: -50%;
	top: -50%;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	-webkit-box-shadow: inset 0 0 0 300px rgba(0,0,0,.2);
	        box-shadow: inset 0 0 0 300px rgba(0,0,0,.2);
	-webkit-transform: scale(.001);
	   -moz-transform: scale(.001);
	    -ms-transform: scale(.001);
	     -o-transform: scale(.001);
	        transform: scale(.001);
	
-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;
	
}

.hover__8:hover:before {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	     -o-transform: scale(1);
	        transform: scale(1);
	}








/***************************************************************************
                           4. TYPOGRAPHY
***************************************************************************/




body {
	font-family: Roboto Condensed;
	font-size: 13px;
	color: #777777;
}



/* 4.1 HEADINGS */



.column_center h1,
.column_center h2,
.column_center h3,
.column_center h4,
.column_center h5,
.column_center h6 {
	margin: 15px 0;
	padding: 0 0 5px 0;
	border-bottom: 1px solid #333333;
	font: 16px Roboto Condensed;
	color: #333333;
	text-transform: uppercase;
}

.column_center h2,
.column_center h3,
.column_center h4 {
	font-size: 15px;
}

.column_center h5,
.column_center h6 {
	font-size: 13px;
}

.column_center .page_heading,
.column .widget h3.widget_header {
	font: 16px Roboto Condensed;
	color: #333333;
	text-transform: uppercase;
	margin: 0 0 30px;
	padding: 16px 10px 18px 19px;
  	font-weight: bold;
	
background: #f8f8f8;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #f8f8f8 0%,#e0e0e0 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#e0e0e0));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f8f8f8 0%, #e0e0e0 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #f8f8f8 0%,#e0e0e0 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #f8f8f8 0%,#e0e0e0 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #f8f8f8 0%,#e0e0e0 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#e0e0e0',GradientType=0 );
	 /* IE6-8 */

	border: 1px solid #c1c0c0;
	border-left: 5px solid #de0037;
}
.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: #de0037;
	text-decoration: none;
}
a:hover, a:focus {
	color: #333333;
}



/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product {
 	text-align: center; 
}
.product .product_img {
  	position: relative;
}
.product .product_img a {
  	display: block;
 	padding: 27px 40px; 
}
.product .product_img:before {
	position: absolute;
	content: "";
	height: 100px;
	left: 0;
	right: 0;
	top: 0;
	
background: #eaeaea;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #eaeaea 0%,#f9f9f9 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(100%,#f9f9f9));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #eaeaea 0%, #f9f9f9 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #eaeaea 0%,#f9f9f9 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #eaeaea 0%,#f9f9f9 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #eaeaea 0%,#f9f9f9 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#f9f9f9',GradientType=0 );
	 /* IE6-8 */
;
}
.product .product_img .sale {
	position: absolute;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: normal;
	display: inline-block;
	padding: 1px 7px 2px;
	color: #ffffff;
	background: #de0037;
  	bottom: 0px;
  	left: 50%;
  	margin-left: -22px;
}
.product_name {
	font-weight: bold;
	font-size: 14px;
	color: #de0037;
  	text-transform: uppercase;
  	margin: 11px 0 2px;
}
.product_name a {
	font-weight: normal;
	color: #de0037;
	
-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: #333333;
}


.product_desc {
	font-size: 13px;
  	line-height: 17px;
	color: #777777;
}
.product_desc .highlight {
 	vertical-align: baseline;
  	padding: 0px 3px;
  	line-height: 17px;
}
.product_price {
  	font-size: 20px;
  	color: #373737;
    line-height: 22px;
    font-weight: normal;
  	margin-top: 4px;
  
}
.product_links {
 	margin-top: 4px; 
}
.money {
	color: #333333;
}
.compare-at-price {
	text-decoration: line-through;
  	color: #39010f;
  	font-size: 16px;
  	font-weight: 400;
}
.new_price {
  	color: #de0037;
}



/* 4.5 RTE */
.rte {
	margin-top: 15px;
	margin-bottom: 15px;
	color: inherit;
}

.rte a {
	color: inherit;
	text-decoration: underline;
}
.rte a:hover {
	text-decoration: none;
}

.rte h1 {
	font-size: 19px;
}
.rte h2 {
	font-size: 17px;
}
.rte h3 {
	font-size: 16px;
}
.rte h4 {
	font-size: 14px;
}
.rte h5 {
	font-size: 13px;
}
.rte h6 {
	font-size: 12px;
}

.rte img {
	margin-top: 15px;
	margin-bottom: 15px;
}
h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 {
 	font-family: Roboto Condensed; 
}



/***************************************************************************
                           5. FORMS & COMPONENTS
***************************************************************************/

/* 5.1 FORMS */
label {
	font-weight: bold;
	font-size: 13px;
}

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 #c1c0c0;
	font: normal 13px 'Arial';
	color: #777777;
	-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 {
}
.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 {
	border-radius: 0 !important;
	box-shadow: none !important;
	font-size: 14px;
	line-height: 1em;
	text-transform: uppercase;
	border: 1px solid #9a0228;
	border-left: 0px;
	border-top: 0px;
    
background: #de0037;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#de0037), color-stop(100%,#c30433));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #de0037 0%, #c30433 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #de0037 0%,#c30433 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#de0037', endColorstr='#c30433',GradientType=0 );
	 /* IE6-8 */
;
  	position: relative;
  	color: #ffffff;
  	padding: 11px 12px 10px;
}

.btn a {
	padding: 0 !important;
	border: none !important;
}

.btn-cart {
	padding: 11px 44px 10px 0;
}
.btn-cart span {
	display: block;
	padding: 0 12px;
	border-left: 1px solid #9a0228;
}
.btn-cart i {
	content: "\f07a";
  	position: absolute;
  	right: 0px;
  	top: 0px;
  	bottom: -1px;
	border-left: 1px solid #9d0228;
	width: 44px;
	font-size: 18px;
  	line-height: 44px;
  	vertical-align: middle;
	border-left: 1px solid #9a0228;
  	border-bottom: 1px solid #9a0228;
    
background: #de0037;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#de0037), color-stop(100%,#c30433));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #de0037 0%, #c30433 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #de0037 0%,#c30433 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#de0037', endColorstr='#c30433',GradientType=0 );
	 /* IE6-8 */
;
}

.btn:hover,
.btn:hover a,
.btn-info:hover,
.btn-primary:hover {
	background: #000000;
  	color: #ffffff !important;
  	border-bottom: 1px solid #000000;
}

.btn:focus {
  	color: #ffffff !important;
}
.btn:hover i,
.btn:hover a i,
.btn-info:hover i,
.btn-primary:hover i {
  	border-left: 1px solid #000000;
}


/***************************************************************************
                           6. GLOBAL PAGE LAYOUT
***************************************************************************/

html, body {
	height: 100%;
}

#wrapper {
	
	background: #000000 url(body_bg.png) center 0 no-repeat;
	
}

#wrapper2 {
	overflow: hidden;
}

.container {
	padding: 0;
}



#main {
	margin-top: 30px;
}

.container_wr {
 	max-width: 1230px;
  	background: #f9f9f9;
  	margin: 0 auto;
}

#main_content,
.column .widget {
	margin-bottom: 30px !important;
}



/***************************************************************************
                           7. SIDEBAR CONFIGURATION
***************************************************************************/

/* NO SIDEBAR */
.sidebar_none {
}


/* LEFT SIDEBAR */
.sidebar_left {
}
.sidebar_left .column_center {
	width: 100%;
}
.sidebar_left .column_center #main_content {
	margin: 0 0 0 25%;
}
.sidebar_left .column_left {
	margin-left: -100%;
}


/* RIGHT SIDEBAR */
.sidebar_right {
}


/* BOTH SIDEBARS */
.sidebar_both {
}
.sidebar_both .column_center {
	width: 100%;
}
.sidebar_both .column_center #main_content {
	margin: 0 25%;
}
.sidebar_both .column_left {
	margin-left: -100%;
}
.sidebar_both .column_right {
	margin-left: -25%;
}


/* NOSIDEBAR PAGES */
.sidebar_off .column_center #main_content {
	margin: 0;
}



/***************************************************************************
                           8. MAIN PAGE
***************************************************************************/

/* 8.1 HEADER */
#header {
}
#header .row {
 	margin-left: -30px;
  	margin-right: -30px;
}

/* Pulse Shrink */

@-webkit-keyframes pulse-shrink {
  to {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
  }
}

@keyframes pulse-shrink {
  to {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
  }
}

#logo {
	margin: 35px 0 0 -32px;
  	float: left;
}
#logo a {
	display: block;
  	display: inline-block;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
#logo b {
	font-size: 20px;
}
#logo a:hover {
  -webkit-animation-name: pulse-shrink;
  animation-name: pulse-shrink;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.header_right {
 	float: right; 
  	text-align: right;
  	width: 60.2%;
  	margin-bottom: 18px;
}
.top_menu {
 	float: right; 
}

.header_user {
  	display: inline-block;
  	margin-top: 50px;
}
.header_user li {
  	display: inline-block;
  	margin-right: 19px;
}
.header_user li a {
	font-size: 14px;
}
.header_user li a i {
	margin: 0 5px 0 0;
	line-height: 1.5em;
}
.header_user li a:hover {
	color: #ffffff;
}



.header_currency {
  	margin-top: 53px;
  	display: inline-block;
}
.header_currency .jq-selectbox {
	width: 60px;
}
.header_currency .jq-selectbox__select {
	height: 22px;
	padding: 0 25px 0 5px;
}
.header_currency .jq-selectbox__select-text {
	line-height: 15px;
  	font-size: 13px;
  	color: #ffffff;
}
.header_currency .jq-selectbox__trigger i {
	right: 5px;
	top: 0px;
}

.header_currency .jq-selectbox__dropdown {
	width: 100% !important;
	top: 24px !important;
  	text-align: center;
}
.header_currency .jq-selectbox__dropdown ul {
	background: #ffffff;
	border: 1px solid #c1c0c0;
}
.header_currency .jq-selectbox__dropdown ul li {
}

.header_currency .jq-selectbox__dropdown ul li:hover,
.header_currency .jq-selectbox__dropdown ul li.sel {
  	background: #777777;
  	color: #ffffff;
}


.custom_header1 h3 {
 	text-align: right;
  	color: #ffffff;
    font-size: 14px;
    margin-bottom: 16px;
}

.header_cart {
	display: inline-block;
}
.header_cart a {
  	position: relative;
	display: block;
	text-align: left;
  	width: 246px;
  	-webkit-box-sizing: border-box;
  	padding: 10px 15px 12px 78px;
  	box-sizing: border-box;
  	background: #1a1a1a;
  	transition: all .4s ease;
}
.header_cart a:hover {
  	background: #9a0228; 
}
.header_cart a b {
	display: block;
	font-size: 18px;
	line-height: 20px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0 0 3px;
	color: #ffffff;
}
.header_cart a > span {
	min-width: 151px;
	font-weight: normal;
	font-size: 14px;
	color: #777777;
}
.header_cart a:hover > span {
  	color: #ffffff;
}
.header_cart a > span > span {padding-right: 4px;}
.header_cart a span.count {
}

/* Pulse Shrink */

@-webkit-keyframes pulse-shrink1 {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes pulse-shrink1 {
  to {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.header_cart a:before {
  	background: url(basket.png?16566738983684794175) 0 0 no-repeat;
  	width: 98px;
	height: 94px;
	position: absolute;
	left: -23px;
	bottom: -17px;
	content: "";
  	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.header_cart a:hover:before {
  -webkit-animation-name: pulse-shrink1;
  animation-name: pulse-shrink1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.header_search {
  	float: left;
  	position: relative;
  	width: 253px;
  	padding-right: 66px;
  	margin-top: 10px;
}
.header_search #search-field {
	width: 100%;
	padding: 8px 5px;
	height: 36px;
	line-height: 18px;
	font-size: 13px;
	color: #777777;
	background: #1a1a1a;
	border-color: #373737;
	box-shadow: inset 0px 5px 5px rgba(0,0,0,0.05);
	-moz-box-shadow: inset inset 0px 5px 5px rgba(0,0,0,0.05);
	-webkit-box-shadow: inset 0px 5px 5px rgba(0,0,0,0.05);
}
.header_search #search-submit {
	position: absolute;
	font-family: 'Roboto Condensed',sans-serif;
	color: #fff;
	font-size: 14px;
	line-height: 40px;
	text-transform: uppercase;
	right: 0;
	bottom: 0;
	top: 0;
	
background: #de0037;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#de0037), color-stop(100%,#c30433));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #de0037 0%, #c30433 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #de0037 0%,#c30433 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#de0037', endColorstr='#c30433',GradientType=0 );
	 /* IE6-8 */
;
  	width: 66px;
  	vertical-align: middle;
	line-height: 17px;
  	font-size: 17px;
  	padding: 8px 0px;
}
.header_search #search-submit:hover {
  	background: #9a0228;
}

.custom_header1 {
}




/* 8.2 NAVIGATION */

#navigation { position: relative;}
#navigation nav {
	position: relative;
	z-index: 90;
}

#navigation.isStuck {
	width: 100%;
	left: 0;
	top: 0;
  	text-align: center;
  	z-index: 120;
}
#navigation.isStuck nav {
 	width: 1230px;
  	display: inline-block;
}
#navigation select.menu_mobile {
	width: 100%;
	height: 30px !important;
	display: block;
	background: #eee;
}

.sf-menu {
	
    background: url(main_menu_bg.gif?16566738983684794175) center 0 repeat;
    
	border-top: 1px solid #4e4e4e;
}
.sf-menu li {
	position: relative;
}

/*================================>> 1 Level <<========================================*/

.sf-menu > li {
	display: block;
	border-right: 1px solid #000000;
  	float: left;
}

.sf-menu > li > a {
	text-transform: uppercase;
	white-space: nowrap;
	display: block;
	position: relative;
	font-size: 16px;
	line-height: 18px;
	text-transform: uppercase;
	font-weight: bold;
	vertical-align: middle;
	text-align: center;
	padding: 18px 19px 22px;
	color: #ffffff;
}
.sf-menu > li > a > span {
 	display: inline-block;
  	z-index: 100;
  	font-weight: bold;
}
.sf-menu > li > a > b {
	display: block;
	position: absolute;
	width: 100%;
	opacity: .3;
	background: #000000;
	left: 0;
	bottom: 0;
  	height: 0px;
  	z-index: 1;
  	transition: height .2s ease;
}
.sf-menu > li > a:hover > b,
.sf-menu > li.active > a > b {
    height: 100%;
}
.sf-menu > li > a > span:before {
	position: absolute;
 	left: 0;
 	right: 0; 
 	bottom:0;
 	content: "";
	border-bottom: 0px solid #de0037;
  	z-index: 100;
  	transition: all .4s ease;
}
.sf-menu > li > a:hover > span:before,
.sf-menu > li.active > a > span:before {
    border-bottom-width: 8px;
}
.sf-menu > li.active > a,
.sf-menu > li:hover > a {
	color: #de0037;
}

.sf-menu > li > a.sf-with-ul:after {
	content: "\f107";
	display: inline-block;
	font-size: 13px;
	margin-left: 7px;
  	margin-top: -3px;
	vertical-align: middle;
	line-height: 1px;
	color: #ffffff;
  	font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
	text-indent: 0 !important;
}
.sf-menu > li > a.sf-with-ul:hover:after,
.sf-menu > li.active > a.sf-with-ul:after,
.sf-menu > li.sfHover > a.sf-with-ul:after {
	color: #de0037;
}

/*================================>> 2 Level <<========================================*/


.sf-menu ul {
	position: absolute;
	left: 0;
	top: 64px;
	position: absolute;
	z-index: 99;
	width: 212px;
  	text-align: left;
	display: none;
	background: #ffffff;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
  	-webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.75);
    box-shadow: 0 1px 5px rgba(0,0,0,0.75);
}
.sf-menu ul li {
	position: relative;
	float: none;
	border-bottom: 1px dotted #d3d3d3;
}
.sf-menu ul li a {
	display: block;
	padding: 10px;
	background: none;
	font-size: 14px;
	line-height: 18px;
	text-transform: capitalize;
	padding: 8px 15px;
	color: #1a1a1a;
}

.sf-menu ul > li a:hover,
.sf-menu ul > li.active a {
	color: #de0037;
}


#navigation select.menu_mobile {display: none;}

/* 8.3 NIVOSLIDER */
.nivoSlider {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
}
.nivoSlider img {
	max-width: none;
	position: absolute;
	top: 0;
	left: 0;
}
.nivo-main-image {
	width: 100% !important;
	display: block !important;
	position: relative !important;
}

.nivoSlider a.nivo-imageLink {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	z-index: 6;
	position: absolute;
	left: 0;
	top: 0;
	display: none;
	filter: alpha(opacity=0);
	opacity: 0;
	}

.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;
  	min-height: 388px;
}

.nivoSlider {
}

.nivo-caption {
	position: absolute;
	left: 0;
	top: 60%;
	margin-top: -69px;
	bottom: 0;
	right: 0;
	z-index: 8;
	display: none;
}
.nivo-caption a {
	display: block;
	text-align: center;
	height: 138px;
}
.nivo-caption h2 {
	font-size: 76px;
	line-height: 76px;
	font-weight: bold;
	line-height: 1em;
	text-transform: uppercase;
	color: #de0037;
	margin-bottom: -2px;
}
.nivo-caption h3 {
	font-size: 46px;
	line-height: 46px;
	font-weight: bold;
	margin-bottom: 5px;
	line-height: 1em;
	text-transform: uppercase;
	color: #ffffff;
}
.nivo-caption h4 {
	font-size: 14px;
	color: #777777;
	line-height: 1em;
	text-transform: uppercase;
}


.nivo-directionNav a {
  	position: absolute;
	display: block;
	vertical-align: middle;
	z-index: 9;
	cursor: pointer;
	text-align: center;
	margin-top: 0;
	height: 46px;
	width: 45px;
	top: 44.7%;
	background: #39010f;
	left: auto;
	border: 1px solid #de0037;
}
.nivo-directionNav a:hover {
	border-color: #ffffff;
	background: #4e4e4e;
}
.nivo-directionNav a span {
	display: none;
}
.nivo-directionNav a i {
	display: inline-block;
	line-height: 42px;
	font-size: 30px;
	color: #ffffff;
}
.nivo-prevNav {
	left: 0;
  	border-left: 0px !important;
}
.nivo-nextNav {
	right: 0;
  	border-right: 0px !important;
}


.nivo-controlNav {
	width: 100%;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
}
.nivo-controlNav a {
	display: inline-block;
	cursor: pointer;
}
.nivo-controlNav a + a {
	margin: 0 0 0 5px;
}
.nivo-controlNav a span {
	display: none;
}
.nivo-controlNav a i {
	display: block;
}
.nivo-controlNav a:hover {
}
.nivo-controlNav a.active {
	cursor: default;
}



/* 8.4 SHOWCASE */
.showcase .ins { color: #ffffff;}
#showcase {
}
.custom_showcase {
 	margin-bottom: 30px; 
}
.custom_showcase a {
	display: block;
	position: relative;
	overflow: hidden;
	text-align: right;
	background: #d3d3d3;
}
.custom_showcase .inside {
	position: absolute;
	left: 0;
	top: 0;
	padding: 22px 27px;
	z-index: 5;
	text-align: left;
}
.custom_showcase h3 {
	font-size: 46px;
	line-height: 1em;
	text-transform: uppercase;
	margin-bottom: 6px;
	font-weight: bold;
	font-family: Roboto;
	color: #de0037;
}
.custom_showcase h3 span {
  	display: block;
	font-weight: bold;
  	line-height: 1em;
  	margin-top: -5px;
	color: #373737;
}
.custom_showcase p {
	font-size: 14px;
	width: 80%;
	line-height: 20px;
	text-transform: uppercase;
	color: #777777;
  	margin-top: 7px;
}
.custom_showcase .button {
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
	text-align: right;
	display: block;
	padding: 7px 75px 9px 15px;
	position: relative;
	color: #ffffff;
	
    background: url(showcase_bg.gif?16566738983684794175) center 0 repeat;
    
  	transition: all .4s ease;
  	z-index: 51;
}
.custom_showcase a:hover .button {
  	background: #de0037;
}
.custom_showcase a:hover .button i {
  	
    background: url(showcase_bg.gif?16566738983684794175) center 0 repeat;
    
}
.custom_showcase i {
	position: absolute;
	right: 0;
	width: 64px;
	text-align: center;
	vertical-align: middle;
	top: 0;
  	bottom: 0px;
	background: #de0037;
	color: #ffffff;
  	font-size: 27px;
  	line-height: 37px;
}
.custom_showcase .ins {
  	display: inline;
  	color: #777777; 
  	font-weight: 300;
}

.custom_showcase__1 {
}
.custom_showcase__2 {
}
.custom_showcase__3 {
}
.custom_showcase__4 {
}



/* 8.5 MAIN PRODUCT LISTING */
.product_listing_main + .product_listing_main {
 	margin-top: 45px; 
}
.product_listing_main .product {
}

.product_listing_main .product_img {
}
.product_listing_main .product_info {
}

.product_listing_main .product_name {
}

.product_listing_main .product_desc {
}

.product_listing_main .product_price {
}
.product_listing_main .product_price .money {
}
.product_listing_main .product_price .compare-at-price {
}

.product_listing_main .product_links {
}
.product_listing_main .product_links form {
	display: inline-block;
}
.product_listing_main .product_links a {
}



/* 8.6 FOOTER */
footer {
  	background: #000000;
  	margin-top: 10px;
}



.footer_block {
  	position: relative;
}
.footer_block + .footer_block:before {
  	content: "";
  	left: 0;
  	top: 0;
  	bottom: 0;
  	width: 1px;
  	background: #000000;
  	position: absolute;
  	z-index: 5;
}
.footer_top {
  	background: #1f1f1f; 
}


.footer_block h3 {
	position: relative;
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	margin-bottom: 25px;
	text-transform: uppercase;
	padding: 21px 19px 21px;
	display: block;
	color: #ffffff;
  	
    background: url(main_menu_bg.gif?16566738983684794175) center 0 repeat;
    
	border-top: 1px solid #4e4e4e;
  	border-bottom: 1px solid #000000;
}
.footer_block .inside {
 	padding: 0 20px 30px; 
  	padding-bottom: 54px;
}
.footer_block ul {
}
.footer_block ul li {
	display: block;
	padding: 0 0 2px;
  	line-height: 21px;
}
.footer_block ul li a {
	display: inline;
	font-size: 14px;
	text-decoration: none;
	color: #777777;
}
.footer_block ul li a:hover {
	color: #de0037;
}

.footer_block ul li.active a,
.footer_block ul li a:hover {
	color: #de0037;
}
.footer_block {
 	width: 20%;
  	float: left;
}
.contacts_phone {
  	display: block;
    font-size: 22px;
    font-weight: 500;
  	color: #de0037;
    margin-bottom: 4px;
  	margin-top: 10px;
}
.contacts_phone i {
  	padding-right: 10px;
  	color: #ffffff;
}
ul.socials {
	margin-top: 20px;
}
ul.socials li {
  	display: inline-block;
	margin-right: 9px;
}
ul.socials li a {
	font-size: 20px;
	color: #777777;
}
ul.socials li a:hover {
	color: #de0037;
}



.footer_newsletter {
  	margin-top: 28px;
}
.form_wrap {
 	position: relative;
  	padding-right: 51px; 
}
.footer_newsletter #email-input {
	width: 100%;
	padding: 5px;
	height: 36px;
	line-height: 18px;
	font-size: 13px;
	color: #777777;
	background: #1a1a1a;
	border-color: #373737;
	box-shadow: inset 0px 5px 5px rgba(0,0,0,0.05);
	-moz-box-shadow: inset inset 0px 5px 5px rgba(0,0,0,0.05);
	-webkit-box-shadow: inset 0px 5px 5px rgba(0,0,0,0.05);
}
.footer_newsletter #email-submit {
	position: absolute;
	font-family: 'Roboto Condensed',sans-serif;
  	color: #ffffff;
	font-size: 14px;
	line-height: 40px;
	text-transform: uppercase;
	right: 0;
	bottom: 0;
	top: 0;
	
background: #de0037;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#de0037), color-stop(100%,#c30433));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #de0037 0%, #c30433 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #de0037 0%,#c30433 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #de0037 0%,#c30433 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#de0037', endColorstr='#c30433',GradientType=0 );
	 /* IE6-8 */
;
  	width: 50px;
  	vertical-align: middle;
	line-height: 14px;
  	font-size: 14px;
  	padding: 8px 0px;
}
.footer_newsletter #email-submit:hover {
  	background: #9a0228;
}
.footer_newsletter .error {margin: 15px 0 0 0;font-weight: bold;font-style: italic;color: #de0000;}
.footer_newsletter .success {margin: 15px 0 0 0;font-weight: bold;font-style: italic;color: #208d20;}



footer .copyright {
  	border: none !important;
}
footer .copyright p {
  	margin: 35px 0px 50px;
  	font-size: 12px;
  	color: #4e4e4e;
  	border: none !important;
}
footer .copyright a {
  	color: #4e4e4e;
  	border: none !important;
}
footer .copyright a:hover {
  	color: #de0037;
}



/***************************************************************************
                           9. COLLECTION PAGES
***************************************************************************/

/* 9.1 PAGES CONTENT */
ul.tags {
	margin-top: 15px;
	list-style-type: none;
}
ul.tags li {
	float: left;
}
ul.tags li + li {
	margin: 0 0 0 5px;
}
ul.tags li a {
	display: block;
	padding: 5px 10px;
	color: #ffffff;
	background: #000000;
}

ul.tags li a:hover,
ul.tags li.active a {
	background: #de0037;
	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 #c1c0c0;
	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 {
	font: 16px Roboto Condensed;
	color: #333333;
	padding: 16px 10px 18px 19px;
	text-transform: uppercase;
	border: 1px solid #c1c0c0;
	margin: 0 0 15px 0;
	
background: #f8f8f8;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #f8f8f8 0%,#e0e0e0 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#e0e0e0));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f8f8f8 0%, #e0e0e0 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #f8f8f8 0%,#e0e0e0 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #f8f8f8 0%,#e0e0e0 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #f8f8f8 0%,#e0e0e0 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#e0e0e0',GradientType=0 );
	 /* IE6-8 */

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}



/* 9.3 COLLECTION LISTING */
.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 {
	border-left: 1px solid #ffffff;
}

#pagination span a,
#pagination span.deco,
#pagination span.current {
	display: block;
	padding: 6px 18px;
	color: #ffffff;
	background: #000000;
}

#pagination span a:hover,
#pagination span.current {
	color: #ffffff;
	background: #de0037;
}
#pagination span.current {
	cursor: default;
}



/***************************************************************************
                           10. SIDEBAR WIDGETS
***************************************************************************/

.column .widget {
}

.column .widget h3.widget_header {
	margin: 0;
}


/* 10.1 LINKS LIST */
.column .widget ul.list {
	border: 1px solid #c1c0c0;
  	padding: 10px;
  	margin-top: 10px;
}
.column .widget ul.list li {
	padding: 10px 0;
}
.column .widget ul.list li + li {
	border-top: 1px solid #c1c0c0;
}
.column .widget ul.list li a {
  	color: #000000;
}

.column .widget ul.list li.active a,
.column .widget ul.list li a:hover {
  	color: #de0037;
}


/* 10.2 SIDEBAR PRODUCT LISTING */
.product_listing_sidebar .product {
  	margin-top: 40px;
}

.product_listing_sidebar .product_img {
}

.product_listing_sidebar .product_info {
}

.product_listing_sidebar .product_name {
}

.product_listing_sidebar .product_desc {
}

.product_listing_sidebar .product_price {
}
.product_listing_sidebar .product_price .money {
}
.product_listing_sidebar .product_price .compare-at-price {
}

.product_listing_sidebar .product_links {
}
.product_listing_sidebar .product_links form {
	display: inline-block;
}
.product_listing_sidebar .product_links a {
}



/***************************************************************************
                           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: #de0037;
}
#searchresults .search-form button:hover {
	color: #333333;
}
#searchresults .search-form button i {
	line-height: 32px;
}

#searchresults h3 {
	margin: 0;
	padding: 0;
} 

#searchresults ol {
	list-style-type: none;
	padding: 15px 0 0 0;
	border-bottom: 1px solid #c1c0c0;
}
#searchresults ol li {
	overflow: hidden;
	margin: 0;
	padding: 15px 0;
	border-top: 1px solid #c1c0c0;
}
#searchresults ol li .search-result_image {
	float: left;
	margin-right: 15px;
}
#searchresults ol li .search-result_container {
	padding: 15px 0 0 0;
}
#searchresults ol li .search-result_image a {
 	display: block; 
	
background: #eaeaea;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #eaeaea 0%,#f9f9f9 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(100%,#f9f9f9));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #eaeaea 0%, #f9f9f9 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #eaeaea 0%,#f9f9f9 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #eaeaea 0%,#f9f9f9 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #eaeaea 0%,#f9f9f9 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#f9f9f9',GradientType=0 );
	 /* IE6-8 */
;
  	padding: 5px;
}


/***************************************************************************
                           12. PRODUCT PAGE
***************************************************************************/

.product_wrap {
}



/* 12.1 PRODUCT IMAGES */
.product_img_big {
	max-height: 345px;
	overflow: hidden;
	border: 1px solid #c1c0c0;
}



.product_img_thumbs {
	max-height: 120px;
	padding: 12px 0 0 0;
}

.product_img_thumbs__list {
}
.product_img_thumbs__list a {
	width: 107px !important;
	display: block;
  	position: relative;
}
.product_img_thumbs__list a img {
	width: 100%;
}
.product_img_thumbs__list a:after {
  	position: absolute;
  	left:0px;
  	right: 1px;
  	top: 0px;
  	bottom: 0px;
  	content: "";
	border: 1px solid #898989;
}



.bx-wrapper {
	max-width: 345px !important;
}
.bx-pager {
	display: none !important;
}

.bx-wrapper .bx-controls-direction a {
	width: 30px;
	height: 0;
	display: block;
	overflow: hidden;
	margin: -15px 0 0 0;
	padding: 30px 0 0 0;
	position: absolute;
	top: 50%;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABZlJREFUeNrsWu9LW1cYvt6oGbpGh424pdGudtCCcbpqv2wZ+9E5EDbNhsvwg/phdIpuf4Df3R+wgX7YKIID/aCt4NyEisKCQsGyCNMEDaHTJLRLuq5xpGaQufcN75EYjDnn3Jt82O4DD3i9OffNc8657znnfVKi8KEa+ArwIvAC0Aq00L04MAoMAR8Ad4F/KvoA47QCm4CXgXZgDd17DNwHBoC/An+h73EmSvLcfwl4DdhCQnmAwr3A+8CIpNBLwBvAt6mjeYAdvQpcBgZFBeP/ncR6yS+9B/QQjzjbYNyPgC7gFcm4fuAd4O3T4ppOaYBT9QNgN7BKw3TEts1AM416Ms/ncareBA4Dz2uIe54GqoJG/dlZgpnYdxT90Ah8DvjbGaJR7OdAt45xsbMrgduZok1Z00lvsQwN9Hxfjml8U2exDFfp+fdOE/wmTeNCAUf6KY10Jj6maVwoNFNGT3e2mpGNnUrh4aRYmdnYVYS4Lop1LPiabDa22WxmgY/XUyyGG7LZ2Gq1mgQ+foVipQVX0zorjImJiZadnZ1PBwYGbALNWiimldZZYYyNjdUFAgFHd3e3RaAZxrLiC90O/ExG7ODg4HX8OxgMxhobG28LNP8O+ALwKxmxo6Oj6Q7e2tpKNDU1+QSaj5bSdlFabDQajbvd7mXBR1ykbaK02FAolOzp6QkKPqJJFdgyniq2s7Pzx42Njbhg4Au0N5YW29HRsevz+ZKCcS+r9C4VUyw7FNiLLBZhVzNOPXmzcV9f36vsemVlJSgplu3oaniz8cjISB27XlhYeCIpNr2jw9TemWNPfQIHBwepSCQSg95tKCsrK4VkUQdILS4uPpQI/A/wRZ64iUTiyO/3J2A2VZvNZrW9vf358vLyI+jwvyTipjDgG7TRzguv13uQKbqtrc0mKRrPy+eI+Y8/fn8yU7TT6bRIiv7dRFsv7tOJTqLx6IgrBPf6rZNon0pHNyFMTk6Gh4eHl2G6pd8lh8MhepwLUaVCCPPz8/H+/v5gPB5P4XVra2uF4CMCJjpCvSYaHEd6c3MzbDKZktDrHsHmK5gWgO8Kn+5hpNfW1uKHh4ep3t7ePcHm0yW0zftCdD3WABzdb4BlwK8FSjhagcWAL1VKIF6lePBSzCjVoIoFjBVlp6X7lEgKjT2KxbBMNahCw0+xjo+HESq2FRoe5WQlM0gFt0LjDsU6sfDvUcGtsUBB7wKXcvR+BS2PhcD3uLDkKuKFqODWoHPQn4E/nVHE26XV4qrOcfHIegs3bLkEJ6nmVKLjSN8lsWftu7GquE1xm3Uc2VtUz1JyCWaifVRwwyWrSkOC+oGmMc9mH0Xfoy9oVeRr0/iKfEvTOJF907BacuA/Y6apyv8MxpTO+L/hHgrCcA8Vwz08jmu4hzqPtOEeCrmHgo5hJjS5h4KOYSbk3UN0CtExRBdCMriUe4hOITqG6EJIxk27h9hjDuBbvK3m5ubeq62ttWioSVvoPX4Z+Alvo9nZ2Ut2u92soSaNK8E2Cn6dzW8erK+vh10uV31lZaVZg+g/aAfl4C5Ira4edHV1VVksllINoh+h4PdFFvpIJJKE4HsaRf9NgrkL8bFYLLW0tPRUo+hnKPhDhdNq0VF0CQk+JxJXB9Eqt3uYDXQO0UFk1+gsCmRvbvcwG+gcooPIrtFZFMjeNdLHQ8zSbrc7nanRckHrJRwOy9qY3MAsPTQ0lM7UaLmg9RKNRlO87dU8taacYpkxzsSi3yTwiHh2rYlXLDPGmVj0mwQe8VjlqRLoLFahmPtFFovYF3YPmVOoQSwrEgi5h8wp1CAWEZD62dLMzMz1qampIGTlmOSrKPWzpfHxcdv09PQTj8eTkIw7ariHRYDhHhYhruEest433EOdYLiH2acYxXAPDfeQZ5013MNs/CvAAN+q3yxd1e4sAAAAAElFTkSuQmCC) !important;
	background-position: 0 0;
	background-repeat: no-repeat;
	}
.bx-wrapper .bx-controls-direction a.disabled {
	display: none !important;
}
.bx-wrapper .bx-controls-direction a.bx-prev {
	left: 10px;
	background-position: 0 0 !important;
}
.bx-wrapper .bx-controls-direction a.bx-prev:hover {
	background-position: -30px 0 !important;
}
.bx-wrapper .bx-controls-direction a.bx-next {
	right: 10px;
	background-position: 0 -30px !important;
}
.bx-wrapper .bx-controls-direction a.bx-next:hover {
	background-position: -30px -30px !important;
}



/* 12.2 PRODUCT INFO */
.product_wrap .product_name {
	margin: -2px 0 0 0;
}



.product_wrap .product-price {
	margin: 15px 0 0 0;
	padding: 0;
}
.product_wrap .product-price .money {
	margin: 0 5px 0 0;	
  	font-size: 20px;
}
.product_wrap .product-price .compare-at-price {
}



#purchase {
}
#purchase label {
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 0 !important;
	line-height: 37px;
}
#purchase #quantity {
	width: 50px;
	height: 43px;
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 7px 0 6px;
	outline: none;
	text-align: center;
}

#purchase .variants-wrapper {
	display: inline-block;
	margin: 15px 10px 0 0;
}
#purchase .variants-wrapper select {
	width: auto;
	height: 37px;
	max-width: 150px;
	padding: 9px 6px;
}

#purchase #add-to-cart {
	margin: 15px 10px 0 0;
}



    
.product_wrap .product_details {
	margin: 15px 0 0 0;
	padding: 10px 0 15px 0;
	border: 1px solid #c1c0c0;
	border-width: 1px 0;
}
.product_wrap .product_details > div {
	padding: 5px 0 0 0;
}

.product_wrap #product_description {
}
.product_wrap #product_description h4 {
	padding-bottom: 0;
	border: none;
	text-transform: none;
}



.product_image-additioanl a {
	width: 33%;
	display: block;
	float: left;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	}



/* 12.3 PRODUCT PAGINATION */
.product_wrap .pagination__product {
	width: 100%;
	margin: 15px 0;
}
.product_wrap .pagination__product ul {
	list-style-type: none;
	margin: 0 !important;
	padding: 15px !important;
}
.product_wrap .pagination__product ul li.left-arrow {
	float: left;
}
.product_wrap .pagination__product ul li.right-arrow {
	float: right;
}



/* 12.4 RELATED PRODUCTS */
.widget_related_products {
}
.widget_related_products h3 {
	margin: 30px 0;
  	font: 16px Roboto Condensed;
	color: #333333;
	text-transform: uppercase;
	padding: 10px 10px 10px 19px;
  	font-weight: bold;
	
background: #f8f8f8;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #f8f8f8 0%,#e0e0e0 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#e0e0e0));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f8f8f8 0%, #e0e0e0 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #f8f8f8 0%,#e0e0e0 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #f8f8f8 0%,#e0e0e0 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #f8f8f8 0%,#e0e0e0 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#e0e0e0',GradientType=0 );
	 /* IE6-8 */

	border: 1px solid #c1c0c0;
	border-left: 5px solid #de0037;
}

ul.product_listing_related {
	list-style-type: none;
}
ul.product_listing_related .product {
}

ul.product_listing_related .product_img {
}
ul.product_listing_related .product_name {
}
ul.product_listing_related .product_price {
}



/***************************************************************************
                           13. BLOG
***************************************************************************/

/* 13.1 POSTS LISTING */
#blog {
}

.blog-article {
	padding: 15px 0 0 0;
}

.article_header {
	padding: 15px 0;
	border-bottom: 1px solid #c1c0c0;
}
.article_header .product_name {
}
.article_header .product_name a {
}
.article_header .product_name a:hover {
}

.blog-article_meta-comments {
	float: right;
	padding: 12px 0 0 15px;
}

.blog-article_date,
.blog-article_meta-tags {
	font-style: italic;
}

.blog-article_meta-tags a {
	text-decoration: underline;
}



/* 13.2 SINGLE POST */
.article_meta-comments {
	float: right;
	padding: 2px 0 0 15px;
}
.article_meta-tags a {
	text-decoration: underline;
}

.article_date,
.article_meta-tags,
.article_meta {
	font-style: italic;
}



#comments ul {
	list-style-type: none;
}

.comment-form {
}

.comment-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;
}

.comment-submit {
}



/***************************************************************************
                           14. CUSTOMER PAGES
***************************************************************************/

/* 14.1 LOG IN */

/* 14.2 ACCOUNT */
.customer_account {
}

.customer_name {
	text-transform: none !important;
}
.customer_name .divider {
	margin: 0 7px;
}
.customer_name .email {
	color: #777777;
}
.customer_name a {
	float: right;
}



/* 14.3 ADDRESSES */
.customer_addresses {
}

.customer_addresses ul.customer_addresses_actions {
	list-style-type: none;
	margin: 15px 0;
}
.customer_addresses ul.customer_addresses_actions li {
}
.customer_addresses ul.customer_addresses_actions li a {
}
.customer_addresses ul.customer_addresses_actions li a i {
	margin: 0 5px 0 0;
	line-height: inherit;
}

.customer_addresses .col-sm-offset-4 label {
	line-height: 1.6em;
}


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 #c1c0c0;
}

.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: #de0037;
}

.cart-list .row h3.item_vendor {
	border-bottom: 1px solid #c1c0c0;
	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: 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 {
}
.cart_subtotal h3 {
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid #c1c0c0;
}
.cart_subtotal h3 .money {
	float: right;
	font-size: inherit;
}

.cart_buttons {
	margin: 30px 0;
}

.cart_instructions {
}
.cart_instructions h4 {
}
.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 {
}
.contact-form {
}

.contact-scope iframe {
	width: 100%;
	margin: 0px 0 15px;
	border: 1px solid #c1c0c0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="telephone"],
.contact-form textarea {
}

.contact-form textarea {
	width: 100%;
}

.contact-form_buttons {
}
.contact-form_buttons .btn-toolbar {
}