<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 3319:0 All "@import" rules must come first
Line 3344:1 Comments in CSS use "/* ... */" instead of "//"
Line 3356:8 Comments in CSS use "/* ... */" instead of "//"
Line 3366:5 Comments in CSS use "/* ... */" instead of "//"

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

1. CSS RESET

2. VARIABLES
2.1 GRADIENTS
2.2 CSS3 TRANSITIONS

3. GLOBAL THEME STYLES
3.1 HOVERS

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

5. FORMS &amp; COMPONENTS
5.1 FORMS
5.2 ALERTS
5.3 BUTTONS

6. GLOBAL PAGE LAYOUT

7. SIDEBAR CONFIGURATION

8. MAIN PAGE
8.1 HEADER
8.2 NAVIGATION
8.3 NIVOSLIDER
8.4 SHOWCASE
8.5 MAIN PRODUCT LISTING
8.6 FOOTER

9. COLLECTION PAGES
9.1 PAGES CONTENT
9.2 BREADCRUMBS
9.3 COLLECTION LISTING
9.4 PAGINATION

10. SIDEBAR WIDGETS
10.1 LINKS LIST
10.2 SIDEBAR PRODUCT LISTING

11. SEARCH RESULTS PAGE

12. PRODUCT PAGE
12.1 PRODUCT IMAGES
12.2 PRODUCT INFO
12.3 PRODUCT PAGINATION
12.4 RELATED PRODUCTS

13. BLOG
13.1 POSTS LISTING
13.2 SINGLE POST

14. CUSTOMER PAGES
14.1 LOG IN
14.2 ACCOUNT
14.3 ADDRESSES
14.4 ORDERS

15. CART PAGE
15.1 CART PRODUCTS
15.2 GUEST CHECKOUT

16. CONTACTS PAGE

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



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

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

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

img {
    max-width: 100%;
}



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

/* 2.1 GRADIENTS */
























/* 2.2 CSS3 TRANSITIONS */






/***************************************************************************
                           3. GLOBAL THEME STYLES
***************************************************************************/

/* hiding placeholder text on focus in webkit, thanks to http://www.kolodvor.net/2012/03/23/webkit-placeholder-attribute-behavior */
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent;
}



/* clearfix - nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix {
    zoom: 1;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}



/* utility classes: hidden, float left, float right, etc. */
.hidden,
.visuallyhidden {
    display: none;
}
 
.left {
    float: left;
}
.right {
    float: right;
}



/* fancybox styles */
#fancybox-wrap {
    padding: 0 !important;
}
#fancybox-content {
    width: 100% !important;
    text-align: center;
}

#fancybox-title {
    left: 50% !important;
}
#fancybox-title #fancybox-title-float-wrap {
    margin: 0 0 0 -50% !important;
}



/* addthis styles */
.addthis_toolbox {
    margin: 15px 0 0 0;
    border-top: 1px solid #d8d8d8;
}
.addthis_toolbox &gt; a {
    margin: 15px 15px 0 0 !important;
    padding: 0 !important;
}



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


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

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



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























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



/* 3.1 HOVERS */
.hover__1 {
    overflow: hidden;
    position: relative;
}

.hover__1:before,
.hover__1:after {
    content: '';
    width: 100%;
    height: 50%;
    display: block;
    background: rgba(41,41,41,.2);
    position: absolute;
    left: 0;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}

.hover__1:before {
    top: -100%;
}
.hover__1:after {
    bottom: -100%;
}

.hover__1:hover:before {
    top: 0;
}
.hover__1:hover:after {
    bottom: 0;
}



.hover__2 {
    overflow: hidden;
    position: relative;
}

.hover__2:before,
.hover__2:after {
    content: '';
    width: 50%;
    height: 100%;
    display: block;
    background: rgba(41,41,41,.2);
    position: absolute;
    top: 0;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}

.hover__2:before {
    left: -100%;
}
.hover__2:after {
    right: -100%;
}

.hover__2:hover:before {
    left: 0;
}
.hover__2:hover:after {
    right: 0;
}



.hover__3 {
    overflow: hidden;
    position: relative;
}

.hover__3:before {
    content: '';
    width: 100%;
    height: 0;
    display: block;
    background: rgba(41,41,41,.2);
    position: absolute;
    left: 0;
    top: 50%;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}

.hover__3:hover:before {
    height: 100%;
    top: 0;
}



.hover__4 {
    overflow: hidden;
    position: relative;
}

.hover__4:before {
    content: '';
    width: 0;
    height: 100%;
    display: block;
    background: rgba(41,41,41,.2);
    position: absolute;
    left: 50%;
    top: 0;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}

.hover__4:hover:before {
    width: 100%;
    left: 0;
}



.hover__5 {
    overflow: hidden;
    position: relative;
}

.hover__5:before {
    content: '';
    width: 200%;
    height: 200%;
    display: block;
    position: absolute;
    left: -50%;
    top: -50%;
    -webkit-box-shadow: inset 0 0 0 0 rgba(41,41,41,.2);
            box-shadow: inset 0 0 0 0 rgba(41,41,41,.2);
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    
}

.hover__5:hover:before {
    -webkit-box-shadow: inset 0 0 0 300px rgba(41,41,41,.2);
            box-shadow: inset 0 0 0 300px rgba(41,41,41,.2);
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
    }



.hover__6 {
    overflow: hidden;
    position: relative;
}

.hover__6:before,
.hover__6:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(41,41,41,.1);
    position: absolute;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}

.hover__6:before {
    left: -100%;
    top: -100%;
}
.hover__6:after {
    right: -100%;
    bottom: -100%;
}

.hover__6:hover:before {
    left: 0;
    top: 0;
}
.hover__6:hover:after {
    right: 0;
    bottom: 0;
}



.hover__7 {
    overflow: hidden;
    position: relative;
}

.hover__7:before {
    content: '';
    width: 200%;
    height: 200%;
    display: block;
    position: absolute;
    left: -50%;
    top: -50%;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 0 rgba(41,41,41,.2);
            box-shadow: inset 0 0 0 0 rgba(41,41,41,.2);
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    
}

.hover__7:hover:before {
    -webkit-box-shadow: inset 0 0 0 300px rgba(41,41,41,.2);
            box-shadow: inset 0 0 0 300px rgba(41,41,41,.2);
    }



.hover__8 {
    overflow: hidden;
    position: relative;
}

.hover__8:before {
    content: '';
    width: 200%;
    height: 200%;
    display: block;
    position: absolute;
    left: -50%;
    top: -50%;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 300px rgba(41,41,41,.2);
            box-shadow: inset 0 0 0 300px rgba(41,41,41,.2);
    -webkit-transform: scale(.001);
       -moz-transform: scale(.001);
        -ms-transform: scale(.001);
         -o-transform: scale(.001);
            transform: scale(.001);
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    
}

.hover__8:hover:before {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    }



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




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



/* 4.1 HEADINGS */



.column_center h1,
.column_center h2,
.column_center h3,
.column_center h4,
.column_center h5,
.column_center h6 {
    margin: 15px 0;
    padding: 0 0 5px 0;
    font: 16px Roboto Condensed;
    color: #2e2e2e;
    text-transform: uppercase;
}

.column_center h2,
.column_center h3,
.column_center h4 {
    font-size: 15px;
}

.column_center h5,
.column_center h6 {
    font-size: 13px;
}

.column_center .page_heading,
.column .widget h3.widget_header,
.widget_related_products h3 {
    padding: 12px 20px 13px 20px;
    margin: 0 0 30px;
    border-radius: 4px;
    font: bold 16px Roboto Condensed;
    color: #2e2e2e;
    
background: #f5f4f4;
     /* Old browsers */
background: -webkit-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f4f4), color-stop(100%,#b8acac));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f5f4f4 0%, #b8acac 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #f5f4f4 0%,#b8acac 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f4f4', endColorstr='#b8acac',GradientType=0 );
     /* IE6-8 */
;
    border: 1px solid #d8d8d8;
}
.column_center .page_heading a {
    float: right;
}



/* 4.2 PARAGRAPHS &amp; 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: #27ae36;
    text-decoration: none;
}
a:hover, a:focus {
    color: #2e2e2e;
}



/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product &gt; div {
    border-radius: 4px;
    padding: 0 20px 20px 20px;
    border: solid 1px #d8d8d8;
}
.product_img {
    margin-bottom: 9px;
}
.product_img a {
    display: block;
    max-width: 270px;
    height: auto;
    margin: 0 auto 5px;
  	margin-top: 15px;
    padding: 15px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    position: relative;
}
.product_img .sale {
    position: absolute;
    right: 0px;
    top: 10px;
    padding: 4px 9px;
    color: #ffffff;
    background: #e42b24;
}

.product .product_name {
    min-height: 42px;
    margin: 0 0 10px;
}
 .product_name {
    font-weight: normal;
    text-transform: uppercase;
    line-height: 21px;
    font-weight: bold;
    font-size: 15px;
    color: #31a32d;
}
.product .product_name a {
    color: #31a32d;
    
-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: #2e2e2e;
}
.product_price {
    font-size: 20px;
    font-weight: normal;
}
.product_desc {
    font-size: 14px;
    color: #818080;
}


.money {
    color: #2e2e2e;
    font-size: 27px;
    line-height: 1em;
}
.compare-at-price {
    text-decoration: line-through;
    color: #969696;
    font-size: 20px;
}



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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: Roboto Condensed;
}

/***************************************************************************
                           5. FORMS &amp; COMPONENTS
***************************************************************************/

/* 5.1 FORMS */
label {
    font-weight: bold;
    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 #d8d8d8;
    font: normal 13px 'Arial';
    color: #818080;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 0;
    box-shadow: none;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {
    height: 34px;
    line-height: 18px;
    padding-top: 7px;
    padding-bottom: 7px;
}
select,
select.form-control {
    padding: 8px 3px;
}

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

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


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



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

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



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

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

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


/* 5.3 BUTTONS */
.btn,
.btn a,
.btn-info,
.btn-primary {
    box-shadow: none !important;
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 1em;
    padding: 12px 13px 13px; 
    border-radius: 4px;
    color: #292929;
    border: solid 1px #d8d8d8;
    
background: #f5f4f4;
     /* Old browsers */
background: -webkit-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f4f4), color-stop(100%,#b8acac));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f5f4f4 0%, #b8acac 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #f5f4f4 0%,#b8acac 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f4f4', endColorstr='#b8acac',GradientType=0 );
     /* IE6-8 */
;
}

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

.btn-cart {
    position: relative;
    border-radius: 5px;
    border-top: 1px solid #292929;
    
background: #292929;
     /* Old browsers */
background: -webkit-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292929), color-stop(100%,#ed1b1b));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #292929 0%, #ed1b1b 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #292929 0%,#ed1b1b 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292929', endColorstr='#ed1b1b',GradientType=0 );
     /* IE6-8 */
;
    padding: 0px;
    text-transform: uppercase;
    font-size: 15px;
}
.btn-cart .icon-wr {
    position: absolute;
    left: -1px;
    top: -1px;
    bottom: 0;
    text-align: center;
    width: 45px;
    border: 1px solid;
    border-radius: 5px 0px 0px 5px;
    border-color: #e42b24 transparent transparent #e42b24 ;
    
background: #e42b24;
     /* Old browsers */
background: -webkit-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e42b24), color-stop(100%,#6c0c08));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #e42b24 0%, #6c0c08 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #e42b24 0%,#6c0c08 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e42b24', endColorstr='#6c0c08',GradientType=0 );
     /* IE6-8 */
;
}
.btn-cart .icon-wr .arrow {
    display: block;
    position: absolute;
    right: -18px;
    top: 50%;
    margin-top: -9px;
    width: 0;
    height: 0;
    border: 9px solid;
    border-color: transparent transparent transparent #e42b24;
}
.btn-cart .icon-wr i {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: block;
    font-size: 23px;
    vertical-align: middle;
    line-height: 37px;
    border: 1px solid;
    border-color: rgba(204,204,204,0.5) transparent transparent rgba(204,204,204,0.5);
    border-radius: 5px 0px 0px 5px;
    color: #ffffff;
}
.btn-cart .ins {
    display: block;
    padding: 7px 16px 10px 60px;
    border-top: 1px solid #474747;
    color: #ffffff;
}

.btn:hover,
.btn:hover a,
.btn-info:hover,
.btn-info:focus,
.btn-primary:hover {
    border-color: #292929;
    color: #ffffff;
    
background: #292929;
     /* Old browsers */
background: -webkit-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292929), color-stop(100%,#ed1b1b));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #292929 0%, #ed1b1b 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #292929 0%,#ed1b1b 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292929', endColorstr='#ed1b1b',GradientType=0 );
     /* IE6-8 */
;
}
.btn:focus {
    color: #ffffff;
}
.btn-cart:hover { 
    border-top: 1px solid #e42b24;
    
background: #e42b24;
     /* Old browsers */
background: -webkit-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e42b24), color-stop(100%,#6c0c08));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #e42b24 0%, #6c0c08 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #e42b24 0%,#6c0c08 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e42b24', endColorstr='#6c0c08',GradientType=0 );
     /* IE6-8 */
; 
}

.btn-cart:hover .icon-wr {
    border-color: #292929 transparent transparent #292929 ;
    
background: #292929;
     /* Old browsers */
background: -webkit-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292929), color-stop(100%,#ed1b1b));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #292929 0%, #ed1b1b 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #292929 0%,#ed1b1b 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292929', endColorstr='#ed1b1b',GradientType=0 );
     /* IE6-8 */
;
}
.btn-cart:hover .icon-wr .arrow {
    border-color: transparent transparent transparent #292929;
}
.btn-cart:hover .ins {
    border-top: 1px solid #e42b24;
}


.product_links {
    margin-top: 19px; 
}
.product_links form {
    margin-bottom: 6px;
}


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

html, body {
    height: 100%;
}

#wrapper {
    
    background-color: #e1e1e1;
    
}

#wrapper2 {
    overflow: hidden;
}

.container {
    width: auto;
}

.top_shadow {
    position: relative;
    height: 43px;
}

.top_shadow:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 750px;
    
background: #cacaca;
     /* Old browsers */
background: -webkit-linear-gradient(top, #cacaca 0%,#e0e0e0 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cacaca), color-stop(100%,#e0e0e0));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #cacaca 0%, #e0e0e0 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #cacaca 0%,#e0e0e0 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #cacaca 0%,#e0e0e0 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #cacaca 0%,#e0e0e0 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cacaca', endColorstr='#e0e0e0',GradientType=0 );
     /* IE6-8 */
;
    z-index: 0;
}

#main {
    margin-top: 1px;
}

.wrapper3 {
    position: relative;
    z-index: 9;
    max-width: 1230px;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 5px;
}

#main_content,
.column .widget {
    margin-bottom: 30px !important;
}



/***************************************************************************
                           7. SIDEBAR CONFIGURATION
***************************************************************************/

/* NO SIDEBAR */
.sidebar_none {
}


/* LEFT SIDEBAR */
.sidebar_left {
}
.sidebar_left .column_center {
    width: 100%;
}
.sidebar_left .column_center #main_content {
    margin: 0 0 0 25%;
}
.sidebar_left .column_left {
    margin-left: -100%;
}


/* RIGHT SIDEBAR */
.sidebar_right {
}


/* BOTH SIDEBARS */
.sidebar_both {
}
.sidebar_both .column_center {
    width: 100%;
}
.sidebar_both .column_center #main_content {
    margin: 0 25%;
}
.sidebar_both .column_left {
    margin-left: -100%;
}
.sidebar_both .column_right {
    margin-left: -25%;
}


/* NOSIDEBAR PAGES */
.sidebar_off .column_center #main_content {
    margin: 0;
}



/***************************************************************************
                           8. MAIN PAGE
***************************************************************************/

/* 8.1 HEADER */
#header {
    padding-bottom: 6px;
}



#logo {
    float: left;
    vertical-align: baseline;
    margin-left: -10px;
    padding-top: 5px;
    max-width: 85%;
}
#logo a {
    display: block;
    text-transform: uppercase;
}
#logo b {
    letter-spacing: -4px;
}
#logo .wrap-1 {
    font-size: 67px;
    font-weight: 700;
    font-style: italic;
    color: #e42b24;  
    
-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;
    ;
}
#logo .wrap-2 {
    font-size: 52px;
    font-weight: 700;
    font-style: italic;
    color: #292929; 
    
-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;
    ;
}
#logo .wrap-2 .ins {
    font-weight: 300;
    font-style: italic;
    color: #777777; 
}
#logo a &gt; span {
    display: block;
    font-style: italic;
    font-size: 15px;
    color: #777777;
    margin-top: -24px;
    text-align: center;
    padding-right: 15px;
    
-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;
    ;
}
#logo a:hover .wrap-1 {
    color: #292929;
}
#logo a:hover .wrap-2 {
    color: #e42b24;
}
#logo a:hover &gt; span {
    color: #e42b24;
}
#logo a:hover .wrap-1,
#logo a:hover .wrap-2,
#logo a:hover &gt; span {
    text-shadow: 4px 4px rgba(204,204,204,0.8); 
}

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

.header_user {
    display: inline-block;
    margin-top: 23px;
}
.header_user li {
    display: inline-block;
    margin-right: 7px;
}
.header_user li a {
    line-height: 15px;
    font-size: 15px;
    color: #777777;
}
.header_user li a:hover {
    color: #e42b24;
}
.header_user li a i {
    margin: 0 5px 0 0;
    line-height: 1.5em;
}



.header_currency {
    display: inline-block;
    margin-top: 22px;
}
.header_currency .jq-selectbox {
    width: 41px;
}
.header_currency .jq-selectbox__select {
    height: 25px;
    padding: 0 12px 0 0px;
    line-height: 15px;
    vertical-align: baseline;
}
.header_currency .jq-selectbox__select-text {
/*     line-height: 15px;*/
    font-size: 15px;
    color: #777777; 
}
.header_currency .jq-selectbox__trigger i {
    right: 0px;
    top: 4px;
    font-size: 15px;
}

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


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


.header_cart {
    float: right;
    margin-top: 3px;
    text-align: left;
}
.header_cart a {
    display: block;
    min-width: 270px;
    position: relative;
    border-radius: 5px;
    border-top: 1px solid #292929;
    
background: #292929;
     /* Old browsers */
background: -webkit-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292929), color-stop(100%,#ed1b1b));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #292929 0%, #ed1b1b 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #292929 0%,#ed1b1b 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292929', endColorstr='#ed1b1b',GradientType=0 );
     /* IE6-8 */
;
    transition: all .4s ease;
}
.header_cart a:hover {
    
background: #e42b24;
     /* Old browsers */
background: -webkit-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e42b24), color-stop(100%,#6c0c08));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #e42b24 0%, #6c0c08 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #e42b24 0%,#6c0c08 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e42b24', endColorstr='#6c0c08',GradientType=0 );
     /* IE6-8 */
;
    border-color: rgba(204,204,204,0.5) transparent transparent rgba(204,204,204,0.5);
}
.header_cart a .icon_wrapper {
    position: absolute;
    left: 0;
    top: -1px;
    bottom: 0;
    text-align: center;
    width: 50px;
    border: 1px solid;
    border-radius: 5px 0px 0px 5px;
    border-color: #e42b24 transparent transparent #e42b24 ;
    
background: #e42b24;
     /* Old browsers */
background: -webkit-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e42b24), color-stop(100%,#6c0c08));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #e42b24 0%, #6c0c08 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #e42b24 0%,#6c0c08 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e42b24', endColorstr='#6c0c08',GradientType=0 );
     /* IE6-8 */
;
}
.header_cart a .icon_wrapper .arrow {
    display: block;
    position: absolute;
    right: -20px;
    top: 50%;
    margin-top: -10px;
    width: 0;
    height: 0;
    border: 10px solid;
    border-color: transparent transparent transparent #e42b24;
}
.header_cart a i {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: block;
    font-size: 25px;
    vertical-align: middle;
    line-height: 43px;
    border: 1px solid;
    border-color: rgba(204,204,204,0.5) transparent transparent rgba(204,204,204,0.5);
    border-radius: 5px 0px 0px 5px;
    color: #ffffff;
}
.header_cart a .ins {
    padding: 10px 22px 14px 74px;
    border-top: 1px solid #474747;
}
.header_cart a:hover .ins {
    border-color: rgba(204,204,204,0.5) transparent transparent rgba(204,204,204,0.5);
}
.header_cart a span {
    text-transform: uppercase; 
    color: #ffffff;
    font-size: 15px;
}
.header_cart a span.count {
    padding-right: 4px;
}

.header_search {
    float: right;
    position: relative;
    margin: 4px 32px 0 0;
    z-index: 5;
    width: 240px;
    
}
.header_search form  {
    position: relative;
    padding-right: 52px;
}
.header_search #search-field {
    width: 100%;
    height: 48px;
    border-radius: 3px 0 0 3px;
    margin: 0 2px 0 0;
    border: solid 1px #d8d8d8;
}
.header_search #search-submit {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    text-align: center;
    line-height: 46px;
    font-size: 14px;
    border-radius: 0 3px 3px 0;
    border: solid 1px #d8d8d8;
    color: #292929;
    
background: #f5f4f4;
     /* Old browsers */
background: -webkit-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f4f4), color-stop(100%,#b8acac));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f5f4f4 0%, #b8acac 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #f5f4f4 0%,#b8acac 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f4f4', endColorstr='#b8acac',GradientType=0 );
     /* IE6-8 */
;
    vertical-align: middle;
    
-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 i {
    line-height: 45px; 
}
.header_search #search-submit:hover {
    background: #e42b24;
    color: #ffffff;
}

.custom_header1 {
    display: inline-block;
    margin-right: 10px;
    padding-top: 22px;
    color: #e42b24;
    font-size: 15px;
}




/* 8.2 NAVIGATION */

#navigation {
    position: relative;
    z-index: 999;
    border-top: 1px solid #292929;
    
background: #292929;
     /* Old browsers */
background: -webkit-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292929), color-stop(100%,#ed1b1b));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #292929 0%, #ed1b1b 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #292929 0%,#ed1b1b 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292929', endColorstr='#ed1b1b',GradientType=0 );
     /* IE6-8 */
;
}
#navigation nav {
    position: relative;
    z-index: 9;
    border-top: 1px solid #777777;
}

#navigation.isStuck {
    width: 100%;
    left: 0;
    top: 7;
}
#navigation.isStuck nav ul {
 	max-width: 1230px;
  	margin: 0 auto;
}
.sf-menu {
    padding: 13px 10px;
}
.sf-menu li {
    position: relative;
}

/*================================&gt;&gt; 1 Level &lt;&lt;========================================*/

.sf-menu &gt; li {
    display: inline-block;
    padding: 2px 18px 4px;
}
.sf-menu &gt; li &gt; a {
    position: relative;
    display: inline;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
#navigation.isStuck nav .sf-menu &gt; li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 1px;
    bottom: 3px;
    border-left: 1px solid #474747;
}
.sf-menu &gt; li + li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 1px;
    bottom: 3px;
    border-left: 1px solid #474747;
}
.sf-menu &gt; li.active &gt; a,
.sf-menu &gt; li:hover &gt; a {
    color: #e42b24;
}

.sf-menu &gt; li &gt; a.sf-with-ul:after {
    position: absolute;
    content:"";
    left: 50%;
    margin-left: -4px;
    right: 0;
    bottom: -14px;
    -moz-transition: top 0.3s ease-out;
    -o-transition: top 0.3s ease-out;
    -webkit-transition: top 0.3s ease-out;
    border: 4px solid;
    border-color: #ffffff transparent transparent transparent;
    width: 0;
    height: 0;
}
.sf-menu &gt; li &gt; a.sf-with-ul:hover:after,
.sf-menu &gt; li.active &gt; a.sf-with-ul:after,
.sf-menu &gt; li.sfHover &gt; a.sf-with-ul:after {
    border-color: #e42b24 transparent transparent transparent;
}

/*================================&gt;&gt; 2 Level &lt;&lt;========================================*/


.sf-menu ul {
    width: 180px !important;
    position: absolute;
    left: 0;
    top: 43px;
    z-index: 100;
    background: #292929;
    border-top: 1px solid #777777; 
}
.sf-menu ul li {
    padding: 4px 10px;
}
.sf-menu ul li + li {
    border-top: 1px solid #777777;
}
.sf-menu ul li a {
    display: block;
    padding: 10px;
    color: #ffffff;
}

.sf-menu ul &gt; li a:hover,
.sf-menu ul &gt; li.active a {
    color: #e42b24;
}


/* 8.3 NIVOSLIDER */
.nivoSlider {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.nivoSlider img {
    max-width: none;
    position: absolute;
    top: 0;
    left: 0;
}
.nivo-main-image {
    width: 100% !important;
    display: block !important;
    position: relative !important;
    border-radius: 5px;
}

.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 &gt; a,
.nivoSlider &gt; img,
.caption_hidden {
    display: none;
}


.slider_wrap {
    height: 100%;
    position: relative;
    z-index: 1;
    min-height: 366px;
}



.nivo-caption {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    padding-left: 6.5%;
    z-index: 8;
    display: none;
    text-transform: uppercase;
    padding-top: 12.5%;
}

.nivo-caption h4 {
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 21px;
    font-size: 28px;
    line-height: 1em;
    padding: 13px 16px 12px 60px;
    background: #f8f8f8;
    color: #e42b24;
}
.nivo-caption h4 .ins {
    display: block;
    position: absolute;
    width: 22px;
    top: 0;
    bottom: 0;
    right: -21px;
    overflow: hidden;
}
.nivo-caption h4 .ins span {
    display: block;
    position: absolute;
    right: 5px;
    bottom: 3px;
    height: 62px;
    width: 54px;
    border-radius: 12px;

    -moz-transform: rotate(19deg);
    -webkit-transform: rotate(19deg);
    transform: rotate(19deg);
    background: #f8f8f8;
}
.nivo-caption h2 {
    font-size: 52px;
    font-weight: bold;
    text-transform: uppercase;
    color: #292929;
    margin: 0 0 -12px 0;    
    line-height: 1em;
}
.nivo-caption  h3 {
    font-size: 32px;
    font-weight: normal;
    text-transform: uppercase;
    color: #777777;
    margin: 0px;
    padding-bottom: 4px;
}
.nivo-caption  p {
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 21px;
    color: #777777;
    width: 285px;
    margin: 0 0 21px 0;
}

.nivo-caption .buttons {
    display: inline-block;
    min-width: 294px;
    position: relative;
    border-radius: 5px;
    border-top: 1px solid #292929;
    
background: #292929;
     /* Old browsers */
background: -webkit-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292929), color-stop(100%,#ed1b1b));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #292929 0%, #ed1b1b 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #292929 0%,#ed1b1b 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292929', endColorstr='#ed1b1b',GradientType=0 );
     /* IE6-8 */
;
    margin-left: 4px;
}
.nivo-caption .buttons:hover {
    
background: #e42b24;
     /* Old browsers */
background: -webkit-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e42b24), color-stop(100%,#6c0c08));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #e42b24 0%, #6c0c08 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #e42b24 0%,#6c0c08 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e42b24', endColorstr='#6c0c08',GradientType=0 );
     /* IE6-8 */
;
    border-color: rgba(204,204,204,0.5) transparent transparent rgba(204,204,204,0.5);
}
.nivo-caption .buttons .btn-1 {
    display: block;
    position: relative;
    float:left;
    margin-top: -1px;
    text-align: center;
    border: 1px solid;
    border-radius: 5px 0px 0px 5px;
    border-color: #e42b24 transparent transparent #e42b24 ;
    
background: #e42b24;
     /* Old browsers */
background: -webkit-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e42b24), color-stop(100%,#6c0c08));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #e42b24 0%, #6c0c08 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #e42b24 0%,#6c0c08 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e42b24', endColorstr='#6c0c08',GradientType=0 );
     /* IE6-8 */
;
}
.nivo-caption .buttons .btn-1 .arrow {
    display: block;
    position: absolute;
    right: -20px;
    top: 50%;
    margin-top: -10px;
    width: 0;
    height: 0;
    border: 10px solid;
    border-color: transparent transparent transparent #e42b24;
}
.nivo-caption .buttons .btn-1 .ins {
    display: block;
    font-size: 25px;
    line-height: 1em;
    border: 1px solid;
    border-color: rgba(204,204,204,0.5) transparent transparent rgba(204,204,204,0.5);
    border-radius: 5px 0px 0px 5px;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    vertical-align: baseline;
    padding: 10px 30px 11px 15px;
}
.nivo-caption .btn-1 b {
    font-size: 23px;
    line-height: 1em;
    vertical-align: baseline;
}
.nivo-caption .buttons .btn-2 {
    display: block;
    padding: 10px 28px 12px 24px;
    border-top: 1px solid #474747;
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    min-width: 126px;
}
.nivo-caption .buttons:hover .btn-2 {
    border-color: rgba(204,204,204,0.5) transparent transparent rgba(204,204,204,0.5);
}


.nivo-caption .save {
    position: absolute;
    right: 38px;
    top: 44px;
    display: block;
    text-align: center;
    border: 1px solid;
    border-radius: 9px;
    min-width: 168px;
    border-color: #e42b24 transparent transparent #e42b24 ;
    
background: #e42b24;
     /* Old browsers */
background: -webkit-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e42b24), color-stop(100%,#6c0c08));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #e42b24 0%, #6c0c08 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #e42b24 0%,#6c0c08 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e42b24', endColorstr='#6c0c08',GradientType=0 );
     /* IE6-8 */
;
}
.nivo-caption .save span {
    display: block;
    font-size: 46px;
    line-height: 38px;
    border: 1px solid;
    border-color: rgba(204,204,204,0.5) transparent transparent rgba(204,204,204,0.5);
    border-radius: 9px;
    color: #ffffff;
    font-weight: bold;
    vertical-align: baseline;
    padding: 10px 10px 9px 10px;
}

.nivo-directionNav a {
    display: block;
    vertical-align: middle;
    top: 50%;
    z-index: 9;
    cursor: pointer;
    height: 43px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    width: 37px;
    z-index: 20;
    border-radius: 0px 5px 5px 0px;
    background: #f8f8f8;
    border: 1px solid #ffffff;
}

.nivo-directionNav a span {
    display: none;
}
.nivo-directionNav a i {
    display: inline-block;
    line-height: 42px;
    font-size: 23px;
    padding-left: 13px;
}
.nivo-directionNav .nivo-prevNav {
    left: 0;
    border-left: 0;
}
.nivo-directionNav .nivo-nextNav {
    border-radius: 5px 0px 0px 5px;
    right: 0;
    border-right: 0;
}
.nivo-directionNav .nivo-nextNav i {
    padding-left: 16px; 
}

.nivo-controlNav {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
}
.nivo-controlNav a {
    display: inline-block;
    cursor: pointer;
}
.nivo-controlNav a + a {
    margin: 0 0 0 5px;
}
.nivo-controlNav a span {
    display: none;
}
.nivo-controlNav a i {
    display: block;
}
.nivo-controlNav a:hover {
}
.nivo-controlNav a.active {
    cursor: default;
}



/* 8.4 SHOWCASE */
#showcase {
    margin-bottom: 30px;
}
#showcase .row {
    margin-right: -5px;
    margin-left: -5px;
}
.custom_showcase {
    padding: 0 5px; 
    margin-top: 10px;
}
.custom_showcase a {
    position: relative;
    display: block;
    border-radius: 5px;
    border: 1px solid #d8d8d8;
}
.custom_showcase a img {
    border-radius: 5px;
}
.custom_showcase .inside {
    position: absolute;
    left: 38%;
    top: 7px;
}
.custom_showcase h3 {
    font-size: 42px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    margin: 0 0 -9px 0;
    color: #e42b24;
    padding: 0px;
    line-height: 1em;
    vertical-align: baseline;
    letter-spacing: -1px;
}
.custom_showcase h3 span {
    color: #292929;
    vertical-align: baseline;
    font-weight: bold;
}
.custom_showcase h4 {
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
    color: #777777;
    padding: 0px;
    line-height: 1em;
    margin: 0px 0 0 5px;
}


.widget_sb_imgs a {
    display: block;
}   
.widget_sb_imgs a img {
    
-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;
    ; 
}
.widget_sb_imgs a:hover img {
     opacity: 0.6;
}


/* 8.5 MAIN PRODUCT LISTING */
.product_listing_main + .product_listing_main {
    margin-top: 31px; 
}
.product_listing_main .product {
}

.product_listing_main .product_img {
}
.product_listing_main .product_img a {
    display: block;
  	margin-top: 15px;
    padding: 5px 20px 20px;
}


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




/* 8.6 FOOTER */

footer {
    background: #2e2e2e;
    border-top: 1px solid #292929;
    border-radius: 0 0 5px 5px;
}



.footer_block + .footer_block .bord  {
    display: block;
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    border-left: 1px solid #3c3c3c;
    z-index: 20;
}

.footer_block {
    padding-bottom: 19px;
}
.footer_block__4 h3 {
    padding-right: 30px; 
}
.footer_block h3 {
    position: relative;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    padding: 14px 0 18px 0;
    margin-bottom: 25px;
    color: #ffffff;
}
.footer_block h3:before {
    position: absolute;
    content: '';
    left: -30px;
    right: -30px;
    top: 0;
    bottom: 0px;
    border-top: 1px solid #777777;
    
background: #292929;
     /* Old browsers */
background: -webkit-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292929), color-stop(100%,#ed1b1b));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #292929 0%, #ed1b1b 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #292929 0%,#ed1b1b 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292929', endColorstr='#ed1b1b',GradientType=0 );
     /* IE6-8 */
;
    z-index: 0;
}
.footer_block h3 span {
    display: block;
    position: relative;
    z-index: 10;
}
.footer_block ul {
}
.footer_block ul li {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 0 8px;
}
.footer_block ul li a {
    display: inline-block;
    text-decoration: none;
    color: #777777;
}

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



.footer_newsletter label {
    margin: 0 0 17px 0;
    font-size: 14px;
    color: #777777;
}
.footer_newsletter form {
    position: relative;
    padding: 0px;
    margin: 0 40px 30px 0;
}
.footer_newsletter #email-input {
    width: 100%;
    height: 42px;
    border: solid 1px #d8d8d8;
    background: #ffffff;
    color: #292929;
    padding: 11px 0px 11px 7px;
    border-radius: 3px;
}
.footer_newsletter #email-submit {
    position: absolute;
    right: 0;
    bottom: 0;
    vertical-align: middle;
    height: 42px;
    width: 55px;
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
    
background: #e42b24;
     /* Old browsers */
background: -webkit-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e42b24), color-stop(100%,#6c0c08));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #e42b24 0%, #6c0c08 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #e42b24 0%,#6c0c08 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e42b24', endColorstr='#6c0c08',GradientType=0 );
     /* IE6-8 */
;
    border-radius: 0px 5px 5px 0px;
    border: 1px solid;
    border-color: #e42b24 transparent transparent #e42b24;
}
.footer_newsletter #email-submit span {
    line-height: 39px;
    display: block;
    width: 100%;
    font-size: 15px;
    border-top: 1px solid rgba(204,204,204,0.5);
    border-left: 1px solid rgba(204,204,204,0.4);
}
.footer_newsletter .error {margin: 15px 0 0 0;font-weight: bold;font-style: italic;color: #de0000;}
.footer_newsletter .success {margin: 15px 0 0 0;font-weight: bold;font-style: italic;color: #208d20;}
.footer_newsletter #email-submit:hover {
    background: #e42b24; 
    color: #292929;
}
.footer_newsletter .form_wrap {
    position: relative; 
    padding-right: 51px;
}

.copyright_wr {
    background-color: #e1e1e1;
}
.copyright {
}
.copyright p {
    font-size: 13px;
    color: #777777;
    margin: 22px 0 30px;
}




/***************************************************************************
                           9. COLLECTION PAGES
***************************************************************************/

/* 9.1 PAGES CONTENT */
ul.tags {
    margin-top: 15px;
    list-style-type: none;
}
ul.tags li {
    float: left;
    margin: 3px 4px 0 0;
}
ul.tags li a {
    display: block;
    padding: 5px 10px;
    color: #292929;
    border: 1px solid #d8d8d8;
    
background: #f5f4f4;
     /* Old browsers */
background: -webkit-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f4f4), color-stop(100%,#b8acac));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f5f4f4 0%, #b8acac 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #f5f4f4 0%,#b8acac 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f4f4', endColorstr='#b8acac',GradientType=0 );
     /* IE6-8 */
;
    border-radius: 5px;
}

ul.tags li a:hover,
ul.tags li.active a {
    color: #ffffff;
    
background: #e42b24;
     /* Old browsers */
background: -webkit-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e42b24), color-stop(100%,#6c0c08));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #e42b24 0%, #6c0c08 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #e42b24 0%,#6c0c08 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e42b24', endColorstr='#6c0c08',GradientType=0 );
     /* IE6-8 */
;
}



.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 #d8d8d8;
    border-width: 1px 0;
    text-align: right;
}
.sort_by label {
    margin: 0 4px 0 0;
    line-height: 30px;
}
.sort_by select {
    width: auto !important;
    height: 30px;
    display: inline-block;
    padding: 5px 4px;
    cursor: pointer;
}



/* 9.2 BREADCRUMBS */
.breadcrumb {
    margin: 0 0 15px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #d8d8d8;
    
background: #f5f4f4;
     /* Old browsers */
background: -webkit-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f4f4), color-stop(100%,#b8acac));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f5f4f4 0%, #b8acac 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #f5f4f4 0%,#b8acac 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f4f4', endColorstr='#b8acac',GradientType=0 );
     /* IE6-8 */
;
}   



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



/* 9.4 PAGINATION */

#pagination {
    display: inline-block;
    overflow: hidden;
    margin: 30px 0 0 0;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
}
#pagination span {
    display: block;
    float: left;
}
#pagination span ~ span {
    border-left: 1px solid #d8d8d8;
}

#pagination span a,
#pagination span.deco,
#pagination span.current {
    display: block;
    padding: 4px 18px;
    color: #292929;
    
background: #f5f4f4;
     /* Old browsers */
background: -webkit-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f4f4), color-stop(100%,#b8acac));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f5f4f4 0%, #b8acac 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #f5f4f4 0%,#b8acac 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f4f4', endColorstr='#b8acac',GradientType=0 );
     /* IE6-8 */
;
}

#pagination span a:hover,
#pagination span.current {
    color: #e42b24;
    
background: #292929;
     /* Old browsers */
background: -webkit-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292929), color-stop(100%,#ed1b1b));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #292929 0%, #ed1b1b 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #292929 0%,#ed1b1b 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292929', endColorstr='#ed1b1b',GradientType=0 );
     /* IE6-8 */
;
}
#pagination span.current {
    cursor: default;
}



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

.column .widget {
}

.column .widget h3.widget_header {
    border: 1px solid #e42b24;
    
background: #e42b24;
     /* Old browsers */
background: -webkit-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e42b24), color-stop(100%,#6c0c08));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #e42b24 0%, #6c0c08 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #e42b24 0%,#6c0c08 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #e42b24 0%,#6c0c08 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e42b24', endColorstr='#6c0c08',GradientType=0 );
     /* IE6-8 */
;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 20px;
    padding: 9px 20px 11px 16px;
    margin-bottom: 0px;
}


/* 10.1 LINKS LIST */
.column .widget ul.list {
    position: relative;
    font-size: 16px;
    line-height: normal;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.column .widget ul.list li {
    margin-top: 5px;
}
.column .widget ul.list li a {
    display: block;
    padding: 11px 15px 11px 15px;
    text-decoration: none;
    border-radius: 4px;
    
background: #f5f4f4;
     /* Old browsers */
background: -webkit-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f4f4), color-stop(100%,#b8acac));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #f5f4f4 0%, #b8acac 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #f5f4f4 0%,#b8acac 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #f5f4f4 0%,#b8acac 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f4f4', endColorstr='#b8acac',GradientType=0 );
     /* IE6-8 */
;
    border: solid 1px #d8d8d8;
    color: #292929;
}

.column .widget ul.list li.active a,
.column .widget ul.list li a:hover {
    
background: #292929;
     /* Old browsers */
background: -webkit-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Chrome10+,Safari5.1+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292929), color-stop(100%,#ed1b1b));
     /* Chrome,Safari4+ */
background: -moz-linear-gradient(top, #292929 0%, #ed1b1b 100%);
     /* FF3.6+ */
background: -ms-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* IE10+ */
background: -o-linear-gradient(top, #292929 0%,#ed1b1b 100%);
     /* Opera 11.10+ */
background: linear-gradient(to bottom, #292929 0%,#ed1b1b 100%);
     /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292929', endColorstr='#ed1b1b',GradientType=0 );
     /* IE6-8 */
;
    color: #ffffff;
}

.widget_sb_imgs &gt; div + div {
    margin-top: 10px;
}


/* 10.2 SIDEBAR PRODUCT LISTING */
.product_listing_sidebar .product {
    margin-top: 5px;
}


.product_listing_sidebar .product_price .compare-at-price {
    display: block;
}

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



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

#searchresults {
    margin: 0;
}
#searchresults .search-form {
    margin: 15px 0 0 0;
}
#searchresults .search-form input {
    width: 100%;
    float: left;
    padding: 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: #27ae36;
}
#searchresults .search-form button:hover {
    color: #2e2e2e;
}
#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 #d8d8d8;
}
#searchresults ol li {
    overflow: hidden;
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid #d8d8d8;
}
#searchresults ol li .search-result_image {
    float: left;
    margin-right: 15px;
}
#searchresults ol li .search-result_container {
    padding: 15px 0 0 0;
}



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

.product_wrap {
}



/* 12.1 PRODUCT IMAGES */
.product_img_big {
    max-height: 345px;
    overflow: hidden;
    border: 1px solid #d8d8d8;
  	border-radius: 5px;
}



.product_img_thumbs {
    max-height: 120px;
    padding: 12px 0 0 0;
}

.product_img_thumbs__list {
}
.product_img_thumbs__list a {
    width: 107px !important;
    display: block;
}
.product_img_thumbs__list a img {
	width: 100%;
  	border-radius: 5px;
}
.product_img_thumbs__list a:after {
  	position: absolute;
  	left:0px;
  	right: 1px;
  	top: 0px;
  	bottom: 0px;
  	content: "";
	border: 1px solid #d8d8d8;
  	border-radius: 5px;
}



.bx-wrapper {
    max-width: 345px !important;
}
.bx-pager {
    display: none !important;
}

.bx-wrapper .bx-controls-direction a {
    width: 30px;
    height: 0;
    display: block;
    overflow: hidden;
    margin: -15px 0 0 0;
    padding: 30px 0 0 0;
    position: absolute;
    top: 50%;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABZlJREFUeNrsWu9LW1cYvt6oGbpGh424pdGudtCCcbpqv2wZ+9E5EDbNhsvwg/phdIpuf4Df3R+wgX7YKIID/aCt4NyEisKCQsGyCNMEDaHTJLRLuq5xpGaQufcN75EYjDnn3Jt82O4DD3i9OffNc8657znnfVKi8KEa+ArwIvAC0Aq00L04MAoMAR8Ad4F/KvoA47QCm4CXgXZgDd17DNwHBoC/An+h73EmSvLcfwl4DdhCQnmAwr3A+8CIpNBLwBvAt6mjeYAdvQpcBgZFBeP/ncR6yS+9B/QQjzjbYNyPgC7gFcm4fuAd4O3T4ppOaYBT9QNgN7BKw3TEts1AM416Ms/ncareBA4Dz2uIe54GqoJG/dlZgpnYdxT90Ah8DvjbGaJR7OdAt45xsbMrgduZok1Z00lvsQwN9Hxfjml8U2exDFfp+fdOE/wmTeNCAUf6KY10Jj6maVwoNFNGT3e2mpGNnUrh4aRYmdnYVYS4Lop1LPiabDa22WxmgY/XUyyGG7LZ2Gq1mgQ+foVipQVX0zorjImJiZadnZ1PBwYGbALNWiimldZZYYyNjdUFAgFHd3e3RaAZxrLiC90O/ExG7ODg4HX8OxgMxhobG28LNP8O+ALwKxmxo6Oj6Q7e2tpKNDU1+QSaj5bSdlFabDQajbvd7mXBR1ykbaK02FAolOzp6QkKPqJJFdgyniq2s7Pzx42Njbhg4Au0N5YW29HRsevz+ZKCcS+r9C4VUyw7FNiLLBZhVzNOPXmzcV9f36vsemVlJSgplu3oaniz8cjISB27XlhYeCIpNr2jw9TemWNPfQIHBwepSCQSg95tKCsrK4VkUQdILS4uPpQI/A/wRZ64iUTiyO/3J2A2VZvNZrW9vf358vLyI+jwvyTipjDgG7TRzguv13uQKbqtrc0mKRrPy+eI+Y8/fn8yU7TT6bRIiv7dRFsv7tOJTqLx6IgrBPf6rZNon0pHNyFMTk6Gh4eHl2G6pd8lh8MhepwLUaVCCPPz8/H+/v5gPB5P4XVra2uF4CMCJjpCvSYaHEd6c3MzbDKZktDrHsHmK5gWgO8Kn+5hpNfW1uKHh4ep3t7ePcHm0yW0zftCdD3WABzdb4BlwK8FSjhagcWAL1VKIF6lePBSzCjVoIoFjBVlp6X7lEgKjT2KxbBMNahCw0+xjo+HESq2FRoe5WQlM0gFt0LjDsU6sfDvUcGtsUBB7wKXcvR+BS2PhcD3uLDkKuKFqODWoHPQn4E/nVHE26XV4qrOcfHIegs3bLkEJ6nmVKLjSN8lsWftu7GquE1xm3Uc2VtUz1JyCWaifVRwwyWrSkOC+oGmMc9mH0Xfoy9oVeRr0/iKfEvTOJF907BacuA/Y6apyv8MxpTO+L/hHgrCcA8Vwz08jmu4hzqPtOEeCrmHgo5hJjS5h4KOYSbk3UN0CtExRBdCMriUe4hOITqG6EJIxk27h9hjDuBbvK3m5ubeq62ttWioSVvoPX4Z+Alvo9nZ2Ut2u92soSaNK8E2Cn6dzW8erK+vh10uV31lZaVZg+g/aAfl4C5Ira4edHV1VVksllINoh+h4PdFFvpIJJKE4HsaRf9NgrkL8bFYLLW0tPRUo+hnKPhDhdNq0VF0CQk+JxJXB9Eqt3uYDXQO0UFk1+gsCmRvbvcwG+gcooPIrtFZFMjeNdLHQ8zSbrc7nanRckHrJRwOy9qY3MAsPTQ0lM7UaLmg9RKNRlO87dU8taacYpkxzsSi3yTwiHh2rYlXLDPGmVj0mwQe8VjlqRLoLFahmPtFFovYF3YPmVOoQSwrEgi5h8wp1CAWEZD62dLMzMz1qampIGTlmOSrKPWzpfHxcdv09PQTj8eTkIw7ariHRYDhHhYhruEest433EOdYLiH2acYxXAPDfeQZ5013MNs/CvAAN+q3yxd1e4sAAAAAElFTkSuQmCC) !important;
    background-position: 0 0;
    background-repeat: no-repeat;
    }
.bx-wrapper .bx-controls-direction a.disabled {
    display: none !important;
}
.bx-wrapper .bx-controls-direction a.bx-prev {
    left: 10px;
    background-position: 0 0 !important;
}
.bx-wrapper .bx-controls-direction a.bx-prev:hover {
    background-position: -30px 0 !important;
}
.bx-wrapper .bx-controls-direction a.bx-next {
    right: 10px;
    background-position: 0 -30px !important;
}
.bx-wrapper .bx-controls-direction a.bx-next:hover {
    background-position: -30px -30px !important;
}



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



.product_wrap .product-price {
    margin: 15px 0 0 0;
    padding: 0;
}
.product_wrap .product-price .money {
    margin: 0 5px 0 0;
}
.product_wrap .product-price .compare-at-price {
}



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

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

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


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

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



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



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



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

ul.product_listing_related {
    list-style-type: none;
}
ul.product_listing_related .product {
}
ul.product_listing_related .product_img {
    width: 100%; 
}
ul.product_listing_related .product_img a {
    padding: 5px;
  	margin-top: 0px;
}
ul.product_listing_related .product_name {
    min-height: 0px;
}
ul.product_listing_related .product &gt; div {
    padding: 10px 10px 15px;
}



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

/* 13.1 POSTS LISTING */
#blog {
}

.blog-article + .blog-article {
    padding-top: 30px;
}

.article_header {
    padding: 0 0 15px;
    border-bottom: 1px solid #d8d8d8;
}
.article_header .product_name {
    min-height: 0px;
}


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

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

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



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

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



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

.comment-form {
}

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

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

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

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

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

.comment-submit {
}



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

/* 14.1 LOG IN */

/* 14.2 ACCOUNT */
.customer_account .money {
    font-size: 14px;
}

.customer_name {
    text-transform: none !important;
}
.customer_name .divider {
    margin: 0 7px;
}
.customer_name .email {
    color: #818080;
}
.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 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;
}
#order_details .money {
    font-size: 14px; 
}



/***************************************************************************
                           15. CART PAGE
***************************************************************************/

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

.cart-list &gt; .row {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d8d8d8;
}

.cart-list .item_image {
    text-align: center;
}
.cart-list .item_image a img {
    max-width: 100%;
}

.cart-list .product_name {
    margin-top: 15px;
}

.cart-list .item_remove {
    margin: 0 0 0 10px;
}
.cart-list .item_remove a {
    font-size: 20px;
    color: #fe2a2a;
}
.cart-list .item_remove a:hover {
    color: #27ae36;
}

.cart-list .row h3.item_vendor {
    border-bottom: 1px solid #d8d8d8;
    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 #d8d8d8;
}
.cart_subtotal h3 .money {
    float: right;
    font-size: inherit;
}

.cart_buttons {
    margin: 30px 0;
}


.cart_instructions textarea {
    width: 100%;
}

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



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



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



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



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

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

/* Icon box */
	.icon_box { position: relative; padding: 10px 10px;margin-bottom: 15px; }
	.icon_box:hover { cursor: default;}
	.icon_box_bg {border-radius: 2px;
		background-color: #f6f6f6;
		background-color: rgba(0,0,0, 0.05);
		box-shadow: 2.121px 2.121px 0px 0px rgba( 0, 0, 0, 0.1 );
		border-radius: 4px !important;overflow: hidden;
		-webkit-transition: all 0.4s linear;
		-moz-transition: all 0.4s linear;
		-ms-transition: all 0.4s linear;
		-o-transition: all 0.4s linear;}
	.dark .icon_box_bg { background-color: rgba(255,255,255, 0.1); }
	.icon_box_bg:hover {background: #333333;}
	.icon_box_bg:hover *,.icon_box_bg:hover .desc_wrapper .desc,.icon_box_bg:hover .desc_wrapper h5,.icon_box_bg:hover .icon_wrapper i{color: #fff;}
	.icon_box.has_border:after { content: ""; display: block; width: 0px; height: 100%; border-width: 0 1px 0 0; border-style: solid; position: absolute; right: -2.4%; top: 0;  }
	.icon_box a { display: block; }
	.icon_box a:hover { text-decoration: none; }
	.icon_box .icon_wrapper { width: 100%; height: 110px; text-align: center; line-height: 110px; font-size: 90px; position: relative; overflow: hidden; margin: 0 auto 15px; display: block; }
	.icon_box .icon_wrapper i { z-index: 2; position: relative; color: #dddddd;}
	.dark .icon_box .icon_wrapper i { color: rgba(255,255,255,.6);}	
	.dark .icon_box_bg:hover i { color: #fff; }

	//.icon_box .icon_wrapper { background-color: #fff; -webkit-box-shadow:inset 0 0 7px 0 rgba(0,0,0,.08); box-shadow:inset 0 0 7px 0 rgba(0,0,0,.08); }
	.icon_box .image_wrapper { text-align: center; margin: 0px 10px;margin-bottom: 15px;border-radius: 3px; }
	.icon_box .image_wrapper img { border-radius: 3px;margin: auto; }
	.icon_box .desc_wrapper { text-align: center; }
	.icon_box .desc_wrapper h5 { font-weight: bold;color: #9aa1a9;margin-bottom: 20px;}
	.icon_box .desc_wrapper .desc{ position: relative;top: -10px;color: #9aa1a9;}



	.test1 { background: url(../images/bg.jpg) fixed;background-color: rgb(67,50,86);padding: 50px; }

	#editor, #pix_section_source { 
        //position: absolute;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    #pix_section_img_div {
    	background: rgba(0,0,0,0.1);
    	padding: 5px;
    	//border-radius: 4px;
        border-bottom: 1px solid #333;
    	display: inline-block;
    	position: relative;
    }
    #pix_section_img_div .row {
    	padding-bottom: 5px;
    }
    #pix_section_img_div .media-left {
        width: 40%;
    }
    #pix_section_img_div input {
    	background: transparent;
    	border: 0px;
    	outline: none;
    	box-shadow: 0px !important;
    	width: 100%;
    	padding: 0px !important;
    	margin: 0px;
    	box-sizing:border-box;

    }
    #pix_section_img {
    	max-width: 100%;
    	height: auto;
    }




    /* Right Sidebar */
    #right_sidebar .right_inner {
        
    }
    .pix_right_header {
        margin: 10px 0;
    }
    .pix_right_header .title {
        font-family: 'Open Sans', sans-serif;
        margin-bottom: 5px;
        font-size: 15px;
    }
    #right_sidebar .nav-tabs {
        border: 2px solid #eee;
        border-radius: 4px;
        display: inline-block;
        
    }

    #right_sidebar .nav-tabs li {
        background: transparent;
        margin: 0px;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        -ms-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
    }
    #right_sidebar .nav-tabs li.active {
        background: #eee;
        box-shadow: none !important;
        border: 0px;
    }
    #right_sidebar .nav-tabs li a {
        background: transparent;
        box-shadow: none !important;
        border: 0px;
        padding: 6px 20px;
        border-right: 2px solid #eee;
        border-radius: 0px;
        font-weight: bold;
        color: #eee;
        text-decoration: none;
        font-size: 12px;
        margin: 0px;
        font-family: 'Open Sans', sans-serif;
        letter-spacing: 1px;
    }
    #right_sidebar .nav-tabs li:last-child a {border-right: 0px;}
    #right_sidebar .nav-tabs li.active a {
        color: #444;
    }
    #right_sidebar label {
        font-family: 'Open Sans', sans-serif;   
        font-size: 13px;
        font-weight: normal;
    }


    .pix_form_preview {
        display: inline-block;
    }
    /* Gallery */
    #pix_gallery_div .thumbnail {
        border: 0px;
    }
    #pix_gallery_div .thumbnail {
        width: 100%;
        height: 100%;
        display: inline-block;
        position: relative;
        border: 2px solid #ddd;
    }
    #pix_gallery_div .thumbnail.clicked {
        border: 2px solid #333 !important;   
    }








    body.modal-open {
    overflow-y: auto;
    padding-right: 0px !important
}
.modal.in {
  margin: 0px !important;
  padding: 0px !important;
  right: 0px !important
}
.modal-content {
  border: none;
  border-radius: 2px;
      box-shadow: 0 16px 28px 0 rgba(0,0,0,0.22),0 25px 55px 0 rgba(0,0,0,0.21);
}
.modal-header{
  border-bottom: 0;
  padding-top: 15px;
  padding-right: 26px;
  padding-left: 26px;
  padding-bottom: 0px;
}
.modal-title {
  font-size: 34px;
}
.modal-body{
  border-bottom: 0;
  padding-top: 5px;
  padding-right: 26px;
  padding-left: 26px;
  padding-bottom: 10px;
  font-size: 15px;
}
.modal-footer {
  border-top:0;
  padding-top: 0px;
  padding-right:26px;
  padding-bottom:26px;
  padding-left:26px;
}
/*.btn-default,.btn-primary {
    border: none;
    border-radius: 2px;
    display: inline-block;
    color: #424242;
    background-color: #FFF;
    text-align: center;
    height: 36px;
    line-height: 36px;
    outline: 0;
    padding: 0 2rem; 
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    letter-spacing: .5px;
    transition: .2s ease-out;
}
.btn-default:hover{
  background-color: #FFF;
  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15);
}
.btn-primary {
  color: #FFF;
  background-color: #2980B9;
}
.btn-primary:hover{
  background-color: #2980B9;
  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15);
}*/</pre></body></html>