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

1. CSS RESET

2. VARIABLES
2.1 CSS3 TRANSITIONS
2.2 COLORS

3. GLOBAL THEME STYLES

4. TYPOGRAPHY
4.1 HEADINGS
4.2 PARAGRAPHS & LISTS
4.3 LINKS
4.4 PRODUCT ATTRIBUTES (name, description, price)
4.5 RTE

5. FORMS & COMPONENTS
5.1 FORMS
5.2 ALERTS
5.3 BUTTONS

6. GLOBAL PAGE LAYOUT

7. MAIN PAGE
7.1 HEADER
7.2 MEGAMENU
7.3 NIVOSLIDER
7.4 SHOWCASE
7.5 MAIN PRODUCT LISTING
7.6 FOOTER

8. COLLECTION PAGES
8.1 PAGES CONTENT
8.2 BREADCRUMBS
8.3 COLLECTION LISTING
8.4 PAGINATION

9. SIDEBAR WIDGETS
9.1 LINKS LIST
9.2 SIDEBAR PRODUCT LISTING

10. SEARCH RESULTS PAGE

11. PRODUCT PAGE
11.1 PRODUCT IMAGES
11.2 PRODUCT INFO
11.3 PRODUCT PAGINATION
11.4 RELATED PRODUCTS

12. BLOG
12.1 POSTS LISTING
12.2 SINGLE POST

13. CUSTOMER PAGES
13.1 LOG IN
13.2 ACCOUNT
13.3 ADDRESSES
13.4 ORDERS

14. CART PAGE
14.1 CART PRODUCTS
14.2 GUEST CHECKOUT

15. CONTACTS PAGE

16. PAGE 404

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



/********************************************************************************************************
                           1. CSS RESET
********************************************************************************************************/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, 
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, input, textarea, button
{
	margin: 0;
	padding: 0;
	border: 0;
	outline: none !important;
	vertical-align: top;
	background: transparent;
	font-weight: normal;
	line-height: 1.5em;
}

ol, ul {
	list-style:none;
}
a, span {
	vertical-align:baseline;
	line-height:inherit;
	font-weight:inherit;
}
b, strong {
	font-weight: bold;
	vertical-align:baseline;
}
i, dfn {
	font-style: italic;
}

img {
	max-width: 100%;
}



/********************************************************************************************************
                           2. VARIABLES
********************************************************************************************************/



/* 2.1 CSS3 TRANSITIONS */






/* 2.2 COLORS */






































/*#c7c6ff*/




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



/* addthis styles */
.addthis_toolbox {
	margin: 15px 0 0 0;
	border-top: 1px solid #e2d1be;
}
.addthis_toolbox > a {
	margin: 15px 15px 0 0 !important;
	padding: 0 !important;
}
.addthis_toolbox .at300b {
	height: 21px;
}

.addthis_button_tweet {
	width: 79px;
}

.addthis_toolbox .fb_iframe_widget {
	display: block;
}

#_atssh {
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
}



/* jquery.formstyler styles for selects */
.jq-selectbox {
	display: block;
	z-index: 1000 !important;
	cursor: pointer;
}

.jq-selectbox__select-text {
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.jq-selectbox__trigger i {
	position: absolute;
	top: 0;
	right: 0;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.jq-selectbox__dropdown {
	width: 100%;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}

.jq-selectbox.opened .jq-selectbox__trigger i {
	-webkit-transform: rotate(180deg);
	   -moz-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	     -o-transform: rotate(180deg);
	        transform: rotate(180deg);
	}



/* misc */
#at15s {
	z-index: 999 !important;
}

#habla_window_div {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
}



/* hex2rgb color converter */




















/* PAGE PRELOADER */
#page_preloader {
	width: 100%;
	height: 100%;
	background: url(../img/bx_loader.gif?6176469077922122421) 50% 50% no-repeat #ffffff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
}



/* 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(161,129,169,.7);
	display: none;
}



/* COOKIES POLICY MESSAGE */
.cookies_container {
	min-height: 60px;
	background: #191919;
	display: none;
}

.cookies_container p {
	display: inline-block;
	margin: 0;
	font-size: 17px;
	line-height: 60px;
	color: #888;
}
.cookies_container p b {
	vertical-align: baseline;
	color: #fff;
}

.cookies_container .cookie_btn {
	height: 40px;
	display: inline-block;
	margin: 10px 0 10px 6px;
	padding: 0 20px;
	border-width: 1px;
	border-style: solid;
	font-weight: bold;
	font-size: 17px;
	line-height: 38px;
	color: #fff;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
	

-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.cookies_container .cookie_ok {
	margin: 10px 0 10px 20px;
	background: #18a439;
	border-color: #18a439;
}
.cookies_container .cookie_no {
	border-color: #585858;
}

.cookies_container .cookie_btn:hover {
	background: #585858;
	border-color: #585858;
}



/* NEWSLETTER POPUP */

#newsletter_popup__wrap {
    min-width: 972px;
    max-width: 972px;
}
#newsletter_popup__wrap .fancybox-inner {
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}
#newsletter_popup__wrap #newsletter_popup {
    text-align: center;
    margin: 0 auto;
    padding: 0 !important;
}

#newsletter_popup .logo {
  margin-top: 0px;
  position: relative;
}
#newsletter_popup .logo a {
  display: inline-block;
}
#newsletter_popup .logo img {
  max-width: 413px;
}

#newsletter_popup h4 {
    font-size: 48px;
    padding-top: 37px;
    padding-bottom: 17px;
    margin: 0;
}

#newsletter_popup p {
    font-size: 18px;
    line-height: 30px;
    margin: 6px auto;
    max-width: 510px;
    color: #c8ae91;
    font-family: Noticia Text;
}

#newsletter_popup__wrap .fancybox-skin {
    position: relative;
    border-radius: 0px;
    padding: 0 !important;
    background: none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}


.newsletter_popup_inside {
    margin-top: -114px;
    padding: 60px 20px 67px !important;
    
    background: url(../img/newsletter_image.png?6176469077922122421) 50% bottom no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    
    background-color: #ffffff;
}

#newsletter_popup form {
    position: relative;
    z-index: 1;
    margin: 44px auto 0;
}
#newsletter_popup fieldset {
    z-index: 1;
    position: relative;
    display: inline-block;
}

#newsletter_popup input[type=email] {
    width: 300px;
    height: 52px;
    font-size: 20px;
  	line-height:20px;
    padding: 15px 28px;
    box-shadow:none !important;
    border: 0px;
    background: #ff758d;
    color: #ffffff;
}
#newsletter_popup form .btn {
    font-size: 30px;
    width: 52px;
    height: 52px;
    border-radius: 4px;
    text-align: center;
    padding: 0;
    background-color: #cfe070;
}
#newsletter_popup .btn i {
    line-height: 52px;
    font-size: 30px;
}
#newsletter_popup form .btn:hover {
   background: #a181a9;
}

#newsletter_popup .newsletter_off__wrap {
    margin-top: 28px;
}
#newsletter_popup .newsletter_off__wrap .btn {
    font-size: 20px;
    padding: 11px 25px;
    text-transform: lowercase;
    background: #cfe070;
}
#newsletter_popup .newsletter_off__wrap .btn:hover {
    background: #ff758d;
}

#newsletter_popup .newsletter_error {
    margin: 0;
    font-weight: bold;
    font-size: 11px;
    color: #f00;
    position: absolute;
    left: 0px;
    right: 52px;
    max-width: 100%;
    bottom: -30px;
}
#newsletter_popup .newsletter_success {
    font-weight: bold;
    color: #119000;
    text-align: center;
    padding-top: 7px;
}
#newsletter_popup__close {
    right: -54px !important;
    top: 61px !important;
    width: 43px;
    height: 43px;
    padding-top: 8px;
    padding-left: 5px;
    text-align: center;
    border-radius: 3px;
    background: #ff758d;
    
-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;
	
}
#newsletter_popup__close:after {
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    content: '+';
    color: #ffffff;
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    transform:rotate(45deg);
}
#newsletter_popup__close:hover {
    background: #a181a9;
}
.fancybox-overlay.fancybox-overlay-fixed {
    background: rgba(0,0,0v,.5);
}


/* GOOGLE MAPS */
#google_map,
#google_map iframe {
	width: 100% !important;
	height: 345px !important;
	background: #e7e7e6;
}

#google_map img {
	max-width: none !important;
}




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

body {
	font: normal 16px "Noticia Text";
	color: #8c7255;
  	background: #a181a9;
}



/* 4.1 HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 15px 0;
	font: 30px "Noticia Text";
	color: #fe718b;
}

h2,
h3,
h4 {
	font-size: 16px;
}

h5,
h6 {
	font-size: 14px;
}

.page_heading {
	margin: 0;
	text-align: center;
	font-size: 30px;
}
.page_heading a {
	float: right;
}

.page_heading_bg {
	padding-top: 73px;
    background: url(../img/heading_bg_img_dark.png?6176469077922122421) 50% 0 no-repeat;
}
.page_heading__ins span {
	display: block;
	padding-top: 0px;
	font-size: 24px;
	line-height: 1.7em;
	color: #c8ae91;
}
.page_heading_bg.light {
	color: #ffffff;
    background: url(../img/heading_bg_img_light.png?6176469077922122421) 50% 0 no-repeat;
}



/* 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: #b49879;
	text-decoration: none;
	-webkit-transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out, box-shadow .3s ease-in-out;
    transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out, box-shadow .3s ease-in-out;
}

a:hover,
a:active {
	color: #fe718b;
}



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


.product_desc {
	font-size: 14px;
	color: #7c6f6c;
}


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



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



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

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

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 #e2d1be;
	font: normal 13px 'Arial';
	color: ;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
	box-shadow: none;
}

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

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

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

select:focus,
select.form-control:focus,
textarea:focus,
textarea.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="telephone"]:focus {
	border-color: #aaa;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
	        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
}


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



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

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



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

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

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


/* 5.3 BUTTONS */
.btn,
.btn:focus,
.btn a,
.btn-info,
.btn-primary {
    padding: 9px 26px 14px;
    font-size: 20px;
    border-radius: 6px;
    background: #ff758d;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    
-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;
	
}

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

.btn-cart,
.btn-cart:focus {
	padding: 0;
	background: #cfe070;
}
.btn i {
	font-size: 18px;
	width: 56px;
	height: 56px;
	line-height: 56px;
}

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

.btn-cart:hover {
	background: #fe718b;
}

.link {
	font-size: 40px;
	font-family: 'Lobster', cursive;
	text-shadow:4px 4px rgba(0,0,0,0.1);
	color: #ffffff;
}
.link:after {
	padding-left: 9px;
	vertical-align: middle;
	font-size: 17px;
	content: "\f054";
	font-family:'FontAwesome';
	color: #ffffff;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}



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

html, body {
	height: 100%;
}

#wrapper1 {
	position: relative;
	z-index: 1;
	background:  #ffffff;
}
#wrapper2 {
	overflow: hidden;
}

.container {
	padding: 0;
}



/* outdated browsers notification */
.old_browsers a {
	display: block;
	padding: 20px 0;
	background: #ffa200;
	font-size: 20px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, .3);
    -webkit-transition: color .4s ease-in-out;
	transition: color .4s ease-in-out;
}
.old_browsers a i {
	margin: 0 5px 0 0;
	font-size: 30px;
	color: #e90b00;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, .5);
}
.old_browsers a:hover {
	color: #e90b00;
}



/********************************************************************************************************
                           7. MAIN PAGE
********************************************************************************************************/

/* 7.1 HEADER */
#header {
	margin-bottom: 32px;
}
.header_top_wr {
	position: relative;
	z-index: 4;
	padding-top: 102px;
	background: #a181a9;
	background: url(../img/header_bg_img.png?6176469077922122421) 0 0 repeat #a181a9;
}
#header,
#header a {
	position: relative;
	font-size: 15px;
	text-transform: uppercase;
	color: #ffffff;
}

.header_top {
	position: relative;
	z-index: 1;
}
.header_top:after {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	content: "";
	opacity: .66;
	z-index: -1;
	background: #9594fc;
}


#logo {
	text-align: center;
	position: relative;
}
#logo a {
	text-align:center;
	display: block;
	height: 306px;
	position: relative;
	z-index: 10;
	margin-top: -170px;
}
#logo b {
	font-size: 20px;
}
#logo:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	height: 136px;
	z-index: 0;
	background: #ffffff;
}
.logo_ins {
	display: inline-block;
}




.header_user {
	float: left;
	padding-top: 31px;
}
.header_user li {
	display: inline-block;
}
.header_user li + li {
	margin-left: 25px;
}
.header_user li a {
	position: relative;
	line-height: 1.5em;
}
.header_user li a:before {
	position: relative;
	padding-right: 11px;
	content: "";
	font-family: FontAwesome;
}
.header_user li:first-child a:before {
	content: " ";
}
.header_user li:first-child + li a:before {
	content: " ";
}

#header .header_user a:hover {
	color: #fff9a7;
}

.header_user a:after {
	bottom: -9px;
	left: 0;
	right: 100%;
	height: 2px;
	content: "";
	position: absolute;
	opacity: .8;
	background: #ffffff;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.header_user a:hover:after {
	right: 0;
	background: #fff9a7;
}


.header_top_ins {
	position: relative;
	z-index: 10;
}

.header_top_right {
	float: right;
	text-align: right;
}

.checkout {
	display: inline-block;
	padding: 31px 44px 0 20px;
}
.checkout a {
	position: relative;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
#header .checkout a:hover {
	color: #fff9a7;
}

.checkout a:after {
	bottom: -7px;
	top: -6px;
	left: -26px;
	width: 1px;
	content: "";
	position: absolute;
	opacity: .4;
	background: #ffffff;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.checkout a:before {
	bottom: -9px;
	left: 0;
	right: 100%;
	height: 2px;
	content: "";
	position: absolute;
	opacity: .8;
	background: #ffffff;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.checkout a:hover:before {
	right: 0;
	background: #fff9a7;
}


.header_cart {
	display: inline-block;
	padding: 31px 28px 26px;
}
.header_cart a {
	display: inline-block;
	position: relative;
}
.header_cart a i {
	font-size: 20px;
	padding: 1px 5px 0 0;
}
.header_cart a span.count {
	padding: 0 4px;
	opacity: .6;
}
.header_cart a:before {
	bottom: -9px;
	left: 0;
	right: 100%;
	height: 2px;
	content: "";
	position: absolute;
	opacity: .8;
	background: #ffffff;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.header_cart a i,
.header_cart a span,
.header_cart a:before {
  	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}

.header_cart a:hover:before {
	right: 0;
}
.header_cart a:hover i,
.header_cart a:hover span {
	color: #fff9a7;
}
.header_cart a:hover:before {
	background: #fff9a7;
}


.header_currency {
	display: inline-block;
	margin: -50px 11px 0 60px;
	text-align: left;
}
.header_currency select {
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
}
.header_currency .jq-selectbox {
	width: 83px;
	border-radius: 5px;
	background: #f5be81;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.header_currency .jq-selectbox__select {
	height: 51px;
	padding: 0 30px 0 22px;
}
.header_currency .jq-selectbox__select-text {
	line-height: 51px;
	color: #ffffff;
}
.header_currency .jq-selectbox__trigger i {
	right: 18px;
	top: 18px;
}
.header_currency:hover .jq-selectbox,
.header_currency .jq-selectbox.opened {
	background: #ff758d;
}

.header_currency .jq-selectbox__dropdown {
	width: 100% !important;
	top: 52px !important;
	border-radius: 6px;
	padding: 10px 0px;
	color: #ffffff;
	background: #ff758d;
}
.header_currency .jq-selectbox__dropdown ul {
	text-align: center;
}

.header_currency .jq-selectbox__dropdown ul li {
	font-size: 13px;
	color: #ffffff;
}

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



.header_search {
	float:right;
	margin-top:-45px;
	position: relative;
	z-index: 11;
}
.header_search form {
	position:relative;
	border-bottom:1px solid #f5be81;
	width:270px;
	padding-right:70px;
}
.header_search #search-field {
	border:none;
	height:46px;
	width:100%;
	padding-top:13px;
	padding-bottom:13px;
	box-shadow:none !important;
	color: #a181a9;
}
.header_search #search-submit {
	position:absolute;
	right:0px;
	top:0px;
	bottom:0px;
	font-size:20px;
	width:44px;
	padding-top:10px;
	color:#ff758d;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	 
}
.header_search #search-submit:hover {
	color:#a181a9;
}






/* 7.2 MEGAMENU */
#megamenu {
	position: relative;
	z-index: 999;
	background: #ffffff;
}


.sf-menu {
	position: relative;
	text-align: center;
}
.sf-menu > li {
	display: inline-block;
	padding: 0 19px;
}
.sf-menu > li > a {
	font-size: 22px;
	display: block;
	position: relative;
	color: #8c7255;
}

.sf-menu > li + li > a:before {
	position: absolute;
	content: "•";
	left: -25px;
	font-size: 22px;
	top: 0px;
	color: #ff758d;
}

.sf-menu > li.sfHover > a,
.sf-menu > li > a:hover,
.sf-menu > li > a.active {
	color: #ff758d;
}

.sf-menu > li > a.sf-with-ul:after {
	content: "\f107";
	padding-left: 5px;
	font-size: 17px;
	font-family: FontAwesome;
}

.sf-menu .menu_badge {
	position: absolute;
	text-transform: none;
	left: 50%;
	top: -50px;
	display: block;
	padding: 10px 11px 12px;
	border-radius: 5px;
	line-height: 1em;
	text-transform: uppercase;
	white-space: nowrap;
	background: #f5be81;
	font-size:12px;
	color: #ffffff;
	-webkit-transform: translate(-50%,0);
	-moz-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	transform: translate(-50%,0);
}

.sf-menu .menu_badge:before {
	width: 0;
	height: 0;
	content: "";
	position: absolute;
	bottom: -13px;
	left: 50%;
	margin-left:-5px;
	border: 7px solid;
	border-color: #f5be81 transparent transparent  transparent;
}

.sf-menu .megamenu__3 .menu_badge {
	background: #a181a9;
}
.sf-menu .megamenu__3 .menu_badge:before {
	border-color: #a181a9 transparent transparent  transparent;
}

.sf-menu .megamenu__5 .menu_badge {
	background: #ff758d;
}
.sf-menu .megamenu__5 .menu_badge:before {
	border-color: #ff758d transparent transparent  transparent;
}

.sf-menu > li > ul {
	width: 100%;
	position: absolute;
	left: 0;
	top: 30px;
	text-align: left;
	border-radius: 15px;
	-webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.25);
	-moz-box-shadow: 0 1px 5px rgba(0,0,0,0.25);
	box-shadow: 0 1px 5px rgba(0,0,0,0.25);
	background: #ff758d;
	display: none;
}
.sf-menu > li > ul:before {
	position: absolute;
	left: 50%;
	top: 16px;
	width: 200px;
	height: 30px;
	content: "";
	margin-left: -100px;
	background: url(../img/heading_bg_img_light.png?6176469077922122421) no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}
.sf-menu .submenu {
	padding: 60px 60px 40px;
	color: #ffffff;
}
.sf-menu .submenu.container {
	border: 1px solid #e2d1be;
	background: #ffffff;
}

.sf-menu .submenu a {
	font-size: 13px;
	color: #ffffff;
}
.sf-menu .submenu h3 a {
	color: #fff9a7;
}
.sf-menu .submenu h3 a:hover {
	color: #ffffff;
}
.sf-menu .submenu h3 {
	margin: 0;
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.sf-menu .submenu a:hover {
	color: #fff9a7;
}
.sf-menu .submenu ul li + li {
	margin-top: 7px;
}



/* CATALOG */
.megamenu__2 h3 {
	font-size: 14px;
	text-transform: uppercase;
}
.megamenu__2 h3 a {
	font-weight: bold;
}



/* BLOG */
.megamenu__3 .blog_content p {
	font-size: 13px;
	margin: 10px 0;
}
.megamenu__3 a.btn {
	padding: 5px 20px 9px;
	font-size: 20px;
	background: #cfe070;
}
.megamenu__3 a.btn:hover {
	background: #a181a9;
}
.megamenu_blog_img img {
	border-radius: 10px;
}



/* SALE */
.megamenu__4 .product_img {
	text-align: center;
	margin-bottom: 10px;
}
.megamenu__4 .product_img a {
	display: block;
	padding: 20px;
	border-radius: 15px;
	background: #ffffff;
}
.megamenu__4 .product_name a {
	font-size: 15px;
}
.megamenu__4 .product_price {
	margin: 3px 0 0;
}
.megamenu__4 .product_price .money {
	font-size: 20px;
	color: #fff9a7;
}
.megamenu__4 .product_price .compare-at-price {
	font-size: 15px;
}

.megamenu__4 .product_img a:hover {
	background: #fff9a7;
}



/* STICK UP MENU STYLES */
#megamenu.isStuck {
	width: 100%;
	left: 0;
	top: 0;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.25);
	-moz-box-shadow: 0 1px 5px rgba(0,0,0,0.25);
	box-shadow: 0 1px 5px rgba(0,0,0,0.25);
}
#megamenu.isStuck .menu_badge {
	display: none;
}



/* 7.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_corners {
	position: relative;
}
.slider_wrap_corners:after,
.slider_wrap_corners:before,
.nivoSlider:before,
.nivoSlider:after {
	position: relative;
}

.slider_wrap {
	height: 100%;
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 12px auto 0;
}
.slider_wrap_ins {
	padding: 47px 54px;
}
.slider_wrap:after,
.slider_wrap:before,
.slider_wrap_ins:after,
.slider_wrap_ins:before {
	width: 144px;
	height: 144px;
	content: "";
	left: 10px;
	top: 0;
	position: absolute;
	background: url(../img/slider_corners.png?6176469077922122421) 0 0 no-repeat;
}

.slider_wrap:after {
	left: auto;
	right: 10px;
	top: auto;
	bottom: 0;
    -webkit-transform:rotate(180deg);
    -moz-transform:rotate(180deg);
    -ms-transform:rotate(180deg);
	transform:rotate(180deg);
}
.slider_wrap_ins:after {
	bottom: 0;
	right: 10px;
	left:auto;
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
	transform:rotate(90deg);
}
.slider_wrap_ins:before {
	bottom: 0;
	left: 10px;
	top: auto;
    -webkit-transform:rotate(-90deg);
    -moz-transform:rotate(-90deg);
    -ms-transform:rotate(-90deg);
	transform:rotate(-90deg);
}



.slider_wrap_corners {
	position: absolute;
	height: 70px;
	width: 80px;
	overflow: hidden;
	top: 45px;
	left: 49px;
}
.slider_wrap_corners:after {
	position: absolute;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	bottom: 0;
	right: 0;
	z-index: 100;
	content: "";
	background: #ffffff;
}

.slider_wrap_corners.corner2 {
	left: auto;
	right: 49px;
	bottom: 46px;
	top: auto;
}
.slider_wrap_corners.corner2:after {
	left: 0;
	right: auto;
	top: 0;
}
.slider_wrap_corners.corner3 {
	bottom: 46px;
	top: auto;
}
.slider_wrap_corners.corner3:after {
	right: 0;
	top: 0;
}
.slider_wrap_corners.corner4 {
	left: auto;
	right: 49px;
}
.slider_wrap_corners.corner4:after {
	left: 0px;
	bottom: 0;
	top: auto;
	right: auto;
}

.nivo-caption {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	z-index: 8;
	text-align: center;
    -webkit-transform:translate(0,-50%);
    -moz-transform:translate(0,-50%);
    -ms-transform:translate(0,-50%);
    transform:translate(0,-50%);
    display: none;
}

.nivo-controlNav {
	width: 100%;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
}
.nivo-controlNav a {
	display: inline-block;
	cursor: pointer;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	margin: 0px 6px;
	background: #e2d1be;
}
.nivo-controlNav a span {
	display: none;
}
.nivo-controlNav a i {
	display: none;
}
.nivo-controlNav a:hover {
	cursor: pointer;
	background: #ff758d;
}
.nivo-controlNav a.active {
	cursor: default;
	background: #ff758d;
}



/* 7.4 SHOWCASE */
#showcase .row {
	margin: 0;
}

.custom_showcase {
	padding: 25px 0.5px 0;
}
.custom_showcase a {
	display: block;
	overflow: hidden;
	border-radius: 6px 6px 0 0;
}

.custom_showcase .ins {
	position: relative;
	padding: 51px 10px 50px 52px;
	z-index: 1;
	border-radius: 6px;
	background: #ff758d;
	transition:all 1s ease;
}
.custom_showcase .ins > div {
	transition:all 1s ease;
}
.custom_showcase .ins:after {
	position: absolute;
	z-index: -1;
	width: 200px;
	height: 100px;
	content: "";
	right: 31px;
	top: 18px;
	transition:all 1s ease;
}

.custom_showcase img {
	margin-top: -5px;
	width: 100%;
	opacity: 1;
	transition: all 1s ease;
}


.custom_showcase__1 a,
.custom_showcase__1 .ins {
	background: #c7c6ff;
}
.custom_showcase__1 .ins:after {
    
    background: url(../img/custom_showcase1_bg.png?6176469077922122421) right top no-repeat;
	  
}
.custom_showcase__2 a,
.custom_showcase__2 .ins {
	background: #cfe070;
}
.custom_showcase__2 .ins:after {
    
    background: url(../img/custom_showcase2_bg.png?6176469077922122421) right top no-repeat;
	  
}
.custom_showcase__3 a,
.custom_showcase__3 .ins {
	background: #fe718b;
}
.custom_showcase__3 .ins:after {
    
    background: url(../img/custom_showcase3_bg.png?6176469077922122421) right top no-repeat;
	  
}

.custom_showcase h3,
.custom_showcase h4 {
	color: #ffffff;
}

.custom_showcase h3 {
	font-size: 36px;
	margin: 0;
}
.custom_showcase h4 {
	font-size: 24px;
	margin: 0;
}

.custom_showcase a:hover img {
	opacity: .5;
}



/*CUSTOM TOP*/

.custom_top__wr {
	margin: 43px 0 41px;
}
.custom_top {
    margin-top: -112px;
    background-color: #bc95aa;
    
    background-image: url(../img/custom_top_img.jpg?6176469077922122421);
    background-position: 50% 0;
    background-repeat: no-repeat;
      
}

.custom_top__wr .page_heading__ins {
	display: inline-block;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 0 40px 68px;
	min-width: 495px;
}
.custom_top__wr .page_heading__ins:after {
	position: absolute;
	content: "";
	left: -60px;
	bottom: -1px;
	right: -60px;
	border-radius: 50%;
	z-index: -1;
	height: 590px;
	background: #ffffff;
}

.custom_top__ins {
	padding: 177px 7.3% 107px;
}

.custom_top__ins_text {
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 22px 20px 49px;
}
.custom_top__ins_text:after {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	content: "";
	opacity: .66;
	z-index: -1;
	border-radius: 5px;
	background: #ff758d;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.custom_top__ins_text h3 {
	padding-bottom: 19px;
	font-size: 72px;
	font-family: 'Lobster', cursive;
	text-shadow:4px 4px rgba(0,0,0,0.1);
	color: #fff9a7;
}
.custom_top__ins_text h3 span {
	display: block;
	line-height: 0.75em;
	color: #ffffff;
}
.custom_top__ins_text .link:hover,
.custom_top__ins_text .link:hover:after {
	color: #fff9a7;
}



/* categories offered */
.cat_1_off {
	position: relative;
	margin-top: 94px;
	padding-top: 40px;
	padding-bottom: 74px;
	background: #ce7274;
	
    background: url(../img/homepage_blog_bg.jpg?6176469077922122421) 50% 0 no-repeat;
	
}
.cat_1_off {
	padding-top: 40px;
	overflow: hidden;
}
.cat_1_off .page_heading {
	padding-top: 83px;
	font-size: 36px;
	font-weight: bold;
}
.cat_1_off__article {
	padding-top: 59px;
}
.cat_1_off__article_ins {
	padding: 37px 51px 51px;
	border-radius: 10px;
	background: #ffffff;
}
.cat_1_off__date {
	font-size: 18px;
	color: #a181a9;
}
.cat_1_off__title,
.cat_1_off__title a {
	font-size: 27px;
	color: #ff758d;
}
.cat_1_off__title {
	margin-top: 28px;
}
.cat_1_off_img img {
	border-radius: 10px;
}
.cat_1_off_img .blog_img {
	margin-top: 31px;
	margin-bottom: 23px;
}
.cat_1_off__content p {
	line-height: 30px;
}
.cat_1_off__article .btn {
	margin-top: 11px;
}

.cat_1_off__title a:hover {
	color: #cfe070;
}

/* */

.cat_2_off {
	position: relative;
	margin-top: 94px;
	padding-top: 40px;
	padding-bottom: 74px;
	background: #ce7274;
	
    background: url(../img/test.jpg?6176469077922122421) 50% 0 no-repeat;
	
}
.cat_2_off {
	padding-top: 40px;
	overflow: hidden;
}
.cat_2_off .page_heading {
	padding-top: 83px;
	font-size: 36px;
	font-weight: bold;
}
.cat_2_off__article {
	padding-top: 59px;
}
.cat_2_off__article_ins {
	padding: 37px 51px 51px;
	border-radius: 10px;
	background: #ffffff;
}
.cat_2_off__date {
	font-size: 18px;
	color: #a181a9;
}
.cat_2_off__title,
.cat_2_off__title a {
	font-size: 27px;
	color: #ff758d;
}
.cat_2_off__title {
	margin-top: 28px;
}
.cat_2_off_img img {
	border-radius: 10px;
}
.cat_2_off_img .blog_img {
	margin-top: 31px;
	margin-bottom: 23px;
}
.cat_2_off__content p {
	line-height: 30px;
}
.cat_2_off__article .btn {
	margin-top: 11px;
}

.cat_2_off__title a:hover {
	color: #cfe070;
}


/* */


.cat_3_off {
	position: relative;
	margin-top: 94px;
	padding-top: 40px;
	padding-bottom: 74px;
	background: #ce7274;
	
  background: url(../img/homepage_blog_bg.jpg?6176469077922122421) 50% 0 no-repeat;
	
}
.cat_3_off {
	padding-top: 40px;
	overflow: hidden;
}
.cat_3_off .page_heading {
	padding-top: 83px;
	font-size: 36px;
	font-weight: bold;
}
.cat_3_off__article {
	padding-top: 59px;
}
.cat_3_off__article_ins {
	padding: 37px 51px 51px;
	border-radius: 10px;
	background: #ffffff;
}
.cat_3_off__date {
	font-size: 18px;
	color: #a181a9;
}
.cat_3_off__title,
.cat_3_off__title a {
	font-size: 27px;
	color: #ff758d;
}
.cat_3_off__title {
	margin-top: 28px;
}
.cat_3_off_img img {
	border-radius: 10px;
}
.cat_3_off_img .blog_img {
	margin-top: 31px;
	margin-bottom: 23px;
}
.cat_3_off__content p {
	line-height: 30px;
}
.cat_3_off__article .btn {
	margin-top: 11px;
}

.cat_3_off__title a:hover {
	color: #cfe070;
}




/* BLOG */
.homepage_blog {
	position: relative;
	margin-top: 94px;
	padding-top: 40px;
	padding-bottom: 74px;
	background: #ce7274;
	
    background: url(../img/homepage_blog_bg.jpg?6176469077922122421) 50% 0 no-repeat;
	
}
.homepage_blog {
	padding-top: 40px;
	overflow: hidden;
}
.homepage_blog .page_heading {
	padding-top: 83px;
	font-size: 36px;
	font-weight: bold;
}
.homepage_blog__article {
	padding-top: 59px;
}
.homepage_blog__article_ins {
	padding: 37px 51px 51px;
	border-radius: 10px;
	background: #ffffff;
}
.homepage_blog__date {
	font-size: 18px;
	color: #a181a9;
}
.homepage_blog__title,
.homepage_blog__title a {
	font-size: 27px;
	color: #ff758d;
}
.homepage_blog__title {
	margin-top: 28px;
}
.homepage_blog_img img {
	border-radius: 10px;
}
.homepage_blog_img .blog_img {
	margin-top: 31px;
	margin-bottom: 23px;
}
.homepage_blog__content p {
	line-height: 30px;
}
.homepage_blog__article .btn {
	margin-top: 11px;
}

.homepage_blog__title a:hover {
	color: #cfe070;
}















/* 7.5 MAIN PRODUCT LISTING */
.product {
	padding-bottom: 0px;
}
.product .product_img .prod_img_ins {
	position: relative;
	display: block;
}
.product .product_img {
	margin-bottom: 58px;
}
.product .product_img a {
	display: block;
	position: relative;
	padding: 0 40px;
}
.product .product_left {
	float: left;
}
.product .product_name {
	line-height: 1em;
	padding-top: 2px;
}
.product .product_price {
	padding-top: 6px;
	font-size: 24px;
}

.product .product_links {
	float: right;
}

.product .product_price .compare-at-price {
	font-size: 15px;
	line-height: 1em;
}


.product_listing_main .product {
	margin: 30px 0 0 0;
	padding-top: 25px;
}
.product_listing_main .product {
	margin-top: 30px;
}

.product_listing_main .product_img img {
	background-color: #ffffff;
	position: relative;
	z-index: 1;
}
.product_listing_main .product_img .img__2 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	opacity: 0;
}  

.product_listing_main .product_img span.product_badge {
	display: block;
	padding: 5px 10px;
	border-radius: 5px;
	line-height: 1.5em;
    position: absolute;
    top: 0;
    z-index: 100;
	color: #ffffff;
}
.product_listing_main .product_img span.new {
    left: 0;
	background: #a181a9;
}
.product_listing_main .product_img span.sale {
    right: 0;
	background: #ff758d;
}

.product_listing_main .product_links form {
	display: inline-block;
}
.product_listing_main .product .prod_inside {
	padding-bottom: 30px;
	position: relative;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}

.product_border {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 25px;
	overflow: hidden;
}
.product_listing_main .product .product_border:after {
	content: "";
	position: absolute;
	left: -100px;
	right: -100px;
	bottom: 0px;
	height: 1px;
	background: #e2d1be;
	transition: all .8s ease;
}
.product_listing_main .product:hover .product_border:after {
	bottom: 5px;
	height: 1px;
	background: #f5be81;
}


.product_listing_related .product .product_img a {
	padding: 0 20px;
}
.product_listing_related .product .product_img {
	margin-bottom: 30px;
}



/* HOMEPAGE CAROUSEL */
.index-scope .bx-wrapper {
	max-width: 100% !important;
	margin: 43px 0 0 0;
	border-top: 1px solid #e2d1be;
}
.homepage_carousel .product + .product {
	margin-top: 43px;
}
.homepage_carousel .product {
	padding-top: 95px;
}

.homepage_carousel .prod_wr {
	width: 300px !important;
}

.homepage_carousel .product {
	margin: 0;
}



.index-scope .bx-controls a {
	width: 30px;
	height: 30px;
	display: block;
	overflow: hidden;
	margin: -15px 0 0 0;
	text-align: center;
	position: absolute;
	top: 50%;
	z-index: 99;
	background: rgba(161,129,169,.7);
-webkit-border-radius: 5px;
	        border-radius: 5px;

-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}

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

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

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

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



/* 7.6 FOOTER */
footer {
	padding-top:46px;
	padding-bottom:40px;
	background:#a181a9;
}
footer,
footer a {
	color:#ffffff;
}
footer a:hover {
	color:#cfe070;
}

.footer_block {
	padding-top: 30px;
}
.footer_block ul {
	margin-top: 23px;
}

footer h3 {
	margin: 0 0 42px;
	font-size: 24px;
	color: #ffffff;
}

.footer_block {
	width: 22.5%;
	float: left;
}

ul.footer_links li + li {
	margin-top:9px;
}
ul.footer_links li a {
	font-size:18px;
	position:relative;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}

ul.footer_links li.active a,
ul.footer_links li a:hover {
	color: #cfe070;
}

.footer_block__4 {
	width: 32.5%;
}

.contacts_phone {
	margin-top: -8px;
	font-size: 30px;
}
.contacts_email {
	margin-top: 10px;
	font-size: 18px;
}
.contacts_email i {
	margin: 5px 11px 0 0;
	font-size: 17px;
}


.footer_social {
	display:inline-block;
}
.footer_social li {
	display:inline-block;
	margin:0px 3px;
}
.footer_social li a {
	width:55px;
	height:55px;
	display:block;
	border-radius:50%;
	text-align: center;
    position:relative;
    color: #a181a9;
    background:#ffffff;
    
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	
}
.footer_social li i {
	font-size:20px;
	padding-top:18px;
	color:#a181a9;
	
-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;
	
}

.footer_social li a:hover {
	box-shadow:inset 0px 0px 2px 2px #f5be81;
}
.footer_social li a:hover i {
	color: #f5be81;
	-webkit-transform: scale(1.4) translate(0,-3px);
	-moz-transform: scale(1.4) translate(0,-3px);
	-ms-transform: scale(1.4) translate(0,-3px);
	transform: scale(1.4) translate(0,-3px);
}

footer {
	margin-top: 50px;
}
.template-index footer {
	margin-top: 0;
}
footer .copyright {
	position: relative;
	margin-top: 96px;
	padding-top: 29px;
}
footer .copyright:before {
	position: absolute;
	opacity: .5;
	top: 0;
	right: 0;
	left: 0;
	content: "";
	border-top: 1px solid #e2d1be;
}
footer .copyright p {
	font-size: 17px;
}



/* BACK TO TOP BUTTON */
#back_top {
	width: 30px;
	height: 30px;
	display: block;
	margin: 0 0 0 615px;
	border-radius: 5px;
	background: #cfe070;
	text-align: center;
	position: fixed;
	left: 50%;
	bottom: 50px;
	z-index: 999;
}
#back_top i {
	display: block;
	font-size: 15px;
	line-height: 30px;
	color: #ffffff;
}
#back_top:hover {
	background: #ff758d;
}



/********************************************************************************************************
                           8. COLLECTION PAGES
********************************************************************************************************/

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

ul.tags li a:hover,
ul.tags li.active a {
	background: #b49879;
	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 #e2d1be;
	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;
}



/* 8.2 BREADCRUMBS */
.breadcrumb_wrap {
	margin: 45px 0 30px;
}
.breadcrumb {
	margin: 0px;
	color:#ffffff;
	background:#b49879;
	padding:10px 15px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 5px;
	border-radius: 10px;
}
.breadcrumb a,
.breadcrumb > li + li:before {
	color:#ffffff;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	;
}
.breadcrumb a:hover {
	text-decoration: underline;
}



/* 8.3 COLLECTION LISTING */
.collection_listing .collection {
	margin: 30px 0 0 0;
}



/* 8.4 PAGINATION */
#pagination {
	display: inline-block;
	overflow: hidden;
	margin: 30px 0 0 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
#pagination span {
	display: block;
	float: left;
	line-height: 1.5em;
}
#pagination span ~ span {
	margin-left: 1px;
}

#pagination span a,
#pagination span.deco,
#pagination span.current {
	display: block;
	padding: 4px 16px;
	background: #fe718b;
	color: #ffffff;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	;
}

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


/********************************************************************************************************
                           9. SIDEBAR WIDGETS
********************************************************************************************************/

.sidebar_widget ~ .sidebar_widget {
	margin: 30px 0 0 0;
}

.sidebar_widget .widget_header {
	margin: 0;
	font-size: 30px;
}

.sidebar_widget .widget_content {
	margin: 15px 0 0 0;
}



/* 9.1 LINKS LIST */
.sidebar_widget ul {
	padding: 20px 15px;
	border-radius: 10px;
	border: 1px solid #e2d1be;
}
.sidebar_widget ul li ~ li {
	margin: 1px 0 0 0;
}
.sidebar_widget ul li a {
	display: block;
	padding: 7px 0px;
}
.sidebar_widget ul li + li a {
	border-top: 1px solid #e2d1be;
}



/* 9.2 SIDEBAR PRODUCT LISTING */
.sidebar_widget .product {
	padding-bottom: 10px;
}
.sidebar_widget .product +.product {
	border-top: 1px solid #e2d1be;
}
.sidebar_widget .product ~ .product {
	margin: 15px 0 0 0;
	padding-top: 15px;
}

.sidebar_widget .product {
	margin-top:30px;
}
.sidebar_widget .product_img {
	float:left;
	margin-right:10px;
	margin-bottom: 20px;
	width: 100px;
}
.sidebar_widget .product_img a {
	padding: 0;
}
.sidebar_widget .product_info {
	overflow:hidden;
	text-align:left;
}

.sidebar_widget .product_links {
	padding-top: 10px;
	float: none;
}
.sidebar_widget .product_links form {
	display: inline-block;
}

.sidebar_widget .product_price {
	float: none;
}




/********************************************************************************************************
                           10. 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;
	border-radius: 10px;
	color: #a181a9;
}
#searchresults .search-form button {
	width: 34px;
	height: 34px;
	float: left;
	margin: 0 0 0 -34px;
	background: none;
	border: none;
	font-size: 20px;
	color: #b49879;
}
#searchresults .search-form button:hover {
	color: #fe718b;
}
#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 #e2d1be;
}
#searchresults ol li {
	overflow: hidden;
	margin: 0;
	padding: 15px 0;
	border-top: 1px solid #e2d1be;
}
#searchresults ol li .search-result_image {
	float: left;
	margin-right: 15px;
}
#searchresults ol li .search-result_container {
	padding: 15px 0 0 0;
}



/********************************************************************************************************
                           11. PRODUCT PAGE
********************************************************************************************************/



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

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

.zoomWrapper {
	border-radius: 10px;
	border: 1px solid #e2d1be;
}

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



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

#elevatezoom_gallery a {
	border-radius: 5px;
	width: 87px !important;
	display: block;
	margin: 0 12px 0 0;
	border: 1px solid #e2d1be;
}

.product_images .bx-controls a {
	width: 20px;
	height: 20px;
	display: block;
	overflow: hidden;
	margin: -10px 0 0 0;
	line-height: 1em;
	text-align: center;
	position: absolute;
	top: 50%;
	background: rgba(161,129,169,.7);
-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;

-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.product_images .bx-controls a:hover {
	background: rgba(161,129,169,1);
}

.product_images .bx-controls a:before {
	font: 10px/21px 'FontAwesome';
	color: #ffffff;
}

.product_images .bx-controls a.bx-prev {
	left: 0;
}
.product_images .bx-controls a.bx-prev:before {
	content: '\f053';
}
.product_images .bx-controls a.bx-next {
	padding: 0 0 0 1px;
	right: 0;
}
.product_images .bx-controls a.bx-next:before {
	content: '\f054';
}



/* 11.2 PRODUCT INFO */
.product_wrap .product_name {
	margin: -2px 0 0 0;
	font-size: 25px;
}

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

#purchase label {
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 0 !important;
	line-height: 37px;
	float: left;
}
#purchase #quantity {
	width: 50px;
	height: 37px;
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 9px 0 8px;
	outline: none;
	text-align: center;
	float: left;
}

#purchase .variants-wrapper {
	display: inline-block;
	margin: 15px 10px 0 0;
	float: left;
}
#purchase .variants-wrapper select {
	width: auto;
	height: 37px;
	max-width: 150px;
	padding: 9px 6px;
	float: left;
}

#purchase #add-to-cart {
	height: 37px;
	margin: 15px 10px 0 0;
	padding: 0px 15px;
	float: left;
}


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

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



/* 11.3 PRODUCT PAGINATION */
.product_wrap .pagination_product {
	width: 100%;
	overflow: hidden;
	list-style-type: none;
	margin: 15px 0;
	padding: 0;
}
.product_wrap .pagination_product li.left-arrow {
	float: left;
}
.product_wrap .pagination_product li.right-arrow {
	float: right;
}



/* 11.4 RELATED PRODUCTS */
.widget_related_products h3 {
	margin: 30px 0 0 0;
	font-size: 30px;
}

ul.product_listing_related {
	list-style-type: none;
}



/********************************************************************************************************
                           12. BLOG
********************************************************************************************************/

/* 12.1 POSTS LISTING */

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

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

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

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

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



/* 12.2 SINGLE POST */
.article_meta-comments {
	float: right;
	padding: 3px 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;
}
#comments .comment-author {
	word-wrap: break-word;
}

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




/********************************************************************************************************
                           13. CUSTOMER PAGES
********************************************************************************************************/

/* 13.1 LOG IN */

/* 13.2 ACCOUNT */

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



/* 13.3 ADDRESSES */

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

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


.address_table .address_title {
	vertical-align: baseline;
}
.address_table .address_title .address_actions {
	vertical-align: baseline;
	float: right;
	margin: 0 0 0 15px;
	text-transform: none;
}
.address_table .address_title .address_actions span {
	vertical-align: baseline;
}


ul.address {
	list-style-type: none;
}



/* 13.4 ORDERS */
.order_date {
	margin: 15px 0 0 0;
}

#order_details {
	margin: 30px 0 0 0;
}

#customer_orders  {
	margin-top: 20px;
}
#customer_orders th {
	vertical-align: middle;
	border-top: 1px solid #dedcdc;
}

.template-customers-order .page_heading {
	font-size: 20px;
}



/********************************************************************************************************
                           14. CART PAGE
********************************************************************************************************/

/* 14.1 CART PRODUCTS */
.cart-list {
	overflow: hidden;
}

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

.cart-list .item_image {
	text-align: center;
}
.cart-list .item_image a {
	width: 195px;
	display: block;
	margin-bottom: 10px;
}
.cart-list .item_image a img {
	max-width: 100%;
}

.cart-list .product_name {
	margin: 0 10px 0 0;
}

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

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

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

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

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

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

.cart_buttons {
	margin: 30px 0;
}

.cart_instructions textarea {
	width: 100%;
}

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



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



/********************************************************************************************************
                           15. CONTACTS PAGE
********************************************************************************************************/

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

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

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



/********************************************************************************************************
                           16. PAGE 404
********************************************************************************************************/
.template-404 h2,
.template-404 h2 a {
	vertical-align: baseline;
}