/** Shopify CDN: Minification failed

Line 1568:2 Expected ":"

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

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



/* 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: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

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



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




body {
	font-family: Open Sans;
	font-size: 14px;
	color: #888888;
}



/* 4.1 HEADINGS */



.column_center h1,
.column_center h2,
.column_center h3,
.column_center h4,
.column_center h5,
.column_center h6 {
	margin: 15px 0;
	font: 26px Open Sans;
	color: #242424;
}

.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: 0 0 8px 0;
	border-bottom: 4px solid #6bc4ca;
	font: 26px Open Sans;
	color: #242424;
}
.column_center .page_heading a {
	float: right;
	padding: 12px 0 0 0;
	font-size: 14px;
}



/* 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: #8c98ac;
	text-decoration: none;
}
a:hover, a:focus {
	color: #242424;
}



/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product_name {
	font-size: 16px;
	color: #8c98ac;
}
.product_name a {
	color: #8c98ac;
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}
.product_name a:hover {
	color: #c7af94;
}


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


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



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

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

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

.rte img {
	margin-top: 15px;
	margin-bottom: 15px;
	background: #ffffff;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}



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

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

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

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

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

.form-control:focus {
	border-color: #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 {
	padding: 8px 12px 8px 12px;
	background: #6bc4ca !important;
	border-color: #6bc4ca !important;
	font: 600 14px Open Sans;
	color: #ffffff !important;
	text-transform: uppercase;
	border-radius: 0 !important;
	box-shadow: none !important;
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}

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

.btn-cart {
	background: #c7af94 !important;
	border-color: #c7af94 !important;
}

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



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

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

#wrapper {
	
	background: url(//www.xmlide.info/cdn/shop/t/4/assets/body_bg.png?v=61124148782935868521747237308) 0 0 repeat !important;
	
}

#wrapper2 {
	overflow: hidden;
}

.container {
	padding: 0;
}



#main {
	margin-top: 20px;
}



#main_content,
.column .widget {
	margin-bottom: 60px !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 {
	padding: 4px 0 0 0;
	
background: #242424;
	 /* Old browsers */
background: -webkit-linear-gradient(top, #242424 0%,#143060 100%);
	 /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#242424), color-stop(100%,#143060));
	 /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #242424 0%, #143060 100%);
	 /* FF3.6+ */
background: -ms-linear-gradient(top, #242424 0%,#143060 100%);
	 /* IE10+ */
background: -o-linear-gradient(top, #242424 0%,#143060 100%);
	 /* Opera 11.10+ */
background: linear-gradient(to bottom, #242424 0%,#143060 100%);
	 /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#242424', endColorstr='#143060',GradientType=0 );
	 /* IE6-8 */

}



.header_row__1 {
	min-height: 38px;
	background: #143060;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
	        box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
	}



.header_user {
	float: left;
}
.header_user li {
	float: left;
	line-height: 35px;
}
.header_user li ~ li {
	margin: 0 0 0 20px;
}
.header_user li a {
	color: #ffffff;
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}
.header_user li a i {
	margin: 0 7px 0 0;
	line-height: 36px;
	color: #6bc4ca;
}

.header_user li a:hover {
	color: #6bc4ca;
}



.header_currency {
	float: right;
}
.header_currency .jq-selectbox {
	width: 55px;
}
.header_currency .jq-selectbox__select {
}
.header_currency .jq-selectbox__select-text {
	width: 100% !important;
	line-height: 35px;
	color: #ffffff;
}
.header_currency .jq-selectbox__trigger i {
	font-size: 18px;
	color: #8c98ac;
	right: 0;
	top: 8px;
}

.header_currency .jq-selectbox__dropdown {
	width: 55px !important;
	background: #143060;
	top: 38px !important;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
	        box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
	}
.header_currency .jq-selectbox__dropdown ul {
}
.header_currency .jq-selectbox__dropdown ul li {
	padding: 3px 0;
	color: #ffffff;
	text-align: center;
	-webkit-box-shadow: inset 0 1px 0 0 rgba(0,0,0,0.4);
	        box-shadow: inset 0 1px 0 0 rgba(0,0,0,0.4);
	}

.header_currency .jq-selectbox__dropdown ul li:hover,
.header_currency .jq-selectbox__dropdown ul li.sel {
	color: #6bc4ca;
}



.header_row__2 {
	padding: 40px 0 55px 0;
}



#logo {
	float: left;
}
#logo a {
}
#logo a span {
	margin: 0 0 0 10px;
	font: 600 60px/70px Open Sans;
	color: #ffffff;
	text-transform: uppercase;
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}
#logo a span ~ span {
	font-weight: 300;
	color: #c7af94;
}

#logo a:hover span {
	color: #6bc4ca;
}
#logo a:hover span ~ span {
	color: #ffffff;
}



.header_cart {
	float: right;
	margin: 15px 0 0 0;
}
.header_cart a {
	color: #ffffff;
	text-transform: uppercase;
}
.header_cart a i {
	width: 38px;
	height: 38px;
	display: inline-block;
	margin: 0 5px 0 0;
	padding: 0 1px 0 0;
	background: #ffffff;
	font-size: 20px;
	line-height: 37px;
	color: #ffffff;
	text-align: center;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	-webkit-box-shadow: inset 0 0 0 20px #6bc4ca;
	        box-shadow: inset 0 0 0 20px #6bc4ca;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}
.header_cart a b {
}
.header_cart a span {
	font-size: inherit;
	line-height: 37px;
}
.header_cart a span.count {
	margin: 0 4px;
}
.header_cart a span.money {
	color: #6bc4ca;
}

.header_cart a:hover i {
	color: #6bc4ca;
	-webkit-box-shadow: inset 0 0 0 0 #6bc4ca;
	        box-shadow: inset 0 0 0 0 #6bc4ca;
	text-shadow: 0 0 0 rgba(0, 0, 0, .0);
	}



.header_search {
	float: right;
	margin: 15px 0 0 0;
	position: relative;
	z-index: 1000;
}
.header_search .search_button {
	width: 38px;
	height: 38px;
	display: inline-block;
	margin: 0 5px 0 0;
	background: #ffffff;
	font-size: 20px;
	line-height: 37px;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	-webkit-box-shadow: inset 0 0 0 20px #6bc4ca;
	        box-shadow: inset 0 0 0 20px #6bc4ca;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}
.header_search .search_button:hover {
	color: #6bc4ca;
	-webkit-box-shadow: inset 0 0 0 0 #6bc4ca;
	        box-shadow: inset 0 0 0 0 #6bc4ca;
	text-shadow: 0 0 0 rgba(0, 0, 0, .0);
	}

.header_search form {
	width: 250px;
	height: 48px;
	padding: 8px;
	background: #ffffff;
	border-top: 4px solid #6bc4ca;
	position: absolute;
	right: -55px;
	top: 55px;
	display: none;
	}
.header_search form div {
	width: 100%;
	height: 100%;
	padding: 0 26px 0 0;
	border: 1px solid #d0d0d0;
}
.header_search form div:before {
	content: '';
	width: 0;
	height: 0;
	display: block !important;
	border-style: solid;
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent #6bc4ca transparent;
	position: absolute;
	right: 73px;
	top: -9px;
	z-index: 100;
}

.header_search #search-field {
	width: 100%;
	height: 26px;
	float: left;
	padding: 0 0 0 7px;
	background: none;
	border: none;
}
.header_search #search-submit {
	width: 26px;
	height: 26px;
	margin: 0 -28px 0 0;
	font-size: 13px;
	color: #888888;
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}
.header_search #search-submit i {
	line-height: 18px;
}
.header_search #search-submit:hover {
	color: #6bc4ca;
}



/* 8.2 NAVIGATION */
#navigation {
	border-bottom: 5px solid #6bc4ca;
	position: relative;
	z-index: 999;
}
#navigation nav {
	height: 60px;
	background: #c7af94;
}


.sf-menu {
}
.sf-menu li {
	position: relative;
}

.sf-menu > li {
	float: left;
	border-right: 1px solid #143060;
}
.sf-menu > li ~ li {
}
.sf-menu > li > a {
	height: 60px;
	display: block;
	padding: 0 25px;
	font: normal 18px/60px Open Sans;
	color: #ffffff;
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}

.sf-menu > li.active > a,
.sf-menu > li:hover > a {
	-webkit-box-shadow: inset 0 -60px 0 0 #6bc4ca;
	        box-shadow: inset 0 -60px 0 0 #6bc4ca;
	}


.sf-menu ul {
	width: 200px !important;
	position: absolute;
	left: 0;
	top: 65px;
	z-index: 1000;
}
.sf-menu ul li {
	padding: 1px 0 0 0;
	background: #242424;
	-webkit-box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.15);
	        box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.15);
	}
.sf-menu ul li ~ li {
}
.sf-menu ul li a {
	display: block;
	padding: 5px 10px 5px 10px;
	font-size: 13px;
	color: #ffffff;
	-webkit-box-shadow: inset 0 0 0 120px rgba(255,255,255,0.05);
	        box-shadow: inset 0 0 0 120px rgba(255,255,255,0.05);
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}

.sf-menu ul > li a:hover,
.sf-menu ul > li.active a {
	-webkit-box-shadow: inset 0 0 0 0 rgba(255,255,255,0.05);
	        box-shadow: inset 0 0 0 0 rgba(255,255,255,0.05);
	}


#navigation.isStuck {
	width: 100%;
	background: #c7af94;
	left: 0;
	top: 0;
}
#navigation.isStuck .sf-menu > li {
	border-left: 1px solid #143060;
}
#navigation.isStuck .sf-menu > li ~ li {
	border-left: none;
}



/* CUSTOM HEADER BLOCKS */
.custom_header {
	padding: 20px 0;
}

.custom_header .text_block {
	height: 30px;
	-webkit-box-shadow: inset -1px 0 0 0 rgba(255,255,255,0.15);
	        box-shadow: inset -1px 0 0 0 rgba(255,255,255,0.15);
	}
.custom_header .text_block4 {
	-webkit-box-shadow: none;
	        box-shadow: none;
	}

.custom_header i {
	margin: 0 10px 0 0;
	font-size: 24px;
	line-height: 28px;
	color: #6bc4ca;
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}
.custom_header span {
	font-size: 13px;
	line-height: 28px;
	color: #ffffff;
	text-transform: uppercase;
}

.custom_header a {
	display: block;
}
.custom_header a:hover i {
	color: #ffffff;
}



/* 8.3 NIVOSLIDER */

/* 8.4 SHOWCASE */
#showcase {
}

.custom_showcase {
	text-align: center;
}



.custom_showcase1 {
	width: 1680px;
	margin: 0 0 -100px -255px;
	background: #143060;
	text-transform: uppercase;
}
.custom_showcase1 a {
	display: block;
	position: relative;
}
.custom_showcase1 a div {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.custom_showcase1 h3 {
	display: inline-block;
	margin: 100px 0 0 0;
	padding: 25px 30px 0 30px;
	border-top: 5px solid #6bc4ca;
	font: 700 72px/1em Open Sans;
	color: #143060;
}
.custom_showcase1 h4 {
	padding: 7px 0 0 0;
	font: 300 36px/1em Open Sans;
	color: #143060;
}
.custom_showcase1 span {
	display: inline-block;
	margin: 29px 0 0 0;
	padding: 16px 20px 11px 20px;
	background: #6bc4ca;
	border: 3px solid #ffffff;
	font: 700 18px Open Sans;
	color: #ffffff;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}
.custom_showcase1 span i {
	width: 38px;
	height: 38px;
	display: inline-block;
	margin: -6px 0 0 10px;
	padding: 0 0 0 1px;
	background: #6bc4ca;
	border: 2px solid #ffffff;
	font-size: 18px;
	line-height: 32px;
	color: #ffffff;
	text-align: center;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	}
.custom_showcase1 span:hover {
	background: #ffffff;
	border-color: #6bc4ca;
	color: #6bc4ca;
}



.custom_showcase2,
.custom_showcase3,
.custom_showcase4 {
}

.custom_showcase2 a,
.custom_showcase3 a,
.custom_showcase4 a {
	display: block;
	padding: 4px 4px 44px 4px;
	background: #ffffff;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}

.custom_showcase2 h3,
.custom_showcase3 h3,
.custom_showcase4 h3 {
	padding: 21px 15px 0 15px;
	font: normal 30px/1em Open Sans;
	color: #143060;
	text-transform: uppercase;
}

.custom_showcase2 h4,
.custom_showcase3 h4,
.custom_showcase4 h4 {
	padding: 4px 15px 0 15px;
	font: normal 12px/1em Open Sans;
	color: #8c98ac;
}

.custom_showcase2 b,
.custom_showcase3 b,
.custom_showcase4 b {
	position: absolute;
	left: 50%;
	bottom: -25px;
}

.custom_showcase2 span,
.custom_showcase3 span,
.custom_showcase4 span {
	display: inline-block;
	margin: 0 0 0 -100%;
	padding: 13px 18px 9px 18px;
	background: #6bc4ca;
	border: 2px solid #ffffff;
	font: 700 14px Open Sans;
	color: #ffffff;
	text-transform: uppercase;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}

.custom_showcase2 span i,
.custom_showcase3 span i,
.custom_showcase4 span i {
	width: 28px;
	height: 28px;
	display: inline-block;
	margin: -4px 0 0 10px;
	padding: 0 0 0 1px;
	background: #6bc4ca;
	border: 2px solid #ffffff;
	font-size: 14px;
	line-height: 22px;
	color: #ffffff;
	text-align: center;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	}

.custom_showcase2 span:hover,
.custom_showcase3 span:hover,
.custom_showcase4 span:hover {
	background: #ffffff;
	border-color: #6bc4ca;
	color: #6bc4ca;
}



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

.product_listing_main .product_img {
}
.product_listing_main .product_img a {
	display: block;
	padding: 30px;
	background: #ffffff;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}

.product_listing_main .product_info {
}

.product_listing_main .product_price {
	padding: 15px 0 0 0;
}
.product_listing_main .product_price .money {
	margin: 0 7px 0 0;
	font-weight: 300;
	font-size: 24px;
}
.product_listing_main .product_price .compare-at-price {
	font-size: 16px;
	color: #888888;
}

.product_listing_main .product_name {
	padding: 6px 0 0 0;
}

.product_listing_main .product_desc {
}

.product_listing_main .product_links {
	display: inline-block;
	margin: 11px 0 0 0;
	padding: 2px;
	background: #ffffff;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}
.product_listing_main .product_links form {
	float: left;
	padding: 0 2px 0 0;
}

.product_listing_main .product_links a.btn {
	height: 46px;
	padding: 12px 15px 8px 15px;
}
.product_listing_main .product_links a.btn i {
	width: 28px;
	height: 28px;
	display: inline-block;
	margin: -4px 0 0 10px;
	padding: 0 0 0 1px;
	background: #6bc4ca;
	border: 2px solid #ffffff;
	font-size: 14px;
	line-height: 22px;
	color: #ffffff;
	text-align: center;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	}

.product_listing_main .product_links .btn-cart {
	height: 46px;
}
.product_listing_main .product_links .btn-cart i {
	font-size: 20px;
}



.template-index .page_heading {
	margin: 63px 0 0 0;
}



/* 8.6 FOOTER */
#footer {
	background: #ffffff;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}



.custom_footer {
}
.custom_footer h3 {
	padding: 40px 0 10px 0;
	border-bottom: 4px solid #d0d0d0;
	font: normal 20px Open Sans;
	color: #242424;
}
.custom_footer ul {
	padding: 10px 0 0 0;
}
.custom_footer ul li {
	padding: 9px 0 0 0;
}
.custom_footer ul li a {
}

.custom_footer ul li.active a,
.custom_footer ul li a:hover {
}


.custom_footer4 .address_company {
	font-weight: bold;
	color: #6bc4ca;
}



#footer .copyright {
	margin: 45px 0 0 0;
	background: #143060;
}
#footer .copyright p {
	margin: 0;
	padding: 20px 0;
	font-size: 12px;
	color: #ffffff;
}
#footer .copyright a {
	color: #ffffff;
}
#footer .copyright a:hover {
	color: #6bc4ca;
}



/***************************************************************************
                           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;
	background: #8c98ac;
	color: #ffffff;
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}

ul.tags li a:hover,
ul.tags li.active a {
	background: #6bc4ca;
}


.collection_info {
	margin-top: 15px;
}
.collection_info .collection_img {
	text-align: center;
}
.collection_info .collection_img img {
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}
.collection_info .collection_desc .rte {
	margin: 0;
}



/* 9.2 BREADCRUMBS */
.breadcrumb {
	margin: 0 0 25px 0;
	background: #ffffff;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}



/* 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;
	border: 2px solid #ffffff;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}
#pagination span {
	display: block;
	float: left;
}
#pagination span ~ span {
	margin: 0 0 0 2px;
}

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

#pagination span a:hover {
	background: #6bc4ca;
	color: #ffffff;
}
#pagination span.current {
	background: #6bc4ca;
	color: #ffffff;
	cursor: default;
}



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

.column .widget {
}

.column .widget h3.widget_header {
	margin: 0;
	padding: 0 0 8px 0;
	border-bottom: 4px solid #d0d0d0;
	font: 26px Open Sans;
	color: #242424;
}


/* 10.1 LINKS LIST */
.column .widget ul.list {
}
.column .widget ul.list li {
	padding: 8px 0 10px 0;
	border-bottom: 1px solid #d0d0d0;
}
.column .widget ul.list li ~ li {
}
.column .widget ul.list li a {
	font-size: 16px;
	
-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	    -ms-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;

}

.column .widget ul.list li a:hover {
}

.column .widget ul.list li.active a {
	font-weight: 700;
}



/* 10.2 SIDEBAR PRODUCT LISTING */
.product_listing_sidebar .product {
	padding: 15px 0;
	border-bottom: 1px solid #d0d0d0;
	s}

.product_listing_sidebar .product_img {
	width: 80px;
	float: left;
}
.product_listing_sidebar .product_img a {
	display: block;
	padding: 10px;
	background: #ffffff;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}

.product_listing_sidebar .product_info {
	margin: 0 0 0 95px;
}

.product_listing_sidebar .product_name {
	margin: -6px 0 0 0;
}

.product_listing_sidebar .product_price {
	padding: 5px 0 0 0;
}
.product_listing_sidebar .product_price .money {
	margin: 0 7px 0 0;
	font-weight: 300;
	font-size: 24px;
}
.product_listing_sidebar .product_price .compare-at-price {
	font-size: 16px;
	color: #888888;
}



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

#searchresults {
	margin: 0;
}
#searchresults .search-form {
	margin: 15px 0 0 0;
}
#searchresults .search-form input {
	width: 100%;
	float: left;
	padding: 0 34px 0 10px;
}
#searchresults .search-form button {
	width: 34px;
	height: 34px;
	float: left;
	margin: 0 0 0 -34px;
	background: none;
	border: none;
	font-size: 20px;
	color: #8c98ac;
}
#searchresults .search-form button:hover {
	color: #242424;
}
#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 #d0d0d0;
}
#searchresults ol li {
	overflow: hidden;
	margin: 0;
	padding: 15px 0;
	border-top: 1px solid #d0d0d0;
}
#searchresults ol li .search-result_image {
	float: left;
	margin-right: 15px;
}
#searchresults ol li .search-result_container {
	padding: 15px 0 0 0;
}



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

.product_wrap {
	padding: 10px 0 0 0;
}



/* 12.1 PRODUCT IMAGES */
#product_image-container {
}

.product_wrap .bxslider {
	margin: 0;
}
.product_wrap .bxslider li {
}
.product_wrap .bxslider li a {
}

.product_image .bx-wrapper {
	overflow: hidden;
	background: #ffffff;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}

.product_wrap #bx-pager {
	width: 360px;
}
.product_wrap #bx-pager a {
	width: 105px;
	overflow: hidden;
	margin: 15px 15px 0 0;
	background: #ffffff;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}



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

.product_wrap .product-price {
	padding: 0;
}
.product_wrap .product-price .money {
	margin: 0 7px 0 0;
	font-weight: 300;
	font-size: 24px;
}
.product_wrap .product-price .compare-at-price {
	font-size: 16px;
	color: #888888;
}

.product_wrap .variants-wrapper {
	padding: 15px 0 0 0;
}
.product_wrap .variants-wrapper label {
	margin-right: 10px;
}

.product_wrap #purchase {
}
.product_wrap #purchase label {
	display: inline-block;
	margin: 0;
	padding: 0 !important;
	line-height: 37px;
}
.product_wrap #purchase #quantity {
	width: 50px;
	height: 37px;
	display: inline-block;
	margin: 0 10px;
	padding: 0;
	outline: none;
	text-align: center;
}
.product_wrap #purchase #add-to-cart {
	width: auto;
	height: 37px;
	padding: 8px 15px;
}
.product_wrap #purchase #add-to-cart i {
	vertical-align: middle;
	margin: 0 5px 0 0;
	font-size: 15px;
	line-height: 1.5em;
	position: relative;
	top: -2px;
}

    
.product_wrap .product_details {
	margin: 15px 0 0 0;
	padding: 10px 0 15px 0;
	border: 1px solid #d0d0d0;
	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_wrap .addthis_toolbox {
	margin: 15px 0 0 0;
	padding: 15px 0 0 0;
	border-top: 1px solid #d0d0d0;
}

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



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



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

ul.product_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 #d0d0d0;
}
.article_header .product_name {
	font-size: 20px;
}
.article_header .product_name a {
}
.article_header .product_name a:hover {
}

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

.article .addthis_toolbox {
	margin: 20px 0;
}


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

.cart-list .item_image {
	text-align: center;
}
.cart-list .item_image a {
	max-width: 100%;
	display: inline-block;
	padding: 15px;
	background: #ffffff;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	        box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	}
.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: #8c98ac;
}

.cart-list .row h3.item_vendor {
	border-bottom: 1px solid #d0d0d0;
	color: #888;
}

.cart-list .item_price {
	padding: 10px 0 0 0;
}
.cart-list .item_price .price {
	line-height: 37px;
}

.cart-list .item_price label {
	padding: 0;
	line-height: 37px;
}
.cart-list .item_price .input-small {
	width: 60px !important;
	height: 37px;
	display: inline-block;
	padding: 5px;
	text-align: center;
}

.cart-list .item_price .total {
	text-align: right;
}
.cart-list .item_price .total h3 {
	vertical-align: baseline;
	border: none;
}

.cart_subtotal {
}
.cart_subtotal h3 {
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid #d0d0d0;
}
.cart_subtotal h3 .money {
	float: right;
}

.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: 15px 0;
	border: 1px solid #d0d0d0;
}

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