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

1. CSS RESET

2. VARIABLES
2.1 GRADIENTS
2.2 COLOR VARIABLES
2.3 CSS3 TRANSITIONS

3. GLOBAL THEME STYLES
3.1 MISCELLANEOUS
3.2 PAGE PRELOADER
3.3 COOKIES POLICY MESSAGE
3.4 GOOGLE MAPS
3.5 FANCYBOX COMMON STYLES
3.6 NEWSLETTER POPUP
3.7 ADD TO CART MESSAGE
3.8 PRODUCT QUICK VIEW

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 & NOTIFICATIONS
5.3 BUTTONS

6. GLOBAL PAGE LAYOUT

7. MAIN PAGE
7.1 PROMOBANNER
7.2 HEADER
7.3 MEGAMENU
7.4 NIVOSLIDER
7.5 SHOWCASE
7.6 MAIN PRODUCT LISTING
7.7 OTHER HOMEPAGE BLOCKS
7.8 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
9.3 SIDEBAR BLOG WIDGETS

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 LOGIN
13.2 RESET PASSWORD
13.3 ACCOUNT
13.4 ADDRESSES
13.5 ORDERS

14. CART PAGE

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

img {max-width: 100%;}




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

/* 2.1 GRADIENTS */




/* 2.2 COLOR VARIABLES */

/* HEX2RGB COLOR CONVERTER */





















/* COLOR SHADES CONVERTER */








































/* 2.3 CSS3 TRANSITIONS */









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

/* 3.1 MISCELLANEOUS */

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


/* 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);
        transform: rotate(180deg);
}




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

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




/* global loader */
@-webkit-keyframes preloader_spin {
    0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    }

    100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
    }
}

@keyframes preloader_spin {
    0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    }

    100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
    }
}


.global_loader {width: 100px;height: 100px;margin: 0 0 0 -50px;border: 3px solid transparent;border-top-color: #01c3df;position: absolute;left: 50%;top: 0;z-index: 1001;
-webkit-border-radius: 50%;
        border-radius: 50%;

-webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;

-webkit-animation: preloader_spin 2s linear infinite;
        animation: preloader_spin 2s linear infinite;
}
.global_loader:before {content: "";
position: absolute;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #fbed04;
-webkit-animation: preloader_spin 3s linear infinite;
        animation: preloader_spin 3s linear infinite;
}
.global_loader:after {
content: "";
position: absolute;
top: 15px;
left: 15px;
right: 15px;
bottom: 15px;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #fe3153;
-webkit-animation: preloader_spin 1.5s linear infinite;
        animation: preloader_spin 1.5s linear infinite;
}

.loader_on .global_loader {
opacity: 1;
}
.loader_off .global_loader {
opacity: 0;
}




/* 3.2 PAGE PRELOADER */
#page_preloader {width: 100%;height: 100%;background: #ffffff;position: fixed;left: 0;top: 0;z-index: 1000;}
#page_preloader .global_loader {margin: -50px 0 0 -50px;top: 50%;}




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




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

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




/* 3.5 FANCYBOX COMMON STYLES */
.fancybox-skin {padding: 15px;
-webkit-border-radius: 0;
        border-radius: 0;
}


.fancybox-close {display: block;background: #01c3df;border: 3px solid rgba(255,255,255,.9);
-webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,.5);
        box-shadow: 0 0 8px 0 rgba(0,0,0,.5);

-webkit-border-radius: 50%;
        border-radius: 50%;
}
.fancybox-close:hover {background: #fe3153;}

.fancybox-close:before {content: '\f00d';width: 30px;height: 30px;display: block;font: 15px/30px 'FontAwesome';color: #ffffff;text-align: center;}


.fancybox-nav span {width: 36px;height: 36px;display: block;margin: -18px 0 0 0;background: #333333;border: 3px solid rgba(255,255,255,.9);
-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.6);
        box-shadow: 0 0 10px 0 rgba(0,0,0,.6);

-webkit-border-radius: 50%;
        border-radius: 50%;


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

}
.fancybox-nav:hover > span {background: #01c3df;}

.fancybox-nav span:before {width: 30px;height: 30px;display: block;font: 20px/28px 'FontAwesome';color: #ffffff;text-align: center;}

.fancybox-prev span:before {content: '\f104';padding: 0 2px 0 0;}
.fancybox-next span:before {content: '\f105';padding: 0 0 0 2px;}




/* 3.6 NEWSLETTER POPUP */
#newsletter_popup__wrap {}
#newsletter_popup__wrap .fancybox-skin {padding: 0 !important;}
#newsletter_popup__wrap .fancybox-close {width: 40px;height: 40px;background: none;border: none;color: #01c3df;right: 28px;top: 28px;
-webkit-box-shadow: none;
        box-shadow: none;
}
#newsletter_popup__wrap .fancybox-close:before {content: '\e5cd';width: 40px;height: 40px;display: block;font: 31px/40px 'Material Icons';color: #01c3df;text-align: center;}
#newsletter_popup__wrap .fancybox-close:hover:before {color: #fe3153;}

#newsletter_popup {padding: 50px;text-align: center;}
#newsletter_popup h4 {margin: 20px 0 0 0;font-size: 50px;line-height: 1em;}
#newsletter_popup p {margin: 30px 0 0 0;font-weight: 300;font-size: 20px;line-height: 1.7em;color: #999999;}

#newsletter_popup form {margin: 30px 0 0 0;position: relative;}
#newsletter_popup input {width: 317px;height: 50px;margin: 0 7px 0 0;padding: 0 15px;font-size: 18px;
-webkit-box-shadow: none;
        box-shadow: none;
}
#newsletter_popup .btn {height: 49px;padding: 0 33px;background: #fbed04 !important;border-color: #fbed04 !important;font-size: 16px;color: #333333 !important;
-webkit-box-shadow: 1px 1px 0 0 rgba(0,0,0,.1) !important;
        box-shadow: 1px 1px 0 0 rgba(0,0,0,.1) !important;
}
#newsletter_popup .btn:hover {background: #01c3df !important;border-color: #01c3df !important;color: #ffffff !important;}

#newsletter_popup .newsletter_off__wrap {margin: 40px 0 0 0;text-align: center;}
#newsletter_popup .newsletter_off__wrap .btn {height: auto;padding: 8px 15px;background: #fe3153 !important;border-color: #fe3153 !important;font-size: 12px;color: #ffffff !important;}
#newsletter_popup .newsletter_off__wrap .btn:hover {background: #01c3df !important;border-color: #01c3df !important;}

#newsletter_popup .newsletter_error {width: 100%;margin: 0;font-weight: bold;font-size: 11px;color: #f00;text-align: center;text-transform: uppercase;position: absolute;left: 0;top: 61px;}
#newsletter_popup .newsletter_success {color: #119000;text-align: center;text-transform: uppercase;}




/* 3.7 ADD TO CART MESSAGE */
#cart_added {}
#cart_added .cart_added__row {height: 120px;display: table;}

#cart_added h4 {margin: 0 0 15px 0;text-align: center;}

.cart_added__1 {width: 120px;height: 100%;display: table-cell;text-align: center;}
.cart_added__1 img {height: 120px;padding: 10px;border: 1px solid #dddddd;}

.cart_added__2 {width: 300px;height: 100%;display: table-cell;padding: 0 0 0 15px;}
.cart_added__2 .product_name {display: block;}
.cart_added__2 #cart_added__quantity {margin: 15px 0 0 0;font-size: 16px;}
.cart_added__2 .btn {margin: 15px 10px 0 0;}


#cart_added.cart_error {max-width: 420px;}




/* 3.8 PRODUCT QUICK VIEW */
#quick_view__wrap {}
#quick_view__wrap .fancybox-skin {padding: 30px !important;}

#product_quick_view {width: 668px;}

.product_quick_wrapper {width: 100%;display: table;}

.quick_view__left {width: 317px;height: 100%;display: table-cell;padding: 0 15px 0 0;}
.quick_view__left #img_big {width: 302px;padding: 4px;border: 1px solid #dddddd;}
.quick_view__left #img_big img {background: rgba(0,0,0,.05);}

.quick_view__left .product_images {width: 302px;overflow: hidden;}
.quick_view__left .product_images .bx-wrapper {max-width: 100% !important;width: 100% !important;}

.quick_view__left .img_gallery {}
.quick_view__left .img_gallery a {width: 94px !important;display: block;float: left;margin: 0 10px 0 0;padding: 4px;border: 1px solid #dddddd;}
.quick_view__left .img_gallery a img {max-width: 100%;background: rgba(0,0,0,.05);}


.quick_view__right {height: 100%;display: table-cell;overflow: hidden;padding: 0 0 0 15px;/*border-left: 1px solid #dddddd;*/}
.quick_view__right p {margin: 15px 0 0 0;font-size: 14px;}
.quick_view__right label {font-weight: normal;font-size: 14px;color: #333333;}

#quick_view__name {margin: 0;}
#quick_view__type {}
#quick_view__vendor {}

#quick_view__variants {overflow: hidden;margin: 15px -9px 0 -9px;}
#quick_view__variants label {display: block;padding: 0 10px;}
#quick_view__variants .options_wrapper {}
#quick_view__variants .selector-wrapper {width: 33.33333333333333%;overflow: visible;float: left;padding: 15px 9px 0 9px;}
#quick_view__variants .selector-wrapper label {display: none !important;}
#quick_view__variants .selector-wrapper select {width: 99%;/*display: block;*/}
#quick_view__variants .selector-wrapper select option {width: 99%;}

#quick_view__price {margin: 30px 0 0 0;}
#quick_view__price {position: relative;}
#quick_view__price .price {margin: 0;padding: 0 60px 0 0;}
#quick_view__price .money {margin: 0 7px 0 0;font-size: 20px;}
#quick_view__price .money_sale {font-size: 16px;}
#quick_view__price .money_sale_percent {width: 52px;height: 26px;display: block;margin: -13px 0 0 0;background: #008dff;font: bold 14px/26px 'Arial';color: #ffffff;text-align: center;position: absolute;right: 0;top: 50%;
-webkit-border-radius: 2px;
        border-radius: 2px;
}

#quick_view__availability {margin: 20px 0 0 0;}

#quick_view__form {margin: 15px 0 0 0;}
#quick_view__form label {display: block;}
#quick_view__form #quick_view__add {height: 50px;margin: 10px 10px 0 0;padding: 0 20px;font-size: 18px;}




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

body {font: normal 13px "Raleway";color: #999999;}




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

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

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

.page_heading {margin: 0;font-size: 20px;
padding-top: 12px;}
.page_heading a {font-weight: inherit;}

.template-index .page_heading,
.template-list-collections .page_heading {margin: 115px 0 0 0;text-align: center;}




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

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

a:hover,
a:active {color: #008dff;}




/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product_name {font-size: 20px;color: #333333;}
.product_name a {color: #333333;

-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: #008dff;}


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


.money {font-family: 'Open Sans';color: #008dff;}

.money_sale,
.compare-at-price {color: #999999;text-decoration: line-through;}




/* 4.5 RTE */
.rte {margin-top: 15px;margin-bottom: 15px;color: inherit;}
.rte > * {max-width: 100% !important;}

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

.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5,
.rte h6 {margin: 30px 0 15px 0;padding: 0 0 15px 0;border-bottom: 2px solid rgba(0,0,0,.2);}

.rte h1 {font-size: 20px;}
.rte h2 {font-size: 18px;}
.rte h3 {font-size: 16px;}
.rte h4 {font-size: 15px;}
.rte h5 {font-size: 14px;}
.rte h6 {font-size: 14px;}

.rte ul {list-style-type: disc;list-style-position: inside;}

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

.rte blockquote {padding: 5px 35px;font-weight: normal;}
.rte blockquote:before {content: '\f10d';font: 16px 'FontAwesome';}
.rte blockquote:after {content: '\f10e';float: right;font: 12px 'FontAwesome';}
.rte blockquote * {margin: 10px 0 !important;font-size: 15px;}

.rte iframe {max-width: 100% !important;}


.page_content .rte {}
.page_content .rte table {width: 100%;max-width: 100%;}
.page_content .rte table td {padding: 0 15px;}
.page_content .rte table td img {width: auto;max-width: 100% !important;}

.page_content .rte table h2,
.page_content .rte table h3,
.page_content .rte table h4,
.page_content .rte table h5,
.page_content .rte table h6 {margin: 15px 0;padding: 0;border: none;font-weight: bold;color: #00d8c0;text-transform: uppercase;}

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




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

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

select,
select.form-control,
textarea,
textarea.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {padding: 6px;border:1px solid #dddddd;font-size: 13px;color: ;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;

-webkit-border-radius: 2px;
        border-radius: 2px;

box-shadow: none;
}

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

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

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


input[type="radio"],
input[type="checkbox"],


.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 & NOTIFICATIONS */
.alert {margin: 15px 0;padding: 12px;font-weight: bold;
-webkit-border-radius: 0;
        border-radius: 0;
}


.alert p {margin: 0;}

.alert a {font-weight: bold;text-decoration: underline;}
.alert a:hover {text-decoration: none;}

.alert ul {list-style-type: disc;list-style-position: inside;margin: 0;}
.alert ul li {font-weight: bold;}

.alert ol {list-style-type: decimal;list-style-position: inside;margin: 0;}
.alert ol li {font-weight: bold;}

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


.alert-success {background-color: #dff0d8;color: #1e892a;}
.alert-success a {color: #1e892a;}

.alert-info {background-color: #cfedfc;color: #267abe;}
.alert-info a {color: #267abe;}

.alert-warning {background-color: #fff5c7;color: #c87100;}
.alert-warning a {color: #c87100;}

.alert-danger,
.alert-error {background-color: #ffcccc;color: #d10300;}

.alert-danger a,
.alert-error a {color: #d10300;}


.alert-form {border-color: #d10300 !important;}
.alert-form-info {display: none;margin: 5px 0 0 0;font-weight: bold;color: #d10300;}


.notify_success {color: #1e892a;}
.notify_info {color: #267abe;}
.notify_warning {color: #c87100;}
.notify_danger {color: #d10300;}




/* 5.3 BUTTONS */
.btn,
.btn a,
.btn-info,
.btn-primary {padding: 7px 10px;background: #01c3df !important;border-color: #01c3df !important;font-weight: bold;font-size: 12px;color: #ffffff !important;text-transform: uppercase;
text-shadow: 1px 1px 0 rgba(0,0,0,.2);

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;

-webkit-border-radius: 2px;
        border-radius: 2px;
}

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

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

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

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




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

html {width: 100%;height: 100%;}

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

.page_container {padding: 0 40px;}

.container {padding: 0;}


/* outdated browsers notification */
.old_browsers a {display: block;padding: 20px 0;background: #ffa200;font-size: 20px;color: #fff;text-align: center;text-decoration: none;
text-shadow: 1px 1px 0 rgba(0, 0, 0, .3);

-webkit-transition: color .4s ease-in-out;
        transition: color .4s ease-in-out;
}
.old_browsers a i {margin: 0 5px 0 0;font-size: 30px;color: #e90b00;
text-shadow: 1px 1px 0 rgba(255, 255, 255, .5);
}
.old_browsers a:hover {color: #e90b00;}




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


/* 7.1 PROMOBANNER */
#promobanner {height: 160px;background: url(//cdn.shopify.com/s/files/1/0985/6464/t/2/assets/promobanner_bg.png?10778284590282263698) 50% 0 no-repeat;background-color: #01c3df;position: relative;}

#promobanner_close {display: block;vertical-align: top;color: #ffffff;position: absolute;right: 30px;top: 25px;z-index: 1000;}
#promobanner_close:before {content: '\f00d';font: 20px/1em 'FontAwesome';}
#promobanner_close:hover {color: #333333;}


.promobanner_container {width: 1600px;margin: 0 auto;}


.promobanner_error {height: 120px;font-size: 20px;line-height: 120px;color: #d10300;text-align: center;text-transform: uppercase;
text-shadow: 1px 1px 0 rgba(255, 255, 255, .7);
}


.promobanner_content {width: 1100px;float: left;}

.promobanner_content img {float: left;}

.promobanner_text {min-width: 700px;float: left;text-align: center;text-transform: uppercase;}
.promobanner_text h2 {margin: 18px 0 0 0;font-weight: bold;font-size: 26px;color: #ffffff;}
.promobanner_text h3 {margin: 10px 0 0 0;font-weight: bold;font-size: 18px;color: #ffffff;}
.promobanner_text .btn {margin: 17px 0 0 0;padding: 7px 24px;background: #ffffff !important;border-color: #ffffff !important;font-weight: bold;font-size: 16px;color: #333333 !important;}
.promobanner_text .btn:hover {background: #333333 !important;border-color: #333333 !important;color: #ffffff !important;}


.promobanner_counter {width: 500px;float: right;margin: 30px 0 0 0;text-align: right;}

#promobanner_countdown {height: 100px;}
#promobanner_countdown > div {width: 100px;position: relative;}
#promobanner_countdown > div ~ div {margin: 0 0 0 20px;}

#promobanner_countdown canvas {width: 100px !important;}
#promobanner_countdown input {width: 100px;height: 40px;vertical-align: top;margin: 21px 0 0 -100px;padding: 0;background: none;border: none;font-weight: bold;font-size: 32px;line-height: 40px;color: #ffffff;text-align: center;}
#promobanner_countdown span {width: 100px;display: inline-block;vertical-align: top;margin: 52px 0 0 -100px;font-size: 17px;color: #ffffff;text-align: center;}





/* 7.2 HEADER */
header {}

.header_row__1 {background: #333333;}


.header_currency {float: left;}
.header_currency label {margin: 0 5px 0 0;line-height: 50px;color: #ffffff;text-transform: uppercase;}
.header_currency select {width: 0 !important;height: 0 !important;overflow: hidden !important;}
.header_currency .jq-selectbox {width: 60px;height: 50px;}
.header_currency .jq-selectbox__select {}
.header_currency .jq-selectbox__select-text {line-height: 50px;}
.header_currency .jq-selectbox__trigger i {vertical-align: top;font-size: 20px;line-height: 49px;right: 0;top: 0;}

.header_currency .jq-selectbox__dropdown {width: 100% !important;background: #333333;top: 50px !important;}
.header_currency .jq-selectbox__dropdown ul {text-align: center;}
.header_currency .jq-selectbox__dropdown ul li {padding: 5px 0;border-top: 1px solid rgba(255,255,255,.1);}

.header_currency .jq-selectbox__dropdown ul li:hover {color: #ffffff;}
.header_currency .jq-selectbox__dropdown ul li.sel {font-weight: bold;color: #01c3df;}


.header_user {float: right;font-size: 0;}
.header_user li {display: inline-block;font-size: 13px;line-height: 49px;}
.header_user li ~ li {margin: 0 0 0 25px;}

.header_user li a {color: #999999;text-transform: uppercase;}
.header_user li a:before {vertical-align: top;margin: 0 9px 0 0;font: 18px/48px 'Material Icons';}

.header_user li.lock a:before {content: '\e897';}
.header_user li.user a:before {content: '\e7fe';}
.header_user li.checkout a:before {content: '\e5ca';}

.header_user li a:hover {color: #ffffff;}


.header_row__2 {background: #ffffff;}
.header_row__2.header_subpages {
-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.12);
        box-shadow: 0 0 20px 0 rgba(0,0,0,0.12);
}


#header_stick {height: 100px;position: relative;z-index: 999;}
#header_stick.isStuck {width: 100%;left: 0;top: 0;
-webkit-backface-visibility: hidden;
-webkit-transform: translateZ(0);

-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.12);
        box-shadow: 0 0 20px 0 rgba(0,0,0,0.12);
}


.header_left {}

.logo_main {}
.logo_main a {display: inline-block;}
.logo_main a img {margin: 0 8px 0 0;}
.logo_main b {display: inline-block;vertical-align: bottom;padding: 7px 0 0 0;font-weight: 700;font-size: 46px;line-height: 1em;color: #01c3df;text-transform: uppercase;}
.logo_main span {display: block;font-size: 12px;line-height: .8em;color: #333333;text-align: right;text-transform: uppercase;}

.logo_header {padding: 14px 0 0 0;}


.header_center {text-align: center;position: static;}


.header_right {}


.header_cart {float: right;padding: 22px 0 0 0;}
.header_cart a {display: block;color: #01c3df;position: relative;}
.header_cart a i {font-size: 58px;line-height: 1em;}
.header_cart a span {width: 100%;display: block;color: #ffffff;font-weight: bold;font-size: 16px;line-height: 1em;text-align: center;position: absolute;left: 0;top: 11px;}

.header_cart a:hover {color: #fe3153;}


.header_search {width: 130px;height: 40px;float: right;padding: 30px 15px 0 0;
-webkit-transition: width .3s ease-in-out;
        transition: width .3s ease-in-out;
}

.header_search_short {width: 130px;}
.header_search_long {width: 230px;}

.header_search form {padding: 0 40px 0 0;}
.header_search #search-field {width: 100%;height: 40px;float: left;padding: 0;background: none;border: none;color: #999999;text-transform: uppercase;
-webkit-box-shadow: none !important;
        box-shadow: none !important;
}
.header_search #search-submit {width: 40px;height: 40px;margin: 0 -44px 0 0;background: #ffffff;}
.header_search #search-submit:hover {color: #008dff;}
.header_search #search-submit i {width: 40px;height: 40px;display: block;font-size: 32px;line-height: 40px;}




/* 7.3 MEGAMENU */
#megamenu {}


.sf-menu {font-size: 0;text-align: center;}
.sf-menu > li {height: 100px;display: inline-block;font-size: 13px;line-height: 100;}
.sf-menu > li > a {height: 100px;display: block;padding: 0 18px;font-weight: bold;font-size: 16px;line-height: 100px;color: #333333;text-transform: uppercase;position: relative;}
.sf-menu > li > a i {margin: 0 0 0 8px;font: 20px/98px 'FontAwesome';color: rgba(0,0,0,.15);}


.sf-menu > li > a:before {content: '';width: 100%;height: 0;display: block;background: #ededed;position: absolute;left: 0;top: 0;z-index: -1;
-webkit-transition: height .3s ease-in-out;
        transition: height .3s ease-in-out;
}

.sf-menu > li.sfHover > a:before,
.sf-menu > li > a:hover:before,
.sf-menu > li > a.active:before {height: 100%;}


.sf-menu > li > a:after {content: '';width: 100%;height: 0;display: block;background: #333333;position: absolute;left: 0;top: 0;z-index: -1;
-webkit-transition: height .3s ease-in-out .15s;
        transition: height .3s ease-in-out .15s;
}

.sf-menu > li.sfHover > a:after,
.sf-menu > li > a:hover:after,
.sf-menu > li > a.active:after {height: 7px;}


.sf-menu .menu_badge {display: block;padding: 2px 5px;font-size: 9px;color: #ffffff;text-transform: uppercase;position: absolute;right: 0px;top: 0px;z-index: 1;}
.sf-menu .megamenu_item_1 .menu_badge {background: #01c3df;}
.sf-menu .megamenu_item_2 .menu_badge {background: #00d8c0;}
.sf-menu .megamenu_item_3 .menu_badge {background: #008dff;}
.sf-menu .megamenu_item_4 .menu_badge {background: #fbed04;}
.sf-menu .megamenu_item_5 .menu_badge {background: #fe3153;}
.sf-menu .megamenu_item_6 .menu_badge {background: #008dff;}


.sf-menu > li > ul {width: 100%;position: absolute;left: 0;top: 100px;z-index: 1000;
display: none;
}
.sf-menu .submenu {width: 1170px;margin: 0 auto;padding: 40px 30px;background: #ededed;}




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


/* 2: CATALOG */
.submenu_2 {text-align: left;}

.submenu_2 h4 {margin: 0;padding: 0 0 15px 0;border-bottom: 2px solid #01c3df;font-size: 16px;text-transform: uppercase;}
.submenu_2 h4 a {}

.submenu_2 ul {margin: 20px 0 0 0;}
.submenu_2 ul li {}
.submenu_2 ul li a {display: block;padding: 10px 20px;color: #999999;text-transform: uppercase;}
.submenu_2 ul li a:hover {background: #ffffff;color: #008dff;}

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


/* 3: BLOG */
.megamenu_item_3 {}

.megamenu_item_3 .blog_img {}
.megamenu_item_3 .blog_title {margin: 10px 0 0 0;font-size: 24px;text-transform: none;}
.megamenu_item_3 .blog_date {margin: 10px 0 0 0;font: 15px 'Open Sans';color: #01c3df;}


/* 4: SALE */
.megamenu_item_4 {}
.megamenu_item_4 .product_img {display: block;background: #ffffff;}
.megamenu_item_4 .product_name {margin: 25px 0 0 0;font-size: 18px;}
.megamenu_item_4 .product_price {margin: 3px 0 0 0;}
.megamenu_item_4 .product_price .money {margin: 0 7px 0 0;font-weight: 300;font-size: 30px;}
.megamenu_item_4 .product_price .compare-at-price {font-size: 17px;}


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


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




/* 7.4 NIVOSLIDER */
.nivoSlider {width: 100%;height: auto;overflow: hidden;position: relative;z-index: 1;}
.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: 50%;text-align: center;position: absolute;left: 110px;top: 250px;z-index: 8;
display: none;
}

.nivo-caption h2 {font-weight: 800;font-size: 156px;line-height: 1em;color: #ffffff;text-transform: uppercase;
text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}
.nivo-caption h3 {font-weight: 400;font-size: 34px;line-height: 1em;color: #ffffff;text-transform: uppercase;letter-spacing: -1px;}
.nivo-caption .btn {margin: 30px 0 0 0;padding: 20px 43px;background: #fbed04 !important;border-color: #fbed04 !important;font-weight: bold;font-size: 20px;color: #333333 !important;}
.nivo-caption .btn:hover {background: #ffffff !important;border-color: #ffffff !important;}


.caption_3 {}
.caption_3 h3 {color: #333333;}
.caption_3 .btn {background: #008dff !important;border-color: #008dff !important;color: #ffffff !important;}
.caption_3 .btn:hover {background: #01c3df !important;border-color: #01c3df !important;}


.slider_nav {}
.slider_nav .container {}

.slider_nav a {width: 80px;height: 80px;display: block;vertical-align: top;margin: -40px 0 0 0;position: absolute;top: 50%;z-index: 9;cursor: pointer;
-webkit-border-radius: 50%;
        border-radius: 50%;
}
.slider_nav a:before {display: block;font: 54px/75px 'FontAwesome';color: #ffffff;text-align: center;
text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}
.slider_nav a:hover {background: rgba(0,0,0,.2);}

.slider_nav .slider_nav__prev {padding: 0 4px 0 0;left: 90px;}
.slider_nav .slider_nav__prev:before {content: '\f104';}

.slider_nav .slider_nav__next {padding: 0 0 0 4px;right: 90px;}
.slider_nav .slider_nav__next:before {content: '\f105';}


.slider_controls {width: 100%;font-size: 0;text-align: center;position: absolute;left: 0;bottom: 20px;z-index: 10;}
.slider_controls .container {}

.slider_controls a {display: inline-block;vertical-align: top;color: #ffffff;cursor: pointer;}
.slider_controls a ~ a {margin: 0 0 0 10px;}
.slider_controls a span {display: none;}
.slider_controls a:before {content: '\f111';display: block;font: 20px 'FontAwesome';}

.slider_controls a:hover {color: #333333;}
.slider_controls a.active {color: #333333;cursor: default;}




/* 7.5 SHOWCASE */




/* 7.6 MAIN PRODUCT LISTING */
.product_listing_main .product {background: #ffffff;text-align: center;}
.product_listing_main .product_wrapper {}

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

.product_listing_main .product_img span.product_badge {width: 60px;height: 60px;display: block;font-weight: bold;font-size: 16px;line-height: 60px;text-align: center;text-transform: uppercase;position: absolute;top: 10px;z-index: 100;
text-shadow: 1px 1px 0 rgba(0,0,0,.2);

-webkit-border-radius: 50%;
        border-radius: 50%;
}
.product_listing_main .product_img span.new {background: #01c3df;color: #ffffff;left: 10px;}
.product_listing_main .product_img span.sale {background: #fbed04;color: #333333;right: 10px;}

.product_listing_main .product_info {}

.product_listing_main .product_name {}

.product_listing_main .product_desc {}

.product_listing_main .product_price {}
.product_listing_main .product_price .money {font-weight: 300;font-size: 40px;}
.product_listing_main .product_price .money_sale {font-size: 17px;}

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




/* HOMEPAGE PRODUCT LISTING (CAROUSEL) */
.featured_products {padding: 0 0 130px 0;}
.featured_products .page_heading {margin: 115px 0 77px 0;}

.featured_products .bx-wrapper {max-width: 100% !important;position: relative;z-index: 1;}
.featured_products .bx-wrapper:hover {z-index: 100;}

.featured_products .bx-viewport {width: 1199px !important;height: auto !important;margin: -15px -15px -130px -15px;padding: 15px 15px 130px 15px;z-index: 1;}


#homepage_carousel__2 .product_homepage:after {content: '';width: 1px;height: 15px;background: #dddddd;position: absolute;right: -1px;top: -15px;}


.featured_products .bx-viewport:before {content: '';width: 15px;height: 100%;display: block;border-right: 1px solid #ffffff;position: absolute;left: 0;top: 0;z-index: 100;}
.featured_products .bx-viewport:after {content: '';width: 15px;height: 100%;display: block;border-left: 1px solid #ffffff;position: absolute;right: 0;top: 0;z-index: 100;}


.featured_products .bx-controls a {width: 60px;height: 60px;display: block;overflow: hidden;margin: -30px 0 0 0;background: #01c3df;text-align: center;position: absolute;z-index: 101;
-webkit-border-radius: 50%;
        border-radius: 50%;
}
.featured_products .bx-controls a:hover {background: #008dff;}

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

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

.featured_products .bx-prev {left: 0;}
.featured_products .bx-next {right: 0;}


.homepage_carousel {}
.homepage_carousel.row {margin: 0;}

.product_homepage {margin: 0;padding: 0;border-right: 1px solid #dddddd;}
.product_homepage.item_odd {width: 292px !important;}
.product_homepage.item_even {width: 293px !important;}

.product_homepage .product_wrapper {width: 100%;height: 100%;padding: 15px;background: #ffffff;position: relative;z-index: 1;}
.product_homepage .product_wrapper .product_links {height: 0;overflow: hidden;}

.product_homepage:hover .product_wrapper {height: auto;position: absolute;left: 0;top: 0;z-index: 1000;
-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
        box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
}
.product_homepage:hover .product_wrapper .product_links {height: 100%;padding: 0 0 25px 0;}


.product_homepage .product_img {position: relative;}
.product_homepage .product_img .quick_view_wrap {width: 100%;text-align: center;position: absolute;left: 0;top: 30%;z-index: 101;
opacity: 0;
}
.product_homepage .product_img:hover .quick_view_wrap {top: 50%;
opacity: 1;

-webkit-transition: all .3s ease-in .2s;
        transition: all .3s ease-in .2s;
}

.product_homepage .quick_view_btn {padding: 14px 20px;background: #008dff !important;border-color: #008dff !important;font-size: 16px;color: #ffffff !important;}
.product_homepage .quick_view_btn:hover {background: #01c3df !important;border-color: #01c3df !important;}
.product_homepage .product_name {padding: 8px 0 0 0;}
.product_homepage .product_links {}
.product_homepage .product_links .btn {margin: 24px 0 0 0;padding: 18px 20px;font-size: 20px;}
.product_homepage .product_links .btn i {font-size: 36px;line-height: .7em;}




/* COLLECTION PRODUCT LISTING */
/* GRID */
.product_collection {margin: 50px 0 0 0;}
.product_collection.item3_1 {clear: left;}

.product_collection .product_desc {display: none;}
.product_collection .product_desc_short {display: block;margin: 10px 0 0 0;}

.product_collection .product_links {margin: 10px 0 0 0;}
.product_collection .product_links .btn {margin: 10px 0 0 0;}
.product_collection .product_links .btn i {display: none !important;}


/* LIST */
.view_list {}
.view_list .product {width: 100%;float: none;overflow: hidden;text-align: left;}
.view_list .product_img {width: 250px;float: left;}
.view_list .product_info {margin: 0 0 0 280px;}
.view_list .product_desc {display: none;}
.view_list .product_desc_long {display: block;margin: 10px 0 0 0;}




/* 7.7 OTHER HOMEPAGE BLOCKS */

/* BLOCK #1 */
.custom_homepage__1 {overflow: hidden;margin: -9.27734375% 0 0 0;padding: 2.9296875% 0 0 0;position: relative;z-index: 10;}
.custom_homepage__1 .skew_wrapper {overflow: hidden;position: relative;}

.custom_homepage__1 .skew__1 {overflow: hidden;position: absolute;left: 0;right: 0;top: 0;bottom: -400px;
-webkit-transform: skewY(-5.4deg);
        transform: skewY(-5.4deg);

-webkit-transform-origin: 67.87109375% 0;
        transform-origin: 67.87109375% 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
.custom_homepage__1 .skew__2 {overflow: hidden;position: absolute;left: 0;right: 0;top: 0;bottom: -400px;
-webkit-transform: skewY(16deg);
        transform: skewY(16deg);

-webkit-transform-origin: 67.87109375% 0;
        transform-origin: 67.87109375% 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
#parallax_1 {overflow: hidden;position: absolute;left: 0;right: 0;top: 0;bottom: 0;
background: url(custom_homepage1_img.jpg) 50% 0 no-repeat;
background-color: #ffffff;

-webkit-transform: skewY(-11deg);
        transform: skewY(-11deg);

-webkit-transform-origin: 67.87109375% 0;
        transform-origin: 67.87109375% 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}


.custom_homepage__1 .block_content {padding: 290px 0 290px 0;position: relative;z-index: 10;}

.custom_homepage__1 h2 {margin: 0;font-size: 80px;}
.custom_homepage__1 p {margin: 0;padding: 30px 40% 0 0;font-weight: 400;font-size: 24px;line-height: 1.7em;}


.custom_homepage__1 .triangle_1 {width: 100%;height: 100%;background: #00d8c0;position: absolute;left: 0;top: 10px;z-index: -1;
-webkit-transform: skewY(12.1deg);
        transform: skewY(12.1deg);

-webkit-transform-origin: 0 0;
        transform-origin: 0 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
.custom_homepage__1 .triangle_2__1 {width: 100%;height: 100%;overflow: hidden;position: absolute;left: 0;right: 0;top: 0;bottom: 0;z-index: -1;
-webkit-transform: skewY(-27.3deg);
        transform: skewY(-27.3deg);

-webkit-transform-origin: 45.41015625% 0;
        transform-origin: 45.41015625% 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
.custom_homepage__1 .triangle_2__2 {width: 100%;height: 100%;overflow: hidden;background: #fbed04;outline: 1px solid transparent;position: absolute;left: 0;top: 0;right: 0;bottom: 0;z-index: -1;
-webkit-transform: skewY(44.3deg);
        transform: skewY(44.3deg);

-webkit-transform-origin: 45.41015625% 0;
        transform-origin: 45.41015625% 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
.custom_homepage__1 .triangle_3 {width: 100%;height: 100%;background: #008dff;position: absolute;right: 0;top: 60px;z-index: -1;
-webkit-transform: skewY(-5.3deg);
        transform: skewY(-5.3deg);

-webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}




/* BLOCK #2 */
.custom_homepage__2 {margin: -5.859375% 0 0 0;overflow: hidden;position: relative;z-index: 11;}

.custom_homepage__2 .skew__1 {overflow: hidden;position: absolute;left: 0;right: 0;top: 0;bottom: -400px;
-webkit-transform: skewY(8deg);
        transform: skewY(8deg);

-webkit-transform-origin: 58.30078125% 0;
        transform-origin: 58.30078125% 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
.custom_homepage__2 .skew__2 {overflow: hidden;position: absolute;left: 0;right: 0;top: 0;bottom: -400px;
-webkit-transform: skewY(-8deg);
        transform: skewY(-8deg);

-webkit-transform-origin: 58.30078125% 0;
        transform-origin: 58.30078125% 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
#parallax_2 {overflow: hidden;position: absolute;left: 0;right: 0;top: 0;bottom: 0;
background: url(custom_homepage2_img.jpg) 50% 0 no-repeat;
background-color: #00d8c0;
}


.custom_homepage__2 .triangle_1 {width: 100%;height: 100%;margin: 1.3183593750% 0 0 0;background: #fbed04;position: absolute;right: 0;top: 0;z-index: -1;
-webkit-transform: skewY(-5.6deg);
        transform: skewY(-5.6deg);

-webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
.custom_homepage__2 .triangle_2 {width: 100%;height: 100%;margin: -8.10546875% 0 0 0;background: #008dff;position: absolute;right: 0;top: 100%;z-index: 1;
-webkit-transform: skewY(-6.8deg);
        transform: skewY(-6.8deg);

-webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}


.custom_homepage__2 .block_content {padding: 118px 0 155px 0;position: relative;z-index: 10;}
.custom_homepage__2 h2 {margin: 0;font-size: 80px;color: #ffffff;
text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}
.custom_homepage__2 ul {padding: 10px 0 0 0;}
.custom_homepage__2 ul li {margin: 15px 0 0 0;padding: 0 0 0 70px;font-weight: 400;font-size: 24px;line-height: 1.7em;color: #ffffff;position: relative;}
.custom_homepage__2 ul li:before {content: '\e5ca';vertical-align: top;font: 44px/.9em 'Material Icons';color: #fbed04;position: absolute;left: 0;top: 0;
text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}




/* BLOCK #3 */
.custom_homepage__3 {padding: 0 0 57px 0;text-align: center;position: relative;z-index: 100;}
.custom_homepage__3 h2 {margin: 0;padding: 143px 0 0 0;font-size: 80px;}

.custom_homepage__3 a {display: block;}
.custom_homepage__3 i {width: 145px;height: 145px;display: inline-block;font-size: 65px;line-height: 145px;color: #ffffff;text-align: center;
text-shadow: 1px 1px 0 rgba(0,0,0,.2);

-webkit-border-radius: 50%;
        border-radius: 50%;


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

}
.custom_homepage__3 .item {margin: 60px 0 0 0;}
.custom_homepage__3 .item_1 i {background: #008dff;}
.custom_homepage__3 .item_2 i {background: #01c3df;}
.custom_homepage__3 .item_3 i {background: #00d8c0;}
.custom_homepage__3 .item_4 i {background: #fbed04;}

.custom_homepage__3 span {display: block;padding: 38px 0 0 0;font-size: 24px;line-height: 1.7em;color: #333333;

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

}

.custom_homepage__3 a:hover i {background: #fe3153;}
.custom_homepage__3 .item_1 a:hover span {color: #008dff;}
.custom_homepage__3 .item_2 a:hover span {color: #01c3df;}
.custom_homepage__3 .item_3 a:hover span {color: #00d8c0;}
.custom_homepage__3 .item_4 a:hover span {color: #fbed04;}



/* BLOCK #4 */
.custom_homepage__4 {overflow: hidden;position: relative;z-index: 100;}
.custom_homepage__4 .block_content {padding: 345px 0 235px 0;
background: url(custom_homepage4_img.jpg?10778284590282263698) 50% 0 no-repeat;text-align: center;
}

.custom_homepage__4 h2 {margin: 0;font-weight: 800;font-size: 156px;line-height: 1em;color: #ffffff;
text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}
.custom_homepage__4 p {margin: 5px 0 0 0;font-weight: 400;font-size: 34px;color: #ffffff;text-transform: uppercase;}
.custom_homepage__4 .btn {margin: 37px 0 0 0;padding: 20px 43px;background: #fe3153 !important;border-color: #fe3153 !important;font-weight: bold;font-size: 20px;color: #ffffff !important;}
.custom_homepage__4 .btn:hover {background: #008dff !important;border-color: #008dff !important;}


.custom_homepage__4 .triangle_1__1 {height: 100%;overflow: hidden;margin: 6.201171875% 0 0 0;position: absolute;left: 0;right: 0;top: -100%;z-index: 3;
-webkit-transform: skewY(10.9deg);
        transform: skewY(10.9deg);

-webkit-transform-origin: 32.080078125% 100%;
        transform-origin: 32.080078125% 100%;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
.custom_homepage__4 .triangle_1__2 {height: 100%;overflow: hidden;background: #ffffff;position: absolute;left: 0;right: 0;top: 0;z-index: 3;
-webkit-transform: skewY(-15.8deg);
        transform: skewY(-15.8deg);

-webkit-transform-origin: 32.080078125% 100%;
        transform-origin: 32.080078125% 100%;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
.custom_homepage__4 .triangle_2 {width: 100%;height: 130px;background: #008dff;position: absolute;left: 0;top: 0;z-index: 2;
-webkit-transform: skewY(-5.7deg);
        transform: skewY(-5.7deg);

-webkit-transform-origin: 0 0;
        transform-origin: 0 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
.custom_homepage__4 .triangle_3 {width: 100%;height: 523px;background: #fbed04;position: absolute;left: 0;top: 0;z-index: 1;
-webkit-transform: skewY(-57.9deg);
        transform: skewY(-57.9deg);

-webkit-transform-origin: 0 0;
        transform-origin: 0 0;

-webkit-backface-visibility: hidden;
outline: 1px solid transparent;
}
.custom_homepage__4 .triangle_4 {width: 100%;height: 180px;background: #00d8c0;position: absolute;right: 0;top: 0;z-index: 0;
-webkit-transform: skewY(11.9deg);
        transform: skewY(11.9deg);

-webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;

-webkit-backface-visibility: hidden;
}


#floating_img {position: absolute;left: 50%;z-index: 1000;}
#floating_img a {display: block;
-webkit-transition: transform .3s ease-out;
        transition: transform .3s ease-out;
}
#floating_img a:hover {
-webkit-transform: scale(1.2);
        transform: scale(1.2);

-webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;

-webkit-backface-visibility: hidden;
}




/* BLOCK #5 */
.custom_homepage__5 {overflow: hidden;background: #01c3df;position: relative;z-index: 100;}
.custom_homepage__5 .block_content {padding: 130px 0 200px 0;position: relative;z-index: 1;}


.custom_homepage__5 h2 {margin: 0 0 25px 0;font-size: 80px;color: #ffffff;text-align: center;
text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}

.custom_homepage__5 .item {margin: 30px 0 0;}
.custom_homepage__5 .item span {vertical-align: top;float: left;font-size: 84px;line-height: .5em;color: #fbed04;}
.custom_homepage__5 .item p {margin: 0 0 0 110px;font-weight: 400;font-size: 24px;line-height: 1.7em;color: #ffffff;}


.custom_homepage__5 .triangle_1 {width: 100%;height: 130px;background: #fbed04;position: absolute;right: 0;top: 0;z-index: 0;
-webkit-transform: skewY(25.2deg);
        transform: skewY(25.2deg);

-webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;

-webkit-backface-visibility: hidden;
}

.custom_homepage__5 .triangle_2 {width: 100%;height: 210px;background: #008dff;position: absolute;left: 0;bottom: 0;z-index: 0;
-webkit-transform: skewY(6.7deg);
        transform: skewY(6.7deg);

-webkit-transform-origin: 0 0;
        transform-origin: 0 0;

-webkit-backface-visibility: hidden;
}




/* HOMEPAGE BLOG */



















.homepage_blog {overflow: hidden;padding: 0 0 150px 0;background: #008dff;position: relative;}
.homepage_blog:before {content: '';position: absolute;top: 0;right: 0;bottom: 0;left: 0;z-index: 0;
opacity: .6;
background: -moz-radial-gradient(center, ellipse cover,  rgba(0,216,192,1) 0%, rgba(0,216,192,0) 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,216,192,1)), color-stop(100%,rgba(0,216,192,0))); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover,  rgba(0,216,192,1) 0%,rgba(0,216,192,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover,  rgba(0,216,192,1) 0%,rgba(0,216,192,0) 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover,  rgba(0,216,192,1) 0%,rgba(0,216,192,0) 100%); /* IE10+ */
background: radial-gradient(ellipse at center,  rgba(0,216,192,1) 0%,rgba(0,216,192,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00d8c0', endColorstr='00#00d8c0',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}


.homepage_blog .triangle_1 {width: 100%;height: 92px;display: block;background: #ffffff;position: absolute;left: 0;top: 0;z-index: 0;
-webkit-transform: skewY(-3.15deg);
        transform: skewY(-3.15deg);

-webkit-transform-origin: 0 0;
        transform-origin: 0 0;

-webkit-backface-visibility: hidden;
}
.homepage_blog .triangle_2 {width: 100%;height: 175px;display: block;background: #fbed04;position: absolute;right: 0;top: 0;z-index: 0;
-webkit-transform: skewY(25.15deg);
        transform: skewY(25.15deg);

-webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;

-webkit-backface-visibility: hidden;
}
.homepage_blog .triangle_3 {width: 100%;height: 122px;display: block;background: #00d8c0;position: absolute;right: 0;bottom: 0;z-index: 0;
-webkit-transform: skewY(-6.7deg);
        transform: skewY(-6.7deg);

-webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;

-webkit-backface-visibility: hidden;
}


.homepage_blog .container {position: relative;z-index: 1;}
.homepage_blog .page_heading {margin: 160px 0 0 0;color: #ffffff;
text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}


.homepage_blog .article {margin: 60px 0 0 0;text-align: center;}

.homepage_blog .article_date {width: 82px;height: 82px;display: inline-block;background: #00d8c0;color: #ffffff;text-align: center;cursor: default;
-webkit-border-radius: 50%;
        border-radius: 50%;
}
.homepage_blog .article_date:before {display: none;}

.homepage_blog .article_date__day {vertical-align: top;font: 700 30px/82px 'Open Sans';color: #ffffff;
text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}
.homepage_blog .article_date__month {vertical-align: top;font: 300 18px/79px 'Open Sans';
text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}

.homepage_blog .article_img {display: inline-block;position: relative;}
.homepage_blog .article_img .article_date {position: absolute;left: 0;top: 0;}


.homepage_blog .article_title {margin: 25px 0 0 0;font-size: 24px;line-height: 1.7em;}
.homepage_blog .article_title a {color: #ffffff;}
.homepage_blog .article_title a:hover {color: #fbed04;}




/* 7.8 FOOTER */
footer {margin: 100px 0 0 0;background: #333333;}
.template-index footer {margin: 0;}

footer a {color: #999999;}


.footer_block__1 {padding: 110px 0 0 0;}
.footer_block__1 .logo_footer {}
.footer_block__1 p {width: 80%;margin: 3px 0 0 0;font-size: 16px;line-height: 1.6em;color: #ffffff;}


.footer_block__2 {padding: 43px 0 0 0;position: relative;}
.footer_block__2 form {}
.footer_block__2 input {width: 315px;height: 50px;padding: 0 15px;background: #ffffff;border: none;font-weight: 300;font-size: 16px;
-webkit-border-radius: 3px;
        border-radius: 3px;

-webkit-box-shadow: none !important;
        box-shadow: none !important;
}
.footer_block__2 button {width: 150px;height: 50px;background: #fbed04 !important;border-color: #fbed04 !important;font-size: 16px;color: #333333 !important;
-webkit-border-radius: 3px;
        border-radius: 3px;
}
.footer_block__2 button:hover {background: #00d8c0 !important;border-color: #00d8c0 !important;font-size: 16px;color: #ffffff !important;}

.footer_block__2 .form_status {margin: 0;font-weight: bold;font-size: 14px;text-transform: uppercase;position: absolute;left: 0;top: 9px;}
.footer_block__2 .success {color: #259c2a;}
.footer_block__2 .error {color: #f10000;}


.footer_block__3 {padding: 15px 0 0 0;}
.footer_block__3 ul {font-size: 0;}
.footer_block__3 ul li {display: inline-block;margin: 25px 25px 0 0;font-size: 36px;}
.footer_block__3 ul li a {
text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}
.footer_block__3 ul li a:hover {color: #ffffff;}


.footer_links {}
.footer_links h3 {margin: 120px 0 0 0;font-size: 16px;color: #ffffff;text-transform: uppercase;}
.footer_links ul {padding: 20px 0 0 0;}
.footer_links ul li {padding: 20px 0 0 0;}
.footer_links ul li a {text-transform: uppercase;}
.footer_links ul li a:hover {color: #008dff;}


footer .copyright {margin: 90px 0 0 0;background: rgba(0,0,0,.11);}
footer .copyright p {margin: 0;padding: 16px 0;font-weight: 400;font-size: 12px;}
footer .copyright a {}
footer .copyright a:hover {}


/* BACK TO TOP BUTTON */
#back_top {width: 60px;height: 60px;display: block;margin: 0 0 0 700px;background: #fbed04;color: #333333;text-align: center;position: fixed;left: 50%;bottom: 70px;z-index: 999;
-webkit-border-radius: 50%;
        border-radius: 50%;

-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,.15);
        box-shadow: 0 0 15px 0 rgba(0,0,0,.15);
}
#back_top:before {content: '\f106';font: 25px/59px 'FontAwesome';}
#back_top:hover {background: #fe3153;color: #ffffff;}




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

/* 8.1 BREADCRUMBS */
.breadcrumb_wrap {margin: 0 0 50px 0;background: #ededed;}
.breadcrumb {margin: 0;padding: 7px 0;background: none;text-transform: uppercase;
-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_desc {margin-top: 15px;}
.collection_info .collection_desc .rte {margin: 0;}

ul.tags {margin: 25px 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: #008dff;color: #ffffff;text-transform: uppercase;}

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




/* 8.3 PRODUCTS SORTING */
.product_listing_controls {overflow: hidden;margin: 30px 0 0 0;padding: 0 10px 10px 10px;background: #ededed;}

.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: #333333;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: #01c3df;border-color: #01c3df;color: #ffffff;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 .global_loader {top: 10px;}




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

.collection_listing_item .collection_info {text-align: center;}
.collection_listing_item .collection_name {margin: 15px 0 0 0;font-size: 24px;}
.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 0 0;}




/* 8.5 PAGINATION */
.products_count {height: 30px;float: left;margin: 10px 10px 0 0;font-size: 15px;line-height: 30px;color: #333333;}

#pagination {display: inline-block;overflow: hidden;float: right;margin: 0 0 0 10px;font-size: 0;}
#pagination span {display: inline-block;vertical-align: top;margin: 10px 0 0 0;}
#pagination span ~ span {margin: 10px 0 0 1px;}

#pagination span a {height: 30px;display: block;padding: 0 10px;background: #01c3df;border: 1px solid #01c3df;font-size: 15px;line-height: 29px;color: #ffffff;}
#pagination span.page a {width: 30px;padding: 0;text-align: center;}

#pagination span a:hover {background: #fe3153;border-color: #fe3153;}

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




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

.sidebar_widget {/*background: #ededed;*/}
.sidebar_widget ~ .sidebar_widget {margin: 50px 0 0 0;}

.sidebar_widget .widget_header {margin: 0;padding: 12px 15px;background: #01c3df;font-size: 27px;color: #ffffff;}
.sidebar_widget ~ .sidebar_widget .widget_header {background: #008dff;}
.sidebar_widget ~ .sidebar_widget ~ .sidebar_widget .widget_header {background: #fe3153;}

.sidebar_widget .widget_content {}




/* 9.1 LINKS LIST */
.list_links {}
.list_links li {}
.list_links li ~ li {border-top: 1px solid #dddddd;}

.list_links li a {display: block;padding: 10px 15px;font-size: 20px;text-transform: uppercase;}

.list_links li a:hover {color: #01c3df;}
.list_links li.active a {font-weight: bold;color: #01c3df;}

.sidebar_widget ~ .sidebar_widget .list_links li a:hover {color: #008dff;}
.sidebar_widget ~ .sidebar_widget .list_links li.active a {font-weight: bold;color: #008dff;}




/* 9.2 SIDEBAR PRODUCT LISTING */
.list_products {}

.list_products .product {overflow: hidden;padding: 30px 0;}
.list_products .product ~ .product {border-top: 1px solid #dddddd;}

.list_products .product_img {width: 100px;float: left;}

.list_products .product_info {margin: 0 0 0 115px;}

.list_products .product_name {}

.list_products .product_desc {}

.list_products .product_price {}
.list_products .product_price .money {margin: 0 3px 0 0;font-size: 27px;}
.list_products .product_price .compare-at-price {margin: 0;font-size: 17px;}

.list_products .product_links {}
.list_products .product_links form {}
.list_products .product_links a {}




/* 9.3 SIDEBAR BLOG WIDGETS */
.sidebar_blog {}

.sidebar_widget__search {height: 40px;padding: 0 38px 0 0;border: 1px solid #dddddd;}
.sidebar_widget__search input {width: 100%;height: 38px;float: left;padding: 0 0 0 10px;background: none;border: none;
-webkit-box-shadow: none !important;
        box-shadow: none !important;
}
.sidebar_widget__search button {width: 38px;height: 38px;margin: 0 -40px 0 0;color: #333333;}
.sidebar_widget__search button i.fa {height: 38px;display: block;font-size: 18px;line-height: 37px;}

.sidebar_widget__search button:hover {color: #01c3df;}


.sidebar_widget__articles {}
.sidebar_widget__articles .widget_content {margin: 20px 0 0 0;}

.sidebar_widget__articles ul {}
.sidebar_widget__articles ul li {}
.sidebar_widget__articles ul li ~ li {margin: 30px 0 0 0;padding: 30px 0 0 0;border-top: 1px solid #dddddd;}

.sidebar_widget__articles img {width: 145px;float: left;}

.sidebar_widget__articles .article_content {}
.sidebar_widget__articles .article_content__img {margin: 0 0 0 175px;}
.sidebar_widget__articles .article_title {margin: 10px 0 0 0;}
.sidebar_widget__articles .article_comments {margin: 10px 0 0 0;}
.sidebar_widget__articles .article_comments:before {content: '\f0e6';margin: 0 5px 0 0;font: 14px 'FontAwesome';}


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


.sidebar_widget__comments {}
.sidebar_widget__comments .widget_content {margin: 20px 0 0 0;}

.sidebar_widget__comments ul {}
.sidebar_widget__comments ul li ~ li {margin: 25px 0 0 0;padding: 25px 0 0 0;border-top: 1px solid #dddddd;}

.sidebar_widget__comments a {}
.sidebar_widget__comments .item_icon {width: 30px;height: 20px;display: inline-block;vertical-align: top;float: left;font-size: 16px;}
.sidebar_widget__comments .item_content {display: block;margin: 0 0 0 30px;color: #999999;}
.sidebar_widget__comments .item_info {display: block;padding: 10px 0 0 0;}
.sidebar_widget__comments .item_info time {display: block;float: right;margin: 0 0 0 10px;}
.sidebar_widget__comments .item_info .item_time {margin: 0 0 0 7px;padding: 0 0 0 10px;border-left: 1px solid #dddddd;}




/********************************************************************************************************
                           10. SEARCH RESULTS PAGE
********************************************************************************************************/

#searchresults {margin: 0 !important;}
#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: #333333;}
#searchresults .search-form button:hover {color: #008dff;}
#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 */
.elevatezoom_big_wrapper {width: 370px;padding: 4px;background: #ffffff;border: 1px solid #ffffff;}
.elevatezoom_big_clicker {cursor: pointer;
display: none;
}

.zoomWrapper,
#elevatezoom_big {width: 360px !important;height: auto !important;position: relative !important;}

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

.zoomWrapper {}

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


/* THUMBS */
#elevatezoom_gallery {}
#elevatezoom_gallery a {width: 85px !important;display: block;margin: 0 10px 0 0;padding: 4px;border: 1px solid #ffffff;}
#elevatezoom_gallery a img {background: #ffffff;}


/* THUMBS NAV */
.product_images .bx-wrapper {max-width: 100% !important;margin: 10px 0 0 0;position: relative;}
.product_images .bx-viewport {height: auto !important;}

.product_images .bx-controls a {width: 25px;height: 40px;display: block;overflow: hidden;margin: -20px 0 0 0;background: rgba(0,0,0,.6);color: #ffffff;text-align: center;position: absolute;top: 50%;
opacity: .5;

-webkit-box-shadow: 0 0 10px 0 rgba(255,255,255,.3);
        box-shadow: 0 0 10px 0 rgba(255,255,255,.3);


-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:hover .bx-controls a {
opacity: 1;
}
.product_images .bx-controls a:hover {background: rgba(0,0,0,.8);}

.product_images .bx-controls a:before {font: 22px/39px 'FontAwesome';}

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




/* 11.2 PRODUCT INFO */
.product_info__wrapper {display: table;}
.product_info__wrapper .product_info__left {width: 500px;display: table-cell;padding: 0 20px 0 0;}
.product_info__wrapper .product_info__right {width: 270px;display: table-cell;padding: 0 0 0 20px;border-left: 1px solid #dddddd;}

.product_info__wrapper label {font-weight: normal;font-size: 14px;line-height: 1.5em;color: #333333;}


.product_info__wrapper .product_name {font-size: 18px;}


/* VARIANTS */
.product_info__wrapper .variants-wrapper {overflow: hidden;margin: 0 -10px;padding: 0 0 5px 0;}
.product_info__wrapper .selector-wrapper {width: 33.33333333333333%;float: left;padding: 15px 10px 0 10px;}
.product_info__wrapper .selector-wrapper label {display: block;}
.product_info__wrapper .selector-wrapper select {width: 99%;height: 37px;margin: 5px 0 0 0;padding: 5px;}


/* DETAILS */
.product_info__wrapper .product_details {margin: 15px 0 0 0;padding: 5px 0 0 0;border-top: 1px solid #dddddd;}
.product_info__wrapper .product_details__item {margin: 10px 0 0 0;font-size: 14px;line-height: 1.5em;color: #01c3df;}
.product_info__wrapper .product_details__item a {color: #01c3df;text-decoration: underline;}
.product_info__wrapper .product_details__item a:hover {text-decoration: none;}

.product_info__wrapper .product_details__item.product_type a {color: #008dff;}
.product_info__wrapper .product_details__item.product_vendor a {color: #00d8c0;}
.product_info__wrapper .product_details__item.product_tags {color: #01c3df;}

.product_tags span:before {content: '\f02b';margin: 0 3px 0 7px;font: 13px 'FontAwesome';}


/* PRICE */
#product_price {position: relative;}
#product_price .price {margin: 0;padding: 0 60px 0 0;}
#product_price .money {margin: 0 7px 0 0;font-size: 20px;}
#product_price .money_sale {font-size: 16px;}
#product_price .money_sale_percent {width: 52px;height: 26px;display: block;margin: -13px 0 0 0;background: #008dff;font: bold 14px/26px 'Arial';color: #ffffff;text-align: center;position: absolute;right: 0;top: 50%;
-webkit-border-radius: 2px;
        border-radius: 2px;
}


/* QUANTITY */
#product_quantity {margin: 15px 0 0 0;}


/* ADD TO CART FORM */
#purchase {margin: 15px 0 0 0;}
#purchase label {display: block;}


/* QUANTITY BOX (GLOBAL STYLES) */
.quantity_box {display: inline-block;margin: 10px 10px 0 0;}
.quantity_box input {width: 54px;height: 24px;display: block;padding: 0;background: none;border: 2px solid #dddddd !important;font: 15px 'Open Sans';text-align: center;
-webkit-box-shadow: none !important;
        box-shadow: none !important;
}

.quantity_box .quantity_modifier {width: 26px;height: 24px;display: block;float: left;border: 2px solid #dddddd;text-align: center;cursor: pointer;}
.quantity_box .quantity_modifier:active {color: #333333;}
.quantity_box .quantity_modifier i {font-size: 14px;line-height: 22px;}

.quantity_box .quantity_down {margin: 2px 0 0 0;}
.quantity_box .quantity_up {margin: 2px 0 0 2px;}

#purchase #add-to-cart {height: 50px;margin: 10px 10px 0 0;padding: 0 20px;font-size: 18px;}


/* ADDTHIS */
.product_info__wrapper .addthis_sharing_toolbox {margin: 20px 0 0 0;padding: 17px 0 0 0;border-top: 1px solid #dddddd;}
.product_info__wrapper .addthis_sharing_toolbox .at-share-btn {vertical-align: top;margin: 3px 3px 0 0 !important;}


/* DESCRIPTION */
.product_wrap .product_description {}
.product_wrap .product_description__title {margin: 40px 0 0 0;}




/* 11.3 PRODUCT PAGINATION */
.product_pagination {width: 100%;overflow: hidden;margin: 40px 0 0 0;}
.product_pagination .product_prev {float: left;}
.product_pagination .product_next {float: right;}




/* 11.4 RELATED PRODUCTS */
.widget_related_products {}
.widget_related_products h3 {margin: 40px 0 0 0;}

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

ul.product_listing_related .product_img {}
ul.product_listing_related .product_name {}
ul.product_listing_related .product_price {}




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

.article_title {font-weight: normal;font-size: 16px;color: #333333;text-transform: none;}
.article_title a {color: #333333;}
.article_title a:hover {color: #01c3df;}


.article_date {}
.article_date:before {content: '\f073';margin: 0 5px 0 0;font: 14px 'FontAwesome';}


.article_info {margin: 15px 0 0 0;}
.article_info span {margin: 0 0 0 12px;padding: 0 0 0 12px;border-left: 1px solid #dddddd;}


.blog_tags {font-size: 0;}
.blog_tags a {display: inline-block;margin: 10px 10px 0 0;padding: 5px 10px;background: rgba(0,0,0,.05);font-size: 13px;color: #999999;}
.blog_tags a:before {content: '\f02b';margin: 0 5px 0 0;font: 13px 'FontAwesome';color: #00d8c0;}

.blog_tags a:hover {background: #01c3df;color: #ffffff;}
.blog_tags a:hover:before {color: #ffffff;}

.blog_tags a.tag_active {background: #01c3df;color: #ffffff !important;cursor: default;}
.blog_tags a.tag_active:before {color: #ffffff;}




/* 12.1 POSTS LISTING */
.blog_listing__article {margin: 30px 0 0 0;}
.blog_listing__article ~ .blog_listing__article {padding: 30px 0 0 0;border-top: 1px solid #dddddd;}

.blog_listing__article .article_title {margin: 0;font-size: 20px;}

.blog_listing__article .article_body {margin: 30px 0;}

.blog_listing__article .article_content {margin: 15px 0 0 0;}

.blog_listing__article .article_footer {}
.blog_listing__article .article_footer .blog_tags {margin: -10px 0 30px 0;}




/* 12.2 SINGLE POST */
.blog_article {margin: 30px 0 0 0;}

.blog_article .article_title {margin: 0;font-size: 20px;}

.blog_article .article_content {margin: 30px 0 0 0;}
.blog_article .article_content .rte {margin: 0;}

.blog_article .article_footer {margin: 30px 0 0 0;}
.blog_article .article_footer .blog_tags {margin: -10px 0 30px 0;}

.blog_article .article_pagination {margin: 30px 0 0 0;}
.blog_article .article_pagination .article_next {float: right;}


.article_comments__list {margin: 30px 0 0 0;padding: 30px 0 0 0;border-top: 1px solid #dddddd;}
.article_comments__list h3 {margin: 0;}

.article_comments__list ul {}
.article_comments__list ul li {margin: 30px 0 0 0;padding: 15px;background: rgba(0,0,0,.05);}
.article_comments__list ul li time {float: right;}
.article_comments__list ul li time span {margin: 0 0 0 12px;padding: 0 0 0 12px;border-left: 1px solid #dddddd;}

.article_comments__list .comment_author {margin: 0;}
.article_comments__list .comment_content {margin: 10px 0 0 0;}


.article_comments__form {margin: 30px 0 0 0;padding: 30px 0 0 0;border-top: 1px solid #dddddd;}
.article_comments__form h3 {margin: 0;}

.article_comments__form .col-lg-6 {margin: 15px 0 0 0;}

.article_comments__form button {margin: 15px 0 0 0;}




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

.account_section {margin: 30px 0 0 0;padding: 30px;border: 1px solid #dddddd;border-top: 2px solid #01c3df;}


.account_section h4 {overflow: hidden;margin: 0;font-size: 16px;}
.account_section h4 span {vertical-align: top;float: right;}
.account_section h4 a {font-weight: normal;}
.account_section h4 a ~ a {margin: 0 0 0 15px;}
.account_section h4 a:before {vertical-align: top;margin: 0 5px 0 0;font: 14px/24px 'FontAwesome';}
.account_section h4 a.link_add:before {content: '\f067';}
.account_section h4 a.link_edit:before {content: '\f040';}
.account_section h4 a.link_close:before {content: '\f00d';}
.account_section h4 a.link_delete:before {content: '\f1f8';}

.account_section p.note {margin: 15px 0 0 0;}
.account_section .btn {margin-right: 15px;}
.account_section label {line-height: 34px;}


.account_section .address_item {line-height: 26px;}
.account_section .address_item:before {width: 26px;height: 26px;display: inline-block;vertical-align: middle;margin: 0 7px 0 0;border: 1px solid #01c3df;font: 15px/25px 'FontAwesome';color: #333333;text-align: center;cursor: default;
-webkit-border-radius: 50%;
        border-radius: 50%;
}

.account_section .address_item {margin: 15px 0 0 0;}
.account_section .address_item ~ .address_item {margin: 10px 0 0 0;}

.account_section .address_location {}
.account_section .address_location:before {content: '\f015';}

.account_section .address_phone {}
.account_section .address_phone:before {content: '\f095';font-size: 14px;}

.account_section .address_user {}
.account_section .address_user:before {content: '\f007';}


.account_section input[type="radio"],
.account_section input[type="checkbox"] {margin: 10px 5px 0 0;}


.account_wrapper {width: 100%;height: 100%;display: table;margin: 30px 0 0 0;}
.account_wrapper .account_left {width: 50%;height: 100%;display: table-cell;padding: 0 15px 0 0;}
.account_wrapper .account_right {width: 50%;height: 100%;display: table-cell;padding: 0 0 0 15px;}
.account_wrapper .account_section {width: 100%;height: 100%;margin: 0;}




/* 13.1 LOGIN */
#account_login {}
#account_login .account_left {}
#account_login .account_left ul {margin: 10px 0 0 0;}
#account_login .account_left ul li {margin: 5px 0 0 0;color: #333333;text-transform: uppercase;}
#account_login .account_left ul li:before {content: '\f00c';margin: 0 7px 0 0;font: 14px 'FontAwesome';color: #01c3df;}
#account_login .account_left .btn {margin-top: 15px;}


#account_reset {}


#account_guest {margin: 30px 0 0 0;padding: 30px;border: 1px solid #dddddd;}
#account_guest .btn {margin-top: 15px;}




/* 13.2 RESET PASSWORD */
#account_reset_form {margin: 0;}




/* 13.3 ACCOUNT */
.account_area {}
.account_area .page_heading {overflow: hidden;padding: 0 0 10px 0;background: none;border: none;border-bottom: 2px solid #dddddd;position: relative;}
.account_area .page_heading a {display: block;float: right;margin: 4px 0 0 10px;font-size: 14px;}
.account_area .page_heading a.link_logout {position: absolute;right: 0;top: 0;}


/* WELCOME MESSAGE */
.account_welcome {text-align: center;}
.account_welcome .page_heading {}
.account_welcome .page_heading:before {content: '\f007';margin: 0 7px 0 0;font-family: 'FontAwesome';}


.account_welcome__name {margin: 30px 0 0 0;color: #01c3df;}

.account_welcome__desc {}


/* ACCOUNT TABLES */
.account_table {width: 100%;margin: 15px 0 0 0;}

.account_table th,
.account_table td {vertical-align: middle;}


.table_info {}
.table_info tr {}
.table_info tr ~ tr {border-top: 1px solid #dddddd;}
.table_info td {padding: 5px 0;}
.table_info td ~ td {padding: 5px 0 5px 5px;color: #333333;text-align: right;}


.table_orders {}
.table_orders thead {border-bottom: 2px solid #dddddd;}
.table_orders th {padding: 5px 7px;border: 1px solid #dddddd;color: #333333;text-transform: uppercase;}

.table_orders tbody {}
.table_orders td {padding: 5px 7px;border: 1px solid #dddddd;}

.table_orders tfoot {border-top: 2px solid #dddddd;}

.table_orders p {margin: 7px 0 0 0;}

.table_orders a {text-decoration: underline;}
.table_orders a:hover {text-decoration: none;}

.table_orders .cell_fulfillment {}
.table_orders .cell_total {text-align: right;}

.table_orders .row_total {border-top: 2px solid #dddddd;font-size: 14px;}
.table_orders .row_total .money {font-weight: bold;}


/* DEFAULT ADDRESS */
.account_default {}
.account_default .address_all {margin: 15px 0 0 0;}
.account_default .address_all a {text-decoration: underline;}
.account_default .address_all a:hover {text-decoration: none;}




/* 13.4 ADDRESSES */
.account_address__item {}
.account_address__item h4 {padding: 0 0 7px 0;border-bottom: 1px solid #dddddd;}




/* 13.5 ORDERS */
.order_cancelled {}
.order_cancelled h4 {margin: 0;font-size: 14px;}
.order_cancelled p {margin: 10px 0 0 0;}




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

.cart_page {}
.cart_page .page_heading {}


#cart_loader {width: 100%;height: 0;position: fixed;left: 0;top: 0;}
#cart_loader .global_loader {top: 105px;}


.cart_list {width: 100%;max-width: 100%;margin: 30px 0 0 0;}
.cart_list th {padding: 15px 20px;background: rgba(0,0,0,.05);border: 1px solid #dddddd;font-size: 14px;color: #333333;text-transform: uppercase;}
.cart_list th ~ th {text-align: center;}
.cart_list td {padding: 20px;border: 1px solid #dddddd;}

.cart_list .cell_3 {text-align: center;}
.cart_list .cell_5 {text-align: center;}
.cart_list .cart_price {font-size: 14px;text-align: right;}


.cart_item {}
.cart_item__img {width: 140px;float: left;}
.cart_item__info {margin: 0 0 0 160px;}
.cart_item__name {margin: 0;}
.cart_item__variant {margin: 15px 0 0 0;font-size: 14px;color: #333333;}

.cart_item__details {margin: 10px 0 0 0;}
.cart_item__details p {margin: 5px 0 0 0;}
.cart_item__details p span {color: #333333;}

.cart_item .quantity_box {width: 88px;height: 24px;margin: 0;position: relative;}
.cart_item .quantity_box input {width: 40px;position: absolute;left: 24px;top: 0;}
.cart_item .quantity_box .quantity_down {margin: 0;position: absolute;left: 0;top: 0;}
.cart_item .quantity_box .quantity_up {margin: 0;position: absolute;right: 0;top: 0;}
.cart_item .cart_update {width: 88px;margin: 5px 0 0 0;}

.cart_item__remove {font-size: 14px;}
.cart_item__remove i {vertical-align: baseline;}


.cart_list .cart_buttons .btn {float: right;margin: 0 0 0 20px;}
.cart_list .cart_buttons .btn-alt {float: left;margin: 0;}
.cart_list .cart_buttons .btn:before {margin: 0 7px 0 0;font: 14px 'FontAwesome';}
.cart_list .cart_buttons .cart_continue:before {content: '\f060';}
.cart_list .cart_buttons .cart_update:before {content: '\f021';}
.cart_list .cart_buttons #cart_clear:before {content: '\f1f8';}

.cart_list .cart_summary .cart_summary__row {margin: 0;padding: 0 0 10px 0;border-bottom: 1px solid #dddddd;font-size: 16px;color: #333333;}
.cart_list .cart_summary .cart_summary__row ~ .cart_summary__row {padding: 10px 0;}
.cart_list .cart_summary .cart_summary__row span {float: right;}

.cart_list .cart_summary .cart_summary__notification {margin: 20px 0 0 0;}

.cart_list .cart_summary .cart_summary__instructions {margin: 15px 0 0 0;}
.cart_list .cart_summary .cart_summary__instructions label {display: block;padding: 0 0 3px 0;font-weight: normal;color: #333333;}
.cart_list .cart_summary .cart_summary__instructions textarea {width: auto !important;height: 100px !important;max-width: 100% !important;resize: none;}

.cart_list .cart_summary .cart_summary__checkout {}
.cart_list .cart_summary .cart_summary__checkout button {float: right;margin: 20px 0 0 10px;padding: 10px 20px;background: #fe3153 !important;border-color: #fe3153 !important;font-size: 16px;}
.cart_list .cart_summary .cart_summary__checkout button:hover {background: #00d8c0 !important;border-color: #00d8c0 !important;}

.cart_list .cart_summary .cart_summary__methods {float: left;}
.cart_list .cart_summary .cart_summary__methods li {float: left;margin: 20px 10px 0 0;}


/* EMPTY CART NOTIFICATION */
.cart_empty {}
.cart_empty .alert {}
.cart_empty h3 {}
.cart_empty h3 a {font-weight: inherit;text-decoration: underline;}
.cart_empty h3 a:hover {text-decoration: none;}




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