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

1. CSS RESET

2. VARIABLES
2.1 GRADIENTS
2.2 COLOR VARIABLES
2.3 CSS3 TRANSITIONS

3. GLOBAL THEME STYLES

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

5. FORMS & COMPONENTS
5.1 FORMS
5.2 ALERTS
5.3 BUTTONS

6. GLOBAL PAGE LAYOUT

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

8. COLLECTION PAGES
8.1 BREADCRUMBS
8.2 DESCRIPTIONS & TAGS
8.3 PRODUCTS SORTING
8.4 COLLECTION LISTING
8.5 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;
}

b, strong {
    font-weight: bold;
}

i, dfn {
    font-style: italic;
}

p {
    font-size: 16px;
    color: black;
}

img {
    max-width: 100%;
}

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

/* 2.1 GRADIENTS */

/* 2.2 COLOR VARIABLES */

/* COLOR SHADES CONVERTER */

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

/* addthis styles */
.addthis_toolbox {
    margin: 15px 0 0 0;
    border-top: 1px solid #dddddd;
}

.addthis_toolbox > a {
    margin: 15px 15px 0 0 !important;
    padding: 0 !important;
}

.addthis_toolbox .at300b {
    height: 21px;
}

.addthis_button_tweet {
    width: 79px;
}

#_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.opened {
}

.jq-selectbox.focused {
}

.jq-selectbox__select {
}

.jq-selectbox__select-text {
    width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jq-selectbox__trigger i {
    position: absolute;
    top: 0;
    right: 0;

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

}

.jq-selectbox__dropdown {
    width: 100%;

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

}

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

/* 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(../image/bx_loader.gif) 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: 0px;
    z-index: 1000;
    background: rgba(52, 152, 219, .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 {
    max-width: 971px !important;
}

#newsletter_popup__wrap .fancybox-skin {
    padding: 36px !important;

    background: url(../image/newsletter_image.png?1985645352046920887) right bottom no-repeat;

    -webkit-background-size: auto 100%;
    background-size: auto 100%;
}

#newsletter_popup__wrap .fancybox-inner {
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    padding-bottom: 50px;
}

#newsletter_popup .logo_newsletter {
    padding: 30px;
    width: 43%;
    background: #ffffff;
    margin-left: 18px;
}

#newsletter_popup__wrap .fancybox-close {
}

#newsletter_popup h4 {
    font-weight: 300;
    font-size: 100px;
    line-height: 50px;
    color: #ffffff;
    text-transform: none;
    margin-left: 41px;
    margin-top: 50px;
}

.newsletter-cnt span {
    display: inline-block;
    font-size: 40px;
    line-height: 50px;
    color: #ffffff;
    text-transform: none;
    margin-top: 17px;
}

.newsletter-cnt p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
    color: #ffffff;
    margin-left: 47px;
    width: 69%;
}

#newsletter_popup form {
    margin: 30px 0px 0 0;
    position: relative;
}

#newsletter_popup input[type=email] {
    width: 250px;
    height: 35px;
}

#newsletter_popup .btn {
    height: 35px;
    font-size: 14px;
}

#newsletter_popup .newsletter_off__wrap {
    margin: 30px 0 0 0;
    text-align: center;
    position: absolute;
    top: -66px;
    right: 10px;
}

#newsletter_popup .newsletter_off__wrap .btn {
    height: auto;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 9px 19px;
}

#newsletter_popup .newsletter_error {
    margin: 0;
    font-weight: bold;
    font-size: 11px;
    color: #f00;
    position: absolute;
    left: 0;
    top: 41px;
}

#newsletter_popup .newsletter_success {
    font-weight: bold;
    color: #119000;
    text-align: center;
}

#newsletter_popup__wrap .fancybox-close:before {
    content: '\f00d';
    display: block;
    font: 18px 'FontAwesome';
    color: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #62bc46;
    text-align: center;
    -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;;
}

#newsletter_popup__wrap .fancybox-close {
    top: 0px;
    right: 4px;
}

#newsletter_popup__wrap .fancybox-close:hover:before {
    background: #efc94c;
    -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;;
}

.newsletter-wrapper .newsletter_form {
    margin-left: 47px;
}

#newsletter_popup input[type="email"] {
    font-size: 12px;
    width: 364px;
    height: 40px;
    color: #ffffff;
    text-transform: uppercase;
    padding: 0px 0px 0px 20px;
}

#newsletter_popup input[type="email"] {
    background: #62bc46;
    border: 0px solid;
}

#newsletter_popup .subscribe-btn {
    background: #62bc46 !important;
    padding: 20px 10px 18px 18px;
    line-height: 0px;
    text-transform: uppercase;
}

#newsletter_popup__wrap .subscribe-btn:before {
    font: 12px 'FontAwesome';
    line-height: 0px;
    color: #ffffff;
    text-align: center;
    margin-right: 5px;
}

#newsletter_popup .subscribe-btn:hover {
    background: #efc94c !important;
}

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

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

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

body {
    font: normal 12px "Arial";
    color: #bcbcbc;
}

/* 4.1 HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 15px 0;
    font: bold 30px "Open Sans";
    color: #000000;
    text-transform: uppercase;
}

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

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

.page_heading {
    margin: 0;
    font-size: 30px;
    font-weight: 300;
}

.page_heading a {
    float: right;
}

/* 4.2 PARAGRAPHS & LISTS */
p {
    margin: 15px 0;
    padding: 0;
}

.column_center ul {
    list-style-type: square;
    list-style-position: inside;
}

.column_center ol {
    list-style-type: decimal;
    list-style-position: inside;
}

/* 4.3 LINKS */
a {
    color: #454646;
    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;
}

@media only screen and (min-width: 600px){
a:hover,
a:active {
    color: #62bc46;
}
}
/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product_name {
    font-weight: normal;
    font-size: 14px;
    color: #3e454c;
}

.product_name a {
    font-weight: normal;
    color: #3e454c;

    -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: #62bc46;
}

.product_desc {
    font-size: 12px;
    color: #bcbcbc;
}

.money {
    color: #62bc46;
}

.compare-at-price {
    text-decoration: line-through;
}

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

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

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

.rte h1 {
    font-size: 19px;
}

.rte h2 {
    font-size: 17px;
}

.rte h3 {
    font-size: 16px;
}

.rte h4 {
    font-size: 14px;
}

.rte h5 {
    font-size: 13px;
}

.rte h6 {
    font-size: 12px;
}

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

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

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

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

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

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

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 0px 0px rgba(0, 0, 0, 0.075), 0 0 0px #ddd;
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075), 0 0 0px #ddd;
}

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

.form-horizontal {
    margin-bottom: 30px;
}

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

.form-horizontal select {
    width: 100%;
}

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

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

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

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

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

/* 5.3 BUTTONS */
.btn,
.btn a,
.btn-info,
.btn-primary {
    background: #62bc46 !important;
    border-color: #62bc46 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    -webkit-transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
    transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
}

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

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

.btn-alt,
.btn-alt a {
    background: #191b1f !important;
    border-color: #191b1f !important;
}

.btn-alt:hover,
.btn-alt:hover a {
    background: #62bc46 !important;
    border-color: #62bc46 !important;
}

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

html, body {
    height: 100%;
}

#wrapper1 {
    position: relative;
    z-index: 1;
    background: url(../image/body_bg_img.jpg?1985645352046920887) 50% 0 repeat #ffffff;
}

#wrapper2 {
    overflow: hidden;
    background: #ffffff;
}

.container {
    padding: 0;
}

#main {
    background: #ffffff;
}

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

.showcase-wrapper1 {
    background: #f3f3f3;
}

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

/* 7.1 HEADER */
/*#header {*/

/*background: url(../../image/familia.jpg)no-repeat center center fixed;*/
/*-webkit-background-size: cover;*/
/*-moz-background-size: cover;*/
/*-o-background-size: cover;*/
/*background-size: cover;*/
/*}*/
/*#header{padding-top: 106px;}*/
.bg-header {
    background: #ffffff;
    margin-top: 5px;
}

#logo {
    margin-top: 109px;
    margin-left: 81px;
}

#logo a {
}

#logo b {
    font-size: 20px;
}

.header_user {
    clear: right;
    float: right;
    margin-top: 7px;
    margin-right: 43px;
    padding-bottom: 64px;
}

.header_user li {
    float: left;
    margin-right: 17px;
}

.header_user li a {
    text-transform: uppercase;
    font-size: 11px;
}

.header_user li a i {
    margin: 0 5px 0 0;
    line-height: 1.5em;
}

.header_currency {
    float: right;
    width: 92px;
    background: #62bc46;
}

.header_currency select {
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.header_currency .jq-selectbox {
}

.header_currency .jq-selectbox__select {
    height: 82px;
    padding: 30px 24px 0 23px;
}

.header_currency .jq-selectbox__select-text {
    line-height: 24px;
    color: #ffffff;
}

.header_currency .jq-selectbox__trigger i {
    right: 5px;
    top: 33px;
    color: #ffffff;
    opacity: 0.2;
}

.header_currency .jq-selectbox__dropdown {
    width: 92px !important;
    background: #efc94c;
    top: 82px !important;
    left: -3px;
}

.header_currency .jq-selectbox__dropdown ul {
    color: #62bc46;
}

.header_currency .jq-selectbox__dropdown ul li {
    text-align: center;
    padding: 6px 0;
}

.header_currency .jq-selectbox__dropdown ul li:hover {
    background: #eee;
}

.header_currency .jq-selectbox__dropdown ul li.sel {
    color: #62bc46;
    font-weight: 700;
}

.header_cart {
    float: right;
}

.header_cart a {
    display: inline-block;
    width: 231px;
    height: 82px;
    background: #24262a;
    color: #ffffff;
}

.header_cart a i {
    width: 82px;
    height: 82px;
    background: #62bc46;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;;
}

.header_cart a .fa-shopping-cart:before {
    font-size: 23px;
    display: inline-block;
    margin-top: 30px;
    margin-left: 30px;
}

.header_cart a b {
    display: inline-block;
    margin-top: 32px;
    margin-left: 37px;
    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;;
}

.header_cart a span {
    display: inline-block;
    margin-top: 16px;
    margin-left: 4px;
    -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;;
    opacity: 0.2;
}

.header_cart a span.count {
    opacity: 0.9;
}

.header_cart a:hover i {
    background: #efc94c;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;;
}

.header_cart a:hover b {
    color: #efc94c;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;;
}

.header_cart a:hover span {
    color: #efc94c;
    -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 {
    float: right;
    width: 301px;
}

.header_search #search-field {
    width: 100%;
    height: 82px;
    padding: 0 60px 0 12px;
    background: #f3f3f3;
}

.header_search input[type="text"] {
    border: 0px;
}

.header_search #search-submit {
    position: absolute;
    font-size: 26px;
    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;;
    top: 27px;
    right: 363px;
    -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: #62bc46;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;;
}

.custom_header {
    clear: right;
    margin-right: 2px;
}

.custom_header .fa-phone-square:before {
    font-size: 59px;
    color: #62bc46;
}

.custom_header i {
    float: right;
    margin-top: 20px;
    margin-right: 20px;
}

.custom_header h3 {
    color: #62bc46;
    font-size: 12px;
    margin-top: 0px;
    font-weight: normal;
    font-weight: 300;
    margin-left: 2px;
}

.custom_header h4 {
    font-size: 40px;
    font-weight: normal;
    color: #191b1f;
    font-weight: 300;
    margin: -21px 0 0 0;
}

.custom_header .custom_header-cnt {
    display: inline-block;
    float: right;
    margin-top: 8px;
    margin-right: 60px;
}

/* 7.2 MEGAMENU */
#megamenu {
    height: 100px;
    position: relative;
    z-index: 999;
}

#megamenu,
.megamenu_mobile .level_1 {
    background-color: #62bc46;
}

.megamenu_mobile .level_1 > li + li {
    border-top: 1px solid #4d6537;
}

.megamenu_mobile .level_2 > li + li {
    border-top: 1px solid #4d6537;
}

.megamenu_mobile .level_3 > li + li {
    border-top: 1px solid #4d6537;
}

#megamenu .submenu {
    background: #4d6537;
    -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;;
}

.sf-menu {
    position: relative;
}

.sf-menu > li {
    float: left;
    width: 14.28%;
    height: 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.sf-menu > li > a {
    font-size: 14px;
    height: 100px;
    display: block;
    margin: 0 0px 0 0;
    /*line-height: 100px;*/
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    top:40%;
}

.sf-menu > li + li {
    border-left: 1px solid #4d6537;
}

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

.sf-menu > li:hover {
    background: #4d6537;
    -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;;
}

.sf-menu > li > a:hover .menu_badge {
    background: #62bc46;
    -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;;
}

.sf-menu .menu_badge {
    display: block;
    padding: 2px 5px;
    background: #191b1f;
    font-size: 9px;
    color: #ffffff;
    text-transform: uppercase;
    position: absolute;
    right: 0px;
    top: 0px;
}

.sf-menu > li > ul {
    /*width: 100%;*/
    background: #ffffff;
    /*position: absolute;*/
    left: 0;
    /*top: 100px;*/
    display: none;
}

.sf-menu .submenu {
    padding: 20px
}

/* 1: CUSTOM LINK */
.megamenu_item_1 {
}

/* 2: CATALOG */
.megamenu_item_2 {
}

.submenu_2 {

}

.submenu_2 h4 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
}

.submenu_2 h4 a {
    color: #ffffff;
}

.submenu_2 h4 a:hover {
    color: #62bc46;
}

.submenu_2 ul {
    margin: 20px 0 0 0;
}

.submenu_2 ul li {
    padding: 6px 0;
}

.submenu_2 ul li a {
}

.submenu_2 .btn {
    margin: 20px 0 0 0;
}

/* 3: BLOG */
.megamenu_item_3 {
}

.megamenu_item_3 .blog_date {
}

.megamenu_item_3 .blog_title {
}

.megamenu_item_3 .blog_content img {
    display: none;
}

.megamenu_item_3 .blog_content h3 {
    font-weight: 300;
    color: #f3f3f3;
}

/* 4: SALE */
.megamenu_item_4 {
}

.megamenu_item_4 .product_img {
    background: #ffffff;
    padding: 10px;
}

.megamenu_item_4 .product_name {
    margin-top: 26px;
}

.megamenu_item_4 .product_name a {
    color: #ffffff;
}

.megamenu_item_4 .product_name a:hover {
    color: #62bc46;
}

.megamenu_item_4 .product_price {
    margin-top: 20px;
    display: inline-block;
}

.megamenu_item_4 .product_price .money {
    font-size: 25px;
}

.megamenu_item_4 .product_price .compare-at-price {
    font-size: 16px;
    line-height: 16px;
    color: #F15F43;
    text-decoration: line-through;
}

/* 5: CUSTOM LINK */
.megamenu_item_5 {
}

/* 6: CUSTOM LINK */
.megamenu_item_6 {
}

/* STICK UP MENU STYLES */
#megamenu.isStuck {
    width: 100%;
    left: 0;
    top: 0px !important;
    height: 50px;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}

#megamenu.isStuck .menu_badge {
    display: none;
}

#megamenu.isStuck .sf-menu > li {
    float: left;
    width: 14.28%;
    height: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#megamenu.isStuck .sf-menu > li > a {
    font-size: 14px;
    height: 50px;
    display: block;
    margin: 0 0px 0 0;
    /*line-height: 50px;*/
    position: relative;
    top: 10%;
}

#megamenu.isStuck .sf-menu > li > ul {
    top: 50px;
}

/* 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 {
    height: 100%;
    position: relative;
    z-index: 1;
}

.nivoSlider {
}

.nivo-caption {
    width: 100%;
    height: 100% !important;
}

.nivo-caption a {
    display: block;
    height: 100%;
}

.nivo-caption {
    display: none;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 8;
}

.nivo-caption h2 {
    font-size: 40px;
    line-height: 50px;
    color: #ffffff;
    font-weight: 300;
    text-transform: none;
    padding-top: 18%;
    -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;;
}

.nivo-caption h3 {
    font-size: 100px;
    line-height: 50px;
    color: #ffffff;
    font-weight: 300;
    text-transform: none;
    padding-top: 8px;
    -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;;
    margin-left: -9px;
}

.nivo-caption i {
    z-index: 99;
    text-align: center;
    width: 94px;
    height: 94px;
    line-height: 94px;
    font-size: 36px;
    float: left;
    color: #ffffff;
    background: #62bc46;
    -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;;
}

.nivo-caption p {
    color: #ffffff;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    padding-top: 33px;
    padding-right: 53%;
    padding-bottom: 12%;
    margin-bottom: 20px;
}

.nivo-caption span {
    color: #ffffff;
    font-size: 20px;
    display: inline-block;
    padding: 33px 33px 31px 32px;
    background: #191b1f;
    -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;;
}

.nivo-caption i:hover {
    background: #efc94c;
    -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;;
}

.nivo-caption span:hover {
    background: #8dbf41 !important;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;;
}

.nivo-caption a:hover h3 {
    color: #efc94c;
    -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;;
}

.nivo-caption a:hover h2 {
    color: #62bc46;
    -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;;
}

.nivo-caption .wrp {
    position: absolute;
    bottom: 0;
}

.slider_nav {
    display: none;
}

.slider_nav .container {
}

.slider_nav a {
    width: 30px;
    height: 30px;
    display: block;
    vertical-align: top;
    margin: -15px 0 0 0;
    background: #191b1f;
    position: absolute;
    top: 50%;
    z-index: 9;
    cursor: pointer;
}

.slider_nav a:before {
    display: block;
    font: 20px/28px 'FontAwesome';
    color: #ffffff;
    text-align: center;
}

.slider_nav a:hover {
}

.slider_nav .slider_nav__prev {
    left: 20px;
}

.slider_nav .slider_nav__prev:before {
    content: '\f104';
}

.slider_nav .slider_nav__next {
    right: 20px;
}

.slider_nav .slider_nav__next:before {
    content: '\f105';
}

.slider_controls {
    font-size: 10px;
    text-align: center;
    position: absolute;
    right: 0;
    z-index: 10;
    right: 21%;
    top: 44%;
    margin-top: 4px;
    margin-right: 10px;
}

.slider_controls .container {
}

.slider_controls a {
    display: block;
    vertical-align: top;
    color: #ffffff;
    cursor: pointer;
    margin-bottom: 3px;
}

.slider_controls a ~ a {
    margin: 0 0 3px 0px;
}

.slider_controls a span {
    display: none;
}

.slider_controls a:before {
    content: '\f111';
    display: block;
    font: 20px 'FontAwesome';
}

.slider_controls a:hover {
    color: #62bc46;
}

.slider_controls a.active {
    color: #62bc46;
    cursor: default;
}

/* 7.4 SHOWCASE */
#showcase {
}

.showcase-wrapper1 {
    padding-top: 94px;
    padding-bottom: 94px;
}

.custom_showcase {
}

.custom_showcase__1 {
}

.custom_showcase__2 {
}

.custom_showcase__3 {
}

.custom_showcase__4 {
}

.showcase_item__1, .showcase_item__2 {
    padding-bottom: 35px;
}

.showcaseitem1-txt1, .showcaseitem2-txt1, .showcaseitem3-txt1, .showcaseitem4-txt1 {
    font-size: 20px;
    font-weight: bold;
    text-transform: none;
}

.showcaseitem1-txt1 {
    color: #62bc46;
    font-weight: bold;
    -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;;
}

.showcaseitem2-txt1 {
    color: #f15f43;
    font-weight: bold;
    -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;;
}

.showcaseitem3-txt1 {
    color: #efc94c;
    font-weight: bold;
    -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;;
}

.showcaseitem4-txt1 {
    color: #8dbf41;
    font-weight: bold;
    -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;;
}

.showcaseitem1-txt2, .showcaseitem2-txt2, .showcaseitem3-txt2, .showcaseitem4-txt2 {
    font-size: 17px;
    line-height: 21px;
}

.showcaseitem-cnt2 .showcaseitem1-txt1:hover {
    color: #f15f43;
    -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;;
}

.showcaseitem-cnt2 .showcaseitem2-txt1:hover {
    color: #62bc46;
    -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;;
}

.showcaseitem-cnt2 .showcaseitem3-txt1:hover {
    color: #f15f43;
    -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;;
}

.showcaseitem-cnt2 .showcaseitem4-txt1:hover {
    color: #62bc46;
    -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;;
}

.showcase_item__1 a:hover p {
    background: #f15f43;
    -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;;
}

.showcase_item__1 a:hover span {
    color: #efc94c;
    -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;;
}

.showcase_item__1 a:hover i {
    background: #62bc46;
    -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;;
}

.showcase_item__1 a:hover h4 {
    color: #8dbf41;
    -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;;
}

.showcase_item__1 .showcaseitem-cnt1 i:hover {
    background: #efc94c;
    -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;;
}

.showcase_item__2 a:hover p {
    background: #efc94c;
    -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;;
}

.showcase_item__2 a:hover span {
    color: #f15f43;
    -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;;
}

.showcase_item__2 a:hover i {
    background: #62bc46;
    -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;;
}

.showcase_item__2 a:hover h4 {
    color: #efc94c;
    -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;;
}

.showcase_item__2 .showcaseitem-cnt1 i:hover {
    background: #f15f43;
    -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;;
}

.showcase_item__3 a:hover p {
    background: #f15f43;
    -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;;
}

.showcase_item__3 a:hover span {
    color: #efc94c;
    -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;;
}

.showcase_item__3 a:hover i {
    background: #8dbf41;
    -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;;
}

.showcase_item__3 a:hover h4 {
    color: #8dbf41;
    -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;;
}

.showcase_item__3 .showcaseitem-cnt1 i:hover {
    background: #62bc46;
    -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;;
}

.showcase_item__4 a:hover p {
    background: #62bc46;
    -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;;
}

.showcase_item__4 a:hover span {
    color: #f15f43;
    -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;;
}

.showcase_item__4 a:hover i {
    background: #efc94c;
    -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;;
}

.showcase_item__4 a:hover h4 {
    color: #f15f43;
    -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;;
}

.showcase_item__4 .showcaseitem-cnt1 i:hover {
    background: #8dbf41;
    -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;;
}

.showcaseitem-cnt1 {
    width: 114px;
    float: left;
}

.showcaseitem-cnt2 {
    height: 228px;
    background: #ffffff;
    padding-top: 6%;
    padding-left: 30%;
    padding-right: 5%;
}

.showcaseitem-cnt2 h4 {
    margin: 0;
}

.showcaseitem-cnt1 p {
    margin: 0;
    text-align: center;
    display: inline-block;
    width: 114px;
    height: 114px;
    font-size: 36px;
    line-height: 114px;
    color: #ffffff;
}

.showcaseitem-cnt1 i {
    text-align: center;
    display: inline-block;
    width: 114px;
    height: 114px;
    font-size: 32px;
    line-height: 114px;
    color: #ffffff;
    background: #24262a;
    -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;;
}

.showcase_item__1 p {
    background: #62bc46;
    -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;;
}

.showcase_item__2 p {
    background: #f15f43;
    -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;;
}

.showcase_item__3 p {
    background: #efc94c;
    -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;;
}

.showcase_item__4 p {
    background: #8dbf41;
    -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;;
}

.showcase_item__5 {
    position: relative;
    min-height: 520px;
}

.showcase_item__6 {
    position: relative;
    min-height: 520px;
}

.showcase_item__7 {
    position: relative;
    min-height: 520px;
}

.showcase_item__5 .showcaseitem5-cnt,
.showcase_item__6 .showcaseitem6-cnt,
.showcase_item__7 .showcaseitem7-cnt {
    color: #ffffff;
    height: auto;
}

.showcase_item__5 .fa-phone-square {
    position: relative;
    font-size: 228px;
    float: left;
    padding-top: 13%;
    -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;;
}

.showcase_item__5 .fa-phone-square:hover {
    color: #efc94c;
    -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;;
}

.showcase_item__5 a:hover h4 {
    color: #efc94c;
    -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;;
}

.showcase_item__5 a:hover h3 {
    color: #efc94c;
    -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;;
}

.showcase_item__5 h3 {
    font-size: 107px;
    line-height: 98px;
    color: #ffffff;
    font-weight: 300;
    width: 400px;
    -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;;
}

.showcase_item__5 h4 {
    font-size: 53px;
    font-weight: 300;
    color: #ffffff;
    margin-top: -11px;
    margin-left: 3px;
    -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;;
}

.showcase_item__5 .fa-file-text-o {
    position: relative;
    margin-top: 170px;
    font-size: 46px;
    width: 178px;
    height: 178px;
    line-height: 178px;
    text-align: center;
    background: #62bc46;
    float: right;
    -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;;
}

.showcase_item__5 .cnt-txt {
    display: inline-block;
    clear: left;
    padding-left: 6%;
    padding-top: 9%;
    margin-top: 3px;
}

.showcase_item__5 .fa-file-text-o:hover {
    background: #efc94c;
    -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;;
}

.showcase_item__6 .fa-gift {
    position: relative;
    font-size: 228px;
    float: right;
    padding-top: 13%;
    -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;;
}

.showcase_item__6 .fa-gift:hover {
    color: #62bc46;
    -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;;
}

.showcase_item__6 a:hover h4 {
    color: #62bc46;
    -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;;
}

.showcase_item__6 a:hover h3 {
    color: #62bc46;
    -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;;
}

.showcase_item__6 h3 {
    font-size: 107px;
    line-height: 98px;
    color: #ffffff;
    font-weight: 300;
    -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;;
}

.showcase_item__6 h4 {
    font-size: 53px;
    font-weight: 300;
    color: #ffffff;
    margin-top: -11px;
    margin-left: 3px;
    -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;;
}

.showcase_item__6 .fa-file-text-o {
    position: relative;
    margin-top: 170px;
    font-size: 46px;
    width: 178px;
    height: 178px;
    line-height: 178px;
    text-align: center;
    background: #62bc46;
    float: left;
    -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;;
}

.showcase_item__6 .cnt-txt {
    display: inline-block;
    padding-top: 9%;
    margin-top: 3px;
    margin-left: 7%;
    width: 620px;
    text-align: right;
}

.showcase_item__6 .fa-file-text-o:hover {
    background: #62bc46;
    -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;;
}

.showcase_item__7 .fa-credit-card {
    position: relative;
    font-size: 190px;
    float: left;
    padding-top: 15%;
    -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;;
}

.showcase_item__7 .fa-credit-card:hover {
    color: #efc94c;
    -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;;
}

.showcase_item__7 a:hover h4 {
    color: #efc94c;
    -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;;
}

.showcase_item__7 a:hover h3 {
    color: #efc94c;
    -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;;
}

.showcase_item__7 h3 {
    font-size: 107px;
    line-height: 98px;
    color: #ffffff;
    font-weight: 300;
    width: 560px;
    -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;;
}

.showcase_item__7 h4 {
    font-size: 53px;
    font-weight: 300;
    color: #ffffff;
    margin-top: -11px;
    margin-left: 3px;
    -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;;
}

.showcase_item__7 .fa-file-text-o {
    position: relative;
    margin-top: 170px;
    font-size: 46px;
    width: 178px;
    height: 178px;
    line-height: 178px;
    text-align: center;
    background: #62bc46;
    float: right;
    -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;;
}

.showcase_item__7 .cnt-txt {
    display: inline-block;
    clear: left;
    padding-left: 6%;
    padding-top: 9%;
    margin-top: 3px;
}

.showcase_item__7 .fa-file-text-o:hover {
    background: #efc94c;
    -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;;
}

.showcase_item__5 {

    background: url(../image/custom_showcase5_img.jpg?1985645352046920887);

}

.showcase_item__6 {

    background: url(../image/custom_showcase6_img.jpg?1985645352046920887);

}

.showcase_item__7 {

    background: url(../image/custom_showcase7_img.jpg?1985645352046920887);

}

/* 7.5 MAIN PRODUCT LISTING */
.product_listing_main .product_img {
    margin-bottom: 31px;
    overflow: hidden;
}

.product_listing_main .product_img a {
    display: block;
    position: relative;
    z-index: 10;
}

.product_listing_main .product_img img {
    background-color: #f3f3f3;
    position: relative;
    z-index: 1;
    padding: 10px;
}

.product_listing_main .product_img .img__2 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    opacity: 0;
}

.product_listing_main .row {
    margin-left: 0;
    margin-right: 0;
}

.product_listing_main .product_img span.product_badge {
    display: block;
    padding: 5px 10px;
    color: #ffffff;
    position: absolute;
    top: 0;
    z-index: 100;
}

.product_listing_main .product_img span.new {
    background: #191b1f;
    left: 0;
}

.product_listing_main .product_img span.sale {
    background: #62bc46;
    right: 0;
}

.product_listing_main .product-sale {
    position: absolute;
    top: -9px;
    left: -39px;
    z-index: 10;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #62bc46;
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
    padding: 26px 42px 8px;
    overflow: hidden;
}

.product_listing_main .product_info {
}

.product_listing_main .product_name {
    text-transform: uppercase;
    margin-top: 16px;
}

.product_listing_main .product_name a {
}

.product_listing_main .product_desc {
    margin-top: 4px;
    padding-bottom: 80px;
}

.product_listing_main .product_price {
}

.product_listing_main .product_price .money {
    font-size: 25px;
    line-height: 24px;
}

.product_listing_main .product_price .money_sale {
    font-size: 16px;
    line-height: 16px;
    color: #f15f43;
    text-decoration: line-through;
}

.product_listing_main .product_links {
    z-index: 999;
    position: absolute;
    margin-top: -68px;
}

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

.product_listing_main .product_links a {
    z-index: 999;
}

.product_listing_main .product_links .btn-cart {
    z-index: 999;
    background: none !important;
    border-color: transparent !important;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;;
    padding: 0 0;
    border: 0px solid transparent !important;
}

.product_listing_main .product_links .btn-cart i {
    font-size: 21px;
    width: 68px;
    height: 68px;
    line-height: 68px;
    background: #62bc46;
    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;;
}

.product_listing_main .product_links .btn-cart:hover .fa {
    background: #efc94c;
    -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;;
}

/* HOMEPAGE PRODUCT LISTING (CAROUSEL) */
.featured_products .bx-wrapper {
    max-width: 100% !important;
    margin: 30px 0 0 0;
}

.featured_products .bx-controls a {
    width: 30px;
    height: 30px;
    display: block;
    overflow: hidden;
    margin: -15px 30px 0 30px;
    text-align: center;
    position: absolute;
    top: 46%;
    z-index: 99;
    background: rgba(25, 27, 31, .7);
}

.featured_products .bx-controls a:hover {
    background: rgba(25, 27, 31, 1);
}

.featured_products .bx-controls a:before {
    display: block;
    font: 17px/30px 'FontAwesome';
    color: #ffffff;
}

.featured_products .bx-prev:before {
    content: '\f104';
    padding: 0 1px 0 0;
}

.featured_products .bx-next:before {
    content: '\f105';
    padding: 0 0 0 1px;
}

.featured_products .bx-prev {
    left: -30px;
}

.featured_products .bx-next {
    right: -30px;
}

.featured_products h2 {
    padding-top: 82px;
    padding-bottom: 33px;
}

.product_homepage {
    width: 300px !important;
    margin: 0;
}

/* COLLECTION PRODUCT LISTING (GRID/LIST) */
.product_collection {
    margin: 30px 0 0 0;
}

.product_collection.item3_1 {
    clear: left;
}

.view_list {
}

.view_list .product {
    width: 100%;
    float: none;
    overflow: hidden;
}

.view_list .product_img {
    width: 200px;
    float: left;
}

.view_list .product_info {
    margin: 0 0 0 215px;
}

.view_list .product_desc {
    display: block;
}

/* 7.6 OTHER HOMEPAGE BLOCKS */

/* HOMEPAGE INFO BLOCK */
.homepage_info {
    position: relative;

    background-image: url(../image/homepage_info_bg_img.jpg?1985645352046920887);

}

.homepage_info h3 {
    font-size: 100px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 300;
    text-transform: none;
    padding-top: 14%;
}

.homepage_info h4 {
    font-size: 40px;
    line-height: 55px;
    color: #ffffff;
    font-weight: 300;
}

.homepage_info .txt1 {
    font-size: 20px;
    line-height: 25px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.5;
    font-weight: 300;
    margin-top: 36px;
}

.homepage_info i {
    font-size: 36px;
    color: #ffffff;
    float: left;
    background: #62bc46;
    width: 94px;
    height: 94px;
    line-height: 94px;
    -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;;
}

.homepage_info .btn {
    margin-top: 111px;
    padding: 0px 0px;
    background: #191b1f !important;
    border: 0px solid;
    -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;;
}

.homepage_info span {
    display: inline-block;
    font-size: 20px;
    padding: 33px 33px 31px 32px;
}

.homepage_info a:hover i {
    background: #efc94c;
    -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;;
}

.homepage_info .btn:hover {
    background: #62bc46 !important;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;;
}

/* 7.7 FOOTER */
footer {
    background: #191b1f;
    padding-top: 50px;
}

footer h3 {
    font-size: 14px;
    font-weight: 500;
    color: #62bc46;
}

.footer_block {
    /*height: 170px;*/
}

ul.footer_links {
    margin-top: 17px;
}

ul.footer_links li {
}

ul.footer_links li a {
    text-transform: uppercase;
    line-height: 22px;
    color: #fff;
}

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

.footer_contacts i {
    font-size: 15px;
    line-height: 20px;
    color: #fff;
}

.footer_contacts .fa-phone {
    font-size: 20px;
}

.footer_contacts .fa {
    margin-right: 13px;
}

.contacts_company {
    font-size: 25px;
    line-height: 22px;
    color: #ffffff;
    margin-top: 21px;
}

.contacts_address {
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
}

.contacts_email {
    font-size: 14px;
    line-height: 22px;
    /*text-transform: uppercase;*/
    margin-top: 9px;
    color: #fff;
}

.contacts_email a {
    color: #fff;
}

.contacts_email a:hover {
    color: #fff;
}

.contacts_phone {
    margin-top: 12px;
    color: #fff;
}

.footer_newsletter {
}

.footer_newsletter input {
}

.footer_newsletter button {
}

.footer_newsletter .form_status {
    margin: 10px 0 0 0;
    font-weight: bold;
}

.footer_newsletter .form_status.error {
    color: #f00;
}

.footer_newsletter .form_status.success {
    color: #119000;
}

.footer_social li {
    display: inline-block;
}

.footer_social li ~ li {
    margin: 0 0 0 19px;
}

.footer_social i {
    font-size: 30px;
    color: #595d65;
    -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 i:hover {
    font-size: 30px;
    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;;
}

footer .footer-wrapper {
    background: #191b1f;
    /*margin-top: 89px;*/
    text-align: center;
}

footer .copyright {
}

footer .copyright p {
    margin: 35px 0;
}

footer .copyright a {
}

footer .copyright a:hover {
}

footer .copyright span a {
    color: #62bc46;
}

footer .copyright a:hover {
    color: #f15f43;
}

/* BACK TO TOP BUTTON */
#back_top {
    width: 30px;
    height: 30px;
    display: block;
    margin: 0 0 0 615px;
    background: #191b1f;
    text-align: center;
    position: fixed;
    left: 50%;
    bottom: 50px;
    z-index: 999;
    -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;;
}

#back_top i {
    display: block;
    font-size: 15px;
    line-height: 30px;
    color: #ffffff;
}

#back_top:hover {
    background: #8dbf41;
    -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;
}

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

/* 8.1 BREADCRUMBS */
.breadcrumb_wrap {
    margin: 15px 0 30px;
}

.breadcrumb {
    margin: 0;
    padding: 7px 15px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/* 8.2 DESCRIPTIONS & TAGS */
.collection_info {
}

.collection_info .collection_img {
    margin-top: 15px;
    text-align: center;
}

.collection_info .collection_img img {
    padding: 10px;
    background: #f3f3f3;
}

.collection_info .collection_desc {
    margin-top: 15px;
}

.collection_info .collection_desc .rte {
    margin: 0;
}

ul.tags {
    margin: 10px 0 0 0;
    list-style-type: none;
}

ul.tags li {
    float: left;
    margin: 5px 5px 0 0;
}

ul.tags li a {
    display: block;
    padding: 5px 10px;
    background: #62bc46;
    color: #ffffff;
}

ul.tags li a:hover,
ul.tags li.active a {
    background: #191b1f;
}

/* 8.3 PRODUCTS SORTING */
.product_listing_controls {
    overflow: hidden;
    margin: 30px 0 30px 0;
    padding: 0 10px 10px 10px;
    background: #f3f3f3;
    border: 1px solid #dddddd;
}

.product_listing_toggle {
    float: left;
    font-size: 0;
}

.product_listing_toggle li {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 10px 10px 0 0;
    border: 1px solid transparent;
    color: #62bc46;
    text-align: center;
    cursor: pointer;

    -webkit-transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
    -moz-transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
    -ms-transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
    -o-transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
    transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;

}

.product_listing_toggle li.active {
    background: #ffffff;
    border-color: #dddddd;
    color: #191b1f;
    cursor: default;
}

.product_listing_toggle li i {
    font-size: 17px;
    line-height: 30px;
}

.sort_by {
    float: right;
    margin: 10px 0 0 10px;
}

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

.show_products {
    float: right;
    margin: 10px 0 0 10px;
}

.show_products label {
    margin: 0 4px 0 0;
    line-height: 30px;
}

.show_products select {
    width: auto !important;
    height: 30px;
    display: inline-block;
    padding: 5px 4px;
    cursor: pointer;
}

#product_listing_preloader {
    position: relative;
}

#product_listing_preloader p {
    width: 100%;
    height: 32px;
    background: url(../image/bx_loader.gif?1985645352046920887) 50% 0 no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}

/* 8.4 COLLECTION LISTING */
.collection_listing_main {
}

.collection_listing_item {
    margin: 30px 0 0 0;
}

.collection_listing_item.item_4_1 {
    clear: left;
}

.collection_listing_item .collection_img {
}

.collection_listing_item .collection_img img {
    background: #f3f3f3;
    padding: 10px;
}

.collection_listing_item .collection_img a {
}

.collection_listing_item .collection_info {
}

.collection_listing_item .collection_name {
    margin: 15px 0 0 0;
}

.collection_listing_item .collection_name a {
    color: #191b1f;
}

.collection_listing_item .collection_name a:hover {
    color: #62bc46;
}

.collection_listing_item .collection_products {
    margin: 5px 0 0 0;
}

.collection_listing_item .collection_desc {
    margin: 5px 0 0 0;
}

.collection_listing_item .btn {
    margin: 15px 0 20px 0;
}

/* 8.5 PAGINATION */
.products_count {
    height: 30px;
    float: left;
    margin: 10px 10px 0 0;
    font-size: 13px;
    font-weight: bold;
    line-height: 30px;
}

#pagination {
    display: inline-block;
    overflow: hidden;
    float: right;
    margin: 10px 0 0 10px;
    font-size: 0;
}

#pagination span {
    display: inline-block;
    vertical-align: top;
}

#pagination span ~ span {
    margin: 0 0 0 2px;
}

#pagination span a {
    height: 30px;
    display: block;
    padding: 0 10px;
    background: #ffffff;
    border: 1px solid #dddddd;
    font-size: 13px;
    line-height: 29px;
    color: #b3b9c6;
}

#pagination span.page a {
    width: 30px;
    padding: 0;
    text-align: center;
}

#pagination span a:hover {
    background: #62bc46;
    border-color: #62bc46;
    color: #ffffff;
}

#pagination span.current {
    width: 30px;
    height: 30px;
    background: #191b1f;
    border: 1px solid #191b1f;
    font-weight: bold;
    font-size: 13px;
    line-height: 29px;
    color: #ffffff;
    text-align: center;
    cursor: default;
}

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

.sidebar_widget {
}

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

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

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

/* 9.1 LINKS LIST */
.sidebar_widget ul {
}

.sidebar_widget ul li {
    background: #f3f3f3;
}

.sidebar_widget ul li ~ li {
    margin: -1px 0 0 0;
}

.sidebar_widget ul li a {
    display: block;
    padding: 7px 15px;
    border: 1px solid #dddddd;
    color: #62bc46;
    font-size: 16px;
}

.sidebar_widget ul li.active a,
.sidebar_widget ul li a:hover {
    color: #62bc46;
}

/* 9.2 SIDEBAR PRODUCT LISTING */
.sidebar_widget .product {
    padding: 15px;
    border: 1px solid #dddddd;
}

.sidebar_widget .product ~ .product {
    margin: -1px 0 0 0;
}

.sidebar_widget .product_img {
    background: #f3f3f3;
    margin-bottom: 10px;
    text-align: center;
}

.sidebar_widget .product_info {
}

.sidebar_widget .product_name {
}

.sidebar_widget .product_desc {
}

.sidebar_widget .product_price {
    margin-top: 5px;
}

.sidebar_widget .product_price .money {
    font-size: 20px;
}

.sidebar_widget .product_price .compare-at-price {
    color: #f15f43;
    font-size: 16px;
}

.sidebar_widget .product_links {
    margin-top: 5px;
}

.sidebar_widget .product_links form {
    float: left;
}

.sidebar_widget .product_links a {
}

/********************************************************************************************************
                           10. 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: #b3b9c6;
    -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;;
}

#searchresults .search-form button:hover {
    color: #62bc46;
    -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;;
}

#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 #dddddd;
}

#searchresults ol li {
    overflow: hidden;
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid #dddddd;
}

#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
********************************************************************************************************/

.product_wrap {
}

/* 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: 1px solid #dddddd;
}

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

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

.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(25, 27, 31, .7);
    -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(25, 27, 31, 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;
}

.product_wrap .product-price {
    margin: 15px 0 0 0;
    padding: 0;
    font-size: 18px;
}

.product_wrap .product-price .money {
    margin: 0 5px 0 0;
    font-size: 25px;
    line-height: 24px;
}

.product_wrap .product-price .compare-at-price {
    font-size: 16px;
    line-height: 16px;
    color: #f15f43;
    text-decoration: line-through;
}

#purchase {
}

#purchase label {
    display: inline-block;
    margin: 15px 10px 0 0;
    padding: 0 !important;
    line-height: 37px;
}

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

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

.product_wrap .variants-wrapper {
    margin: 0 -10px;
    overflow: hidden;
}

.product_wrap .selector-wrapper {
    width: 33.33333333333333%;
    float: left;
    padding: 15px 10px 0 10px;
}

.product_wrap .selector-wrapper label {
    display: block;
    line-height: 1.5em;
    text-align: left;
}

.product_wrap .selector-wrapper select {
    width: 100%;
    height: 37px;
    padding: 5px;
}

.product_wrap .product_details {
    margin: 15px 0 0 0;
    padding: 10px 0 15px 0;
    border: 1px solid #dddddd;
    border-width: 1px 0;
}

.product_wrap .product_details > div {
    padding: 5px 0 0 0;
}

.product_wrap #product_description {
}

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

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

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

ul.product_listing_related .product_name {
}

ul.product_listing_related .product_price {
    padding-bottom: 20px;
    padding-top: 20px;
}

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

/* 12.1 POSTS LISTING */
#blog {
}

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

.article_header {
    padding: 15px 0;
    border-bottom: 1px solid #dddddd;
}

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

/* 12.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 {
}

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

/* 13.1 LOG IN */

/* 13.2 ACCOUNT */
.customer_account {
    padding-bottom: 30px;
}

.customer_name {
    text-transform: none !important;
}

.customer_name .divider {
    margin: 0 7px;
}

.customer_name .email {
    color:#fff;
}

.customer_name a {
    float: right;
}

/* 13.3 ADDRESSES */
.customer_addresses {
}

.customer_addresses ul.customer_addresses_actions {
    list-style-type: none;
    margin: 30px 0;
}

.customer_addresses ul.customer_addresses_actions li {
}

.customer_addresses ul.customer_addresses_actions li a {
}

.customer_addresses ul.customer_addresses_actions li a i {
    margin: 0 5px 0 0;
    line-height: inherit;
}

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

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

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

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

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

.cart-list .item_image {
    text-align: center;
}

.cart-list .item_image a {
    width: 195px;
    display: block;
}

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

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

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

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

.cart-list .item_price {
    padding: 10px 0 0 0;
}

.cart-list .item_price .price {
    line-height: 37px;
    font-size: 25px;
}

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

.cart_subtotal h3 .money {
    float: right;
    font-size: inherit;
}

.cart_buttons {
    margin: 30px 0;
}

.cart_instructions {
}

.cart_instructions h4 {
}

.cart_instructions textarea {
    width: 100%;
}

#payment-methods {
    overflow: hidden;
    margin-bottom: 30px;
}

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

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

.contact-form {
}

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="telephone"],
.contact-form textarea {
}

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

.contact-form_buttons {
}

.contact-form_buttons .btn-toolbar {
}

/********************************************************************************************************
                           16. PAGE 404
********************************************************************************************************/

.template-404 h2,
.template-404 h2 a {
    vertical-align: baseline;
}

.subcategoria > li {
    background-color: #4d6537 !important;
}

.subcategoria > li > a {
    color: #fff !important;
    padding-left: 30px !important
}

.subcategoria > li > a:hover {
    color: #62bc46 !important;
}

/* NEWSLETTER POPUP */
#rede_popup__wrap {
    max-width: 971px !important;
}

#rede_popup__wrap .fancybox-skin {
    padding: 36px !important;

    background: url(../image/newsletter_image.png) right bottom no-repeat;

    -webkit-background-size: auto 100%;
    background-size: auto 100%;
}

#rede_popup__wrap .fancybox-inner {
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    padding-bottom: 50px;
}

#rede_popup .logo_rede {
    padding: 30px;
    width: 43%;
    background: #ffffff;
    margin-left: 18px;
}

#rede_popup__wrap .fancybox-close {
}

#rede_popup h4 {
    font-weight: 300;
    font-size: 40px;
    /*line-height: 50px;*/
    color: #ffffff;
    text-transform: none;
    margin-left: 41px;
    margin-top: 30px;
}

.rede-cnt span {
    display: inline-block;
    font-size: 20px;
    line-height: 50px;
    color: #ffffff;
    text-transform: none;
    margin-top: 17px;
}

.rede-cnt p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
    color: #ffffff;
    margin-left: 47px;
    width: 69%;
}

#rede_popup form {
    margin: 30px 0px 0 0;
    position: relative;
}

#rede_popup input[type=email] {
    width: 250px;
    height: 35px;
}

#rede_popup .btn {
    height: 35px;
    font-size: 14px;
}

#rede_popup .rede_off__wrap {
    margin: 30px 0 0 0;
    text-align: center;
    position: absolute;
    top: -66px;
    right: 10px;
}

#rede_popup .rede_off__wrap .btn {
    height: auto;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 9px 19px;
}

#rede_popup .rede_error {
    margin: 0;
    font-weight: bold;
    font-size: 11px;
    color: #f00;
    position: absolute;
    left: 0;
    top: 41px;
}

#rede_popup .rede_success {
    font-weight: bold;
    color: #119000;
    text-align: center;
}

#rede_popup__wrap .fancybox-close:before {
    content: '\f00d';
    display: block;
    font: 18px 'FontAwesome';
    color: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #62bc46;
    text-align: center;
    -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;;
}

#rede_popup__wrap .fancybox-close {
    top: 0px;
    right: 4px;
}

#rede_popup__wrap .fancybox-close:hover:before {
    background: #efc94c;
    -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;;
}

.rede-wrapper .rede_form {
    margin-left: 47px;
}

#rede_popup input[type="email"] {
    font-size: 12px;
    width: 364px;
    height: 40px;
    color: #ffffff;
    text-transform: uppercase;
    padding: 0px 0px 0px 20px;
}

#rede_popup input[type="email"] {
    background: #62bc46;
    border: 0px solid;
}

#rede_popup .subscribe-btn {
    background: #62bc46 !important;
    padding: 20px 10px 18px 18px;
    line-height: 0px;
    text-transform: uppercase;
}

#rede_popup__wrap .subscribe-btn:before {
    font: 12px 'FontAwesome';
    line-height: 0px;
    color: #ffffff;
    text-align: center;
    margin-right: 5px;
}

#rede_popup .subscribe-btn:hover {
    background: #efc94c !important;
}

.desc p {
    margin: 0px !important;
}

.texto-menor p {
    font-size: 14px;
}