﻿/*
// philos - Responsive Ecommerce 
// Created by Nileforest*/

/*
* BASIC
  - General Style    
  - Typography Style
  - Button Style
  - Form Style
  - Spacing
  - Pages Style

* HEADER
  - Top Header
  - Logo
  - Navigation Menu
  - Navigation Dropdown Menu
  - Rightside Navigation
  - Header Mix
  - Navigation Top
    
* INTRO
  - intro

* ELEMENTS
  - Sidebar Menu (Cart Menu)
  - Search Overlay Menu
  - Icons
  - Product Filter
  - Tabs
  - Tooltip
  - Like Share Banner
  - Newsletter Popup
  - Bread Crumb
  - Sidebar Widget
  - Accordian
  - Toggle
  - Product Listing Page (Top-Banner, Title, Filter Product-Grid)
  - Pagination
  - Deal of the Days

* FOOTER

* GLOBEL
  - Promo
  - Promo Banner
  - Slider Theme
  - Product Item
  - Categories Box
  - Blog Box
  - Newsletter
  - About Blocks
  - Instagram Blocks

* Product Detail Page
  - Product Image
  - Product Content
  - Product Tabs
  - Product Carousel
  - Sidebar Widget

* Scroll To Top

* Pages
  - Blog Page
  - Blog Single
  - Cart Page
  - Checkout Page
  - Portfolio Page
  - All Pages
  - Toggle
  - Accordion
  - Vertical/Horizontal Tabs
  - Message Box
  - Nice Select
  - Magnific Popup
  - Preloader
  - Extra Mix

* Responsive CSS

 */



/*==========================================================================================================*/
/* BASIC     ||---------------------------- */
/*==========================================================================================================*/

/*------------------------------------------------------------------*/
/* General Style */
/*------------------------------------------------------------------*/
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

#page-wraper, .page-content-wraper {
    position: relative;
    width: 100%;
    background: #fff;
}

::-moz-selection {
    background-color: #34b79d;
    color: #ffffff;
}

::selection {
    background-color: #34b79d;
    color: #ffffff;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    *::after, *::before {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    *:after, *:before {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

a, a:focus {
    outline: none;
    text-decoration: none;
	color:inherit;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: #333333;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

    a:hover, a.color, .color {
        color: #34b79d;
    }

    a:focus, a:hover {
        text-decoration: none;
    }

.black {
    color: #333;
}

.white {
    color: #fff;
}

.yellow {
    color: #ffed1f;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border: none;
    outline: none;
}

.overlay-black, .overlay-black20, .overlay-black30, .overlay-black40, .overlay-black60, .overlay-black80, .overlay-black90, .overlay-light, .overlay-light20, .overlay-light40, .overlay-light60, .overlay-light80, .overlay-light90 {
    position: relative;
    z-index: 1;
}

    .overlay-black:before, .overlay-black20:before, .overlay-black30:before, .overlay-black40:before, .overlay-black60:before, .overlay-blackk80:before, .overlay-blackk90:before, .overlay-light:before, .overlay-light20:before, .overlay-light40:before, .overlay-light60:before, .overlay-light80:before, .overlay-light90:before {
        left: 0;
        top: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        content: "";
        z-index: -1;
        display: block;
    }

    .overlay-black:before {
        background-color: rgba(0, 0, 0, 0.85);
    }

    .overlay-black20:before {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .overlay-black30:before {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .overlay-black40:before {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .overlay-black60:before {
        background-color: rgba(0, 0, 0, 0.6);
    }

    .overlay-black80:before {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .overlay-black90:before {
        background-color: rgba(0, 0, 0, 0.9);
    }

    .overlay-light:before {
        background-color: rgba(255, 255, 255, 0.4);
    }

    .overlay-light20:before {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .overlay-light40:before {
        background-color: rgba(255, 255, 255, 0.4);
    }

    .overlay-light60:before {
        background-color: rgba(255, 255, 255, 0.6);
    }

    .overlay-light80:before {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .overlay-light90:before {
        background-color: rgba(255, 255, 255, 0.9);
    }

.bg-image {
    /*background-position: center center;*/
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%; /*background-attachment: fixed;*/
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-gray {
    background: #f8f8f8;
}

.bg-yellow {
    background: #fffee8;
}

.bg-white {
    background: #fff;
}

.bg-black {
    background: #333;
}

br {
    font-size: 0;
    line-height: 0;
}

hr {
    margin-bottom: 0px;
    margin-top: 0px;
    border-top: 1px solid #eee;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

    hr.dark {
        border-top: 1px solid #333333;
    }

b, strong, .strong {
    font-weight: 600;
}

.italic {
    font-style: italic;
}

.capitale {
    text-transform: uppercase;
}

i.left {
    margin-right: 5px;
}

i.right {
    margin-left: 5px;
}

small, small a {
    font-size: 11px;
    color: #333;
}

ul.list-inside {
    list-style: inside;
}

ol, ul {
    margin: 0;
    padding: 0;
}

    ul.list-none {
        list-style: none;
        margin-left: 0;
    }

    ul.list-none-ib li, .list-none-ib {
        display: inline-block;
    }

.text-center {
    text-align: center !important;
}
/*------------------------------------------------------------------*/
/* Typography Style */
/*------------------------------------------------------------------*/

/* Hedding ------------------ */
h1, h2, h3, h4, h5, h6, h1.h1, h2.h2, h3.h3, h4.h4, h5.h5, h6.h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #333;
    margin-top: 0px;
    margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
}

    h1.h1, h2.h2, h3.h3, h4.h4, h5.h5, h6.h6, .h1, .h2, .h3, .h4, .h5, .h6, h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, h1.h1 span, h2.h2 span, h3.h3 span, h4.h4 span, h5.h5 span, h6.h6 span, .h1 span, .h2 span, .h3 span, .h4 span, .h5 span, .h6 span {
        text-transform: none;
    }

        h1.normal, h2.normal, h3.normal, h4.normal, h5.normal, h6.normal, h1.h1.normal, h2.h2.normal, h3.h3.normal, h4.h4.normal, h5.h5.normal, h6.h6.normal, .h1.normal, .h2.normal, .h3.normal, .h4.normal, .h5.normal, .h6.normal {
            font-weight: 500;
        }

h1 {
    font-size: 51px;
    line-height: normal;
}

h2 {
    font-size: 28px;
    line-height: 1.3;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6, .dark-bg p, dark-bg .white {
    color: #fff;
}
/* Title -----------------------*/
.alt-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    line-height: normal;
}
/* Paragraph ------------------ */
p {
    font-weight: 400;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #777;
}

    p.x-small {
        font-size: 10px;
    }

    p.small {
        font-size: 12px;
    }

    p.large {
        font-size: 16px;
    }

    p.x-large {
        font-size: 18px;
    }
/*------------------------------------------------------------------*/
/* Button Style */
/*------------------------------------------------------------------*/
.btn, button {
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    text-decoration: none !important;
    text-transform: uppercase;
    text-align: center;
    outline: none;
    border-width: 1px;
    border-style: solid;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease 0s !important;
    -moz-transition: all 0.3s ease 0s !important;
    -webkit-transition: all 0.3s ease 0s !important;
    -o-transition: all 0.3s ease 0s !important;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
}

    .btn i, button i, .btn i, button i {
        margin-right: 6px;
    }

        .btn i.right, button i.right {
            margin-left: 6px;
            margin-right: 0px;
        }

.btn-xs {
    padding: 11px 30px !important;
    display: inline-block;
}

.btn-sm {
    padding: 13px 35px !important;
    display: inline-block;
}

.btn-md {
    padding: 15px 35px !important;
    display: inline-block;
}

.btn-lg {
    padding: 18px 45px !important;
    display: inline-block;
}

.btn-black {
    background-color: #333;
    border-color: transparent;
    color: #fff !important;
}

    .btn-black:hover {
        background-color: #4b4b4b;
        border-color: transparent;
        color: #fff !important;
    }

.btn-color {
    background-color: #34b79d;
    border-color: transparent;
    color: #fff !important;
}

    .btn-color:hover {
        background-color: #4ac2aa;
        border-color: transparent;
        color: #fff !important;
    }

.btn-gray {
    background-color: #eee;
    border-color: transparent;
    color: #222 !important;
}

    .btn-gray:hover {
        background-color: #f4f4f4;
        border-color: transparent;
        color: #222 !important;
    }

.btn-white {
    background-color: #fff;
    border-color: transparent;
    color: #222 !important;
}

    .btn-white:hover {
        background-color: #f4f4f4;
        border-color: transparent;
        color: #34b79d !important;
    }
/*------------------------------------------------------------------*/
/* Form Style */
/*------------------------------------------------------------------*/
form {
    position: relative;
}

button {
    outline: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    cursor: pointer;
    display: inline-block;
}

button, input, textarea, select {
    font-size: 12px;
}

    input, input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], input[type="radio"], input[type="checkbox"], textarea, select {
        appearance: none;
        -webkit-appearance: none;
        border: 1px solid rgba(0, 0, 0, 0.10);
        background: #fff;
        -webkit-border-radius: 55px;
        -moz-border-radius: 55px;
        border-radius: 55px;
        color: #333;
        outline: none;
        font-weight: 400;
        font-size: 13px;
        padding-left: 25px;
        padding-right: 25px;
        transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
        -moz-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
        -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
        -o-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
        display: inline-block;
        text-transform: none;
        line-height: 1;
        vertical-align: middle;
    }

        input[type="text"]:hover, input[type="email"]:hover, input[type="tel"]:hover, input[type="number"]:hover, input[type="radio"]:hover, input[type="checkbox"]:hover, input[type="password"]:hover, textarea:hover, select:hover {
            border: 1px solid rgba(0, 0, 0, 0.2);
        }

        input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus, input[type="password"]:focus, textarea:focus {
            border: 1px solid rgba(0, 0, 0, 0.7);
            color: #333;
        }

        input.input-xs, .input-xs {
            padding-top: 9px;
            padding-bottom: 9px;
            height: 36px;
        }

        input.input-sm, .input-sm {
            padding-top: 11px;
            padding-bottom: 11px;
            height: 40px;
        }

        input.input-md, .input-md {
            padding-top: 13px;
            padding-bottom: 13px;
            height: 44px;
        }

        input.input-lg, .input-lg {
            padding-top: 16px;
            padding-bottom: 16px;
            height: 50px;
        }

.btn.fancy {
    border-radius: 0 50px 50px 0;
    vertical-align: middle;
    margin-left: -5px;
    display: inline-block;
}

input.fancy {
    border-radius: 50px 0 0 50px;
    vertical-align: middle;
    display: inline-block;
}

textarea {
    height: 120px;
    font-size: 13px !important;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    padding: 15px;
}

label {
    color: #333;
    font-size: 13px;
    margin-bottom: 10px;
    padding-right: 3px;
    padding-left: 3px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0px;
    font-family: 'Montserrat', sans-serif;
    vertical-align: middle;
    display: block;
}

    label.left {
        text-align: left;
    }

    label.inline-block {
        margin-bottom: 0px;
        display: inline-block;
        vertical-align: middle;
    }

input.block {
    display: block;
}

.form-full-width {
    width: 100%;
}

.form-center {
    text-align: center;
}

.form-full-height {
    height: 100%;
}

.form-field-wrapper {
    margin-bottom: 20px;
    position: relative;
}

form .error {
    border-color: #e1534f;
}

.form-required {
    color: #f00;
}

form label.error {
    margin-bottom: 0px;
    margin-top: 3px;
    color: #e1534f;
    font-size: 12px;
    font-weight: 400;
}

.successContent, .errorContent {
    margin-bottom: 20px;
    display: none;
    text-transform: none;
    letter-spacing: 1px;
}

.form-border-box {
    border: 1px solid #eee;
    padding: 30px;
}
/*------------------------------------------------------------------*/
/* Spacing */
/*------------------------------------------------------------------*/
/*spacing*/
.spacer-15 {
    height: 15px;
    width: 100%;
}

.spacer-30 {
    height: 30px;
    width: 100%;
}

.spacer-45 {
    height: 45px;
    width: 100%;
}

.spacer-60 {
    height: 60px;
    width: 100%;
}

.spacer-75 {
    height: 75px;
    width: 100%;
}

.spacer-90 {
    height: 90px;
    width: 100%;
}
/*margrin*/
.container-margin {
    margin-top: 80px;
    margin-bottom: 80px;
}

.container-margin-t {
    margin-top: 80px;
}

.container-margin-b {
    margin-bottom: 80px;
}

.container-margin-minus-t {
    margin-top: -80px;
    position: relative;
    z-index: 1;
}
/*Section padding*/
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-padding-t {
    padding-top: 80px;
}

.section-padding-b {
    padding-bottom: 80px;
}

.section-padding-sm {
    padding-bottom: 40px;
    padding-top: 40px;
}

.section-padding-sm-t {
    padding-top: 40px;
}

.section-padding-sm-b {
    padding-bottom: 40px;
}
/*--*/
.p-90 {
    padding: 90px;
}

.ptb-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.plt-90 {
    padding-left: 90px;
    padding-right: 90px;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-80 {
    padding-bottom: 80px;
}
/*--*/
.p-85 {
    padding: 85px;
}

.ptb-85 {
    padding-top: 85px;
    padding-bottom: 85px;
}

.plt-85 {
    padding-left: 85px;
    padding-right: 85px;
}

.pt-85 {
    padding-top: 85px;
}

.pb-85 {
    padding-bottom: 85px;
}
/*--*/
.p-80 {
    padding: 80px;
}

.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.plt-80 {
    padding-left: 80px;
    padding-right: 80px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}
/*--*/
.p-75 {
    padding: 75px;
}

.ptb-75 {
    padding-top: 75px;
    padding-bottom: 75px;
}

.plt-75 {
    padding-left: 75px;
    padding-right: 75px;
}

.pt-75 {
    padding-top: 75px;
}

.pb-75 {
    padding-bottom: 75px;
}
/*--*/
.p-70 {
    padding: 70px;
}

.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.plt-70 {
    padding-left: 70px;
    padding-right: 70px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}
/*--*/
.p-65 {
    padding: 65px;
}

.ptb-65 {
    padding-top: 65px;
    padding-bottom: 65px;
}

.plt-65 {
    padding-left: 65px;
    padding-right: 65px;
}

.pt-65 {
    padding-top: 65px;
}

.pb-65 {
    padding-bottom: 65px;
}
/*--*/
.p-60 {
    padding: 60px;
}

.ptb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.plt-60 {
    padding-left: 60px;
    padding-right: 60px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}
/*--*/
.p-55 {
    padding: 55px;
}

.ptb-55 {
    padding-top: 55px;
    padding-bottom: 55px;
}

.plt-55 {
    padding-left: 55px;
    padding-right: 55px;
}

.pt-55 {
    padding-top: 55px;
}

.pb-55 {
    padding-bottom: 55px;
}
/*--*/
.p-50 {
    padding: 50px;
}

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.plt-50 {
    padding-left: 50px;
    padding-right: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}
/*--*/
.p-45 {
    padding: 45px;
}

.ptb-45 {
    padding-top: 45px;
    padding-bottom: 45px;
}

.plt-45 {
    padding-left: 45px;
    padding-right: 45px;
}

.pt-45 {
    padding-top: 45px;
}

.pb-45 {
    padding-bottom: 45px;
}
/*--*/
.p-40 {
    padding: 40px;
}

.ptb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.plt-40 {
    padding-left: 40px;
    padding-right: 40px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}
/*--*/
.p-35 {
    padding: 35px;
}

.ptb-35 {
    padding-top: 35px;
    padding-bottom: 35px;
}

.plt-35 {
    padding-left: 35px;
    padding-right: 35px;
}

.pt-35 {
    padding-top: 35px;
}

.pb-35 {
    padding-bottom: 35px;
}
/*--*/
.p-30 {
    padding: 30px;
}

.ptb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.plt-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}
/*--*/
.p-25 {
    padding: 25px;
}

.ptb-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.plt-25 {
    padding-left: 25px;
    padding-right: 25px;
}

.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}
/*--*/
.p-20 {
    padding: 20px;
}

.ptb-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.plt-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}
/*--*/
.p-15 {
    padding: 15px;
}

.ptb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.plr-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.plt-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.pt-15 {
    padding-top: 15px;
}

.pb-15 {
    padding-bottom: 15px;
}
/*--*/
.p-10 {
    padding: 10px;
}

.ptb-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.plt-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}
/*--*/
.p-5 {
    padding: 5px;
}

.ptb-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.plt-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.pt-5 {
    padding-top: 5px;
}

.pb-5 {
    padding-bottom: 5px;
}
/*--*/
.m-90 {
    margin: 90px;
}

.mlr-0 {
    margin-left: 0px;
    margin-right: 0px;
}

.mtb-90 {
    margin-top: 90px;
    margin-bottom: 90px;
}

.mlt-90 {
    margin-left: 90px;
    margin-right: 90px;
}

.mt-90 {
    margin-top: 90px;
}

.mb-90 {
    margin-bottom: 90px;
}
/*--*/
.m-85 {
    margin: 85px;
}

.mtb-85 {
    margin-top: 85px;
    margin-bottom: 85px;
}

.mlt-85 {
    margin-left: 85px;
    margin-right: 85px;
}

.mt-85 {
    margin-top: 85px;
}

.mb-85 {
    margin-bottom: 85px;
}
/*--*/
.m-80 {
    margin: 80px;
}

.mtb-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.mlt-80 {
    margin-left: 80px;
    margin-right: 80px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}
/*--*/
.m-75 {
    margin: 75px;
}

.mtb-75 {
    margin-top: 75px;
    margin-bottom: 75px;
}

.mlt-75 {
    margin-left: 75px;
    margin-right: 75px;
}

.mt-75 {
    margin-top: 75px;
}

.mb-75 {
    margin-bottom: 75px;
}
/*--*/
.m-70 {
    margin: 70px;
}

.mtb-70 {
    margin-top: 70px;
    margin-bottom: 70px;
}

.mlt-70 {
    margin-left: 70px;
    margin-right: 70px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}
/*--*/
.m-65 {
    margin: 65px;
}

.mtb-65 {
    margin-top: 65px;
    margin-bottom: 65px;
}

.mlt-65 {
    margin-left: 65px;
    margin-right: 65px;
}

.mt-65 {
    margin-top: 65px;
}

.mb-65 {
    margin-bottom: 65px;
}
/*--*/
.m-60 {
    margin: 60px;
}

.mtb-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}

.mlt-60 {
    margin-left: 60px;
    margin-right: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px !important;
}
/*--*/
.m-55 {
    margin: 55px;
}

.mtb-55 {
    margin-top: 55px;
    margin-bottom: 55px;
}

.mlt-55 {
    margin-left: 55px;
    margin-right: 55px;
}

.mt-55 {
    margin-top: 55px;
}

.mb-55 {
    margin-bottom: 55px;
}
/*--*/
.m-50 {
    margin: 50px;
}

.mtb-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.mlt-50 {
    margin-left: 50px;
    margin-right: 50px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px !important;
}
/*--*/
.m-45 {
    margin: 45px;
}

.mtb-45 {
    margin-top: 45px;
    margin-bottom: 45px;
}

.mlt-45 {
    margin-left: 45px;
    margin-right: 45px;
}

.mt-45 {
    margin-top: 45px;
}

.mb-45 {
    margin-bottom: 45px;
}
/*--*/
.m-40 {
    margin: 40px;
}

.mtb-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.mlt-40 {
    margin-left: 40px;
    margin-right: 40px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}
/*--*/
.m-35 {
    margin: 35px;
}

.mtb-35 {
    margin-top: 35px;
    margin-bottom: 35px;
}

.mlt-35 {
    margin-left: 35px;
    margin-right: 35px;
}

.mt-35 {
    margin-top: 35px;
}

.mb-35 {
    margin-bottom: 35px;
}
/*--*/
.m-30 {
    margin: 30px;
}

.mtb-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.mlt-30 {
    margin-left: 30px;
    margin-right: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}
/*--*/
.m-25 {
    margin: 25px;
}

.mtb-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.mlt-25 {
    margin-left: 25px;
    margin-right: 25px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}
/*--*/
.m-20 {
    margin: 20px;
}

.mtb-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mlt-20 {
    margin-left: 20px;
    margin-right: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}
/*--*/
.m-15 {
    margin: 15px;
}

.mtb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.mlt-15 {
    margin-left: 15px;
    margin-right: 15px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}
/*--*/
.m-10 {
    margin: 10px;
}

.mtb-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mlt-10 {
    margin-left: 10px;
    margin-right: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}
/*--*/
.m-5 {
    margin: 5px;
}

.mtb-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.mlt-5 {
    margin-left: 5px;
    margin-right: 5px;
}

.mt-5 {
    margin-top: 5px;
}

.mb-5 {
    margin-bottom: 5px;
}
/*--*/
.m-0 {
    margin: 0px;
}

.mtb-0 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.mlt-0 {
    margin-left: 0px;
    margin-right: 0px;
}

.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px !important;
}

@media (max-width: 775px) {
    /*extra small medium*/

    /*padding*/
    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-padding-t {
        padding-top: 40px;
    }

    .section-padding-b {
        padding-bottom: 40px;
    }

    /*margrin*/
    .container-margin-minus-t {
        margin-top: -40px;
    }

    .container-margin {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .container-margin-t {
        margin-top: 40px;
    }

    .container-margin-b {
        margin-bottom: 40px;
    }

    .float-xs-left {
        float: left !important;
        text-align: left;
    }

    .float-xs-right {
        float: right !important;
        text-align: right;
    }

    .p-xs-0 {
        padding: 0px;
    }

    .ptb-xs-0 {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .plt-xs-0 {
        padding-left: 0px;
        padding-right: 0px;
    }

    .pt-xs-0 {
        padding-top: 0px;
    }

    .pb-xs-0 {
        padding-bottom: 0px;
    }

    .mtb-xs-30 {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .mlt-xs-30 {
        margin-left: 30px;
        margin-right: 30px;
    }

    .mt-xs-30 {
        margin-top: 30px;
    }

    .mb-xs-30 {
        margin-bottom: 30px;
    }

    /* 0 */
    .mtb-xs-0 {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .mlt-xs-0 {
        margin-left: 0px;
        margin-right: 0px;
    }

    .mt-xs-0 {
        margin-top: 0px;
    }

    .mb-xs-0 {
        margin-bottom: 0px;
    }
}

@media (max-width: 991px) {
    .p-sm-0 {
        padding: 0px;
    }

    .ptb-sm-0 {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .plt-sm-0 {
        padding-left: 0px;
        padding-right: 0px;
    }

    .pt-sm-0 {
        padding-top: 0px;
    }

    .pb-sm-0 {
        padding-bottom: 0px;
    }


    /* 45 */
    .mtb-sm-45 {
        margin-top: 45px;
        margin-bottom: 45px;
    }

    .mlt-sm-45 {
        margin-left: 45px;
        margin-right: 45px;
    }

    .mt-sm-45 {
        margin-top: 45px;
    }

    .mb-sm-45 {
        margin-bottom: 45px;
    }

    /* 30 */
    .mtb-sm-30 {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .mlt-sm-30 {
        margin-left: 30px;
        margin-right: 30px;
    }

    .mt-sm-30 {
        margin-top: 30px !important;
    }

    .mb-sm-30 {
        margin-bottom: 30px;
    }

    .mb-sm-15 {
        margin-bottom: 15px;
    }

    /* 0 */
    .mtb-sm-0 {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .mlt-sm-0 {
        margin-left: 0px;
        margin-right: 0px;
    }

    .mt-sm-0 {
        margin-top: 0px;
    }

    .mb-sm-0 {
        margin-bottom: 0px;
    }
}
/*------------------------------------------------------------------*/
/* Pages Style */
/*------------------------------------------------------------------*/
.content-page {
    padding-bottom: 80px;
    padding-top: 50px;
    overflow: hidden;
}
/*==========================================================================================================*/
/* HEADER     ||---------------------------- */
/*==========================================================================================================*/

.header {
    width: 100%;
    color: #333;
    position: relative;
    z-index: 999;
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
}

.header-topbar, .header-main {
    padding-left: 50px;
    padding-right: 50px;
}

    .header-topbar .header-topbar-inner, .header-main .header-main-inner {
        max-width: 1820px;
        width: 100%;
        display: table;
        margin-left: auto;
        margin-right: auto;
    }
/*------------------------------------------------------------------*/
/* Top Header */
/*------------------------------------------------------------------*/
.header-topbar {
    display: table;
    background-color: #fff;
    color: #333;
    width: 100%;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    letter-spacing: 0.4px;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .header-topbar .topbar-left {
        text-align: left;
        display: table-cell;
        vertical-align: middle;
    }

    .header-topbar .topbar-right {
        text-align: right;
        display: table-cell;
        vertical-align: middle;
    }

        .header-topbar .topbar-right ul li {
            text-align: left;
            display: inline-block;
        }

        .header-topbar .topbar-right > ul > li > a {
            margin-top: 0;
            margin-right: 0;
            margin-bottom: 0;
            margin-left: 8px;
            margin-right: 8px;
            display: block;
        }

        .header-topbar .topbar-right ul li a:hover {
        }

        .header-topbar .topbar-right > ul > li:last-child > a {
            margin-right: 0px;
        }
/*Dropdown*/
.dropdown-nav {
    position: relative;
}

    .dropdown-nav:hover > a {
        color: #34b79d;
    }

    .dropdown-nav .dropdown-menu {
        font-size: 13px;
        font-weight: 400;
        position: absolute;
        left: 0;
        width: 180px;
        background: #fff;
        border: 1px solid #eee;
        display: none;
        z-index: 2000;
        list-style: none;
        margin: -4px 0 0 0;
        padding: 15px;
        text-transform: none;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    }

        .dropdown-nav .dropdown-menu:before {
            background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
            bottom: -3px;
            content: "";
            height: 3px;
            left: 0;
            position: absolute;
            width: 100%;
            z-index: 1;
        }

    .dropdown-nav:hover .dropdown-menu {
        display: block;
    }

    .dropdown-nav .dropdown-menu ul li {
        display: block;
    }

    .dropdown-nav .dropdown-menu a {
        display: block;
        line-height: 1;
        padding: 8px 0px;
    }

.divider {
    border-bottom: 1px solid #eee;
    outline: none;
    width: 100%;
    display: block;
    min-height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width: 775px) {
    .header-topbar .topbar-right > ul > li:last-child > a {
        margin-right: 8px;
    }

    .header-topbar .topbar-right {
        text-align: center;
        float: none;
        display: block;
    }
}

@media (max-width: 1220px) {
    .header-topbar, .header-main {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1080px) {
    .header-topbar, .header-main {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 979px) {
    .header-main .logo {
        display: inline-block;
        margin: 20px 0 0;
        width: auto;
    }

        .header-main .logo a {
            margin-top: 10px !important;
        }

    .sidebar-icon-nav ul li {
        margin: 28px 12px;
    }
}
/*------------------------------------------------------------------*/
/* Header Bar */
/*------------------------------------------------------------------*/
.header-main {
    position: relative;
    z-index: 99;
    display: table;
    width: 100%;
    background: #fff;
}

    .header-main.fixed {
        position: fixed;
        z-index: 3000;
        top: 0;
        background: rgba(255, 255, 255, 0.95);
        -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
        -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    }

        .header-main.no-stick.fixed, .header-main.fixed.no-stick {
            position: relative !important;
            background: #fff;
            -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
            -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
        }

.admin-bar .header-main.fixed {
    top: 33px;
}

.admin-bar.woocommerce-demo-store .header-topbar {
    margin-top: 53px;
}
/* Logo ---------------------------------------------*/
.header-main .logo {
    display: inline-block;
    float: left;
    text-align: left;
    margin-right: 28px;
}

    .header-main .logo a {
        margin-bottom: 26px;
        margin-top: 26px;
        width: 120px;
        display: block;
    }

        .header-main .logo a img {
            width: 100%;
            vertical-align: middle;
        }
.header-main .logo .site-title{
	margin-bottom:0;
	line-height:1;
}
@media only screen and (max-width: 420px) {
    .header-main .logo {
        display: block;
        margin: 30px auto 10px;
        width: 100%;
        float: none;
    }

        .header-main .logo a {
            margin: 0 auto !important;
        }

    .sidebar-icon-nav ul li {
        margin: 20px 12px !important;
    }
}
/* Navigation Menu -----------------------------------------------*/
.navigation-menu {
    display: block;
    float: left;
    position: static;
    text-transform: uppercase;
}

    .navigation-menu ul > li > a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 13px;
        padding: 29px 14px;
        display: block;
    }

    .navigation-menu ul > li:hover > a {
        color: #34b79d;
    }

    .navigation-menu ul, .navigation-menu ul li {
        list-style: none;
    }

    .navigation-menu > ul > li {
        display: inline-block;
    }

.menu-mobile {
    background: #f0f0f0;
    color: #333;
    padding: 8px 15px;
    font-family: 'Montserrat', sans-serif;
    display: none;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

    .menu-mobile:hover {
        color: #34b79d;
    }

.navigation-menu ul > li > a > .nav-label-new, .navigation-menu ul > li > a > .nav-label-sale {
    position: relative;
    right: 0;
}

    .navigation-menu ul > li > a > .nav-label-new:after {
        content: "";
        display: block;
        height: 20px;
        position: absolute;
        top: -19px;
        width: 28px;
		background-image: url("../images/mix.png");
		background-position: 0 -133px;
		background-repeat: no-repeat;
        z-index: 100;
        right: -10px;
    }

    .navigation-menu ul > li > a > .nav-label-sale:after {
        content: "";
        display: block;
        height: 20px;
        position: absolute;
        top: -19px;
        width: 28px;
		background-image: url("../images/mix.png");
		background-position: 0 -182px;
		background-repeat: no-repeat;
        z-index: 100;
        right: -10px;
    }
/* Navigation Dropdown Menu --------------------------------*/
.nav-dropdown {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 99;
    background: #fff;
    left: 0;
    border-top: 1px solid #eeeeee;
    padding: 30px 0 30px 0;
}

    .nav-dropdown:after {
        background: rgba(0, 0, 0, 0.08);
        width: 100%;
        bottom: -4px;
        left: 0;
        height: 4px;
        position: inherit;
        content: "";
    }

.dropworn-arrow {
    left: 50%;
    margin-left: -10px;
    position: relative;
    z-index: 100;
    display: none;
}

    .dropworn-arrow:after {
        background: rgba(0, 0, 0, 0) url("../images/dropdown-top-arrow.png") no-repeat scroll left top;
        content: "";
        bottom: -1px;
        height: 10px;
        width: 20px;
        position: absolute;
        transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
    }

.nav-dropdown .new-label, .nav-dropdown .sale-label {
    padding: 2px 4px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    margin-left: 5px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.nav-dropdown .sale-label {
    background: #f55151;
    color: #fff;
}

.nav-dropdown .new-label {
    background: #34b79d;
    color: #fff;
}

.nav-dropdown .sub-banner {
    padding: 0;
    position: relative;
    width: 100%;
    border: 0 none;
}

.nav-dropdown .nav-dropdown-grid {
    width: 25%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
    float: left;
}

    .nav-dropdown .nav-dropdown-grid ul {
        margin-bottom: 30px;
    }

        .nav-dropdown .nav-dropdown-grid ul li {
            font-size: 14px;
            text-transform: none;
            color: #333;
            font-family: "Open Sans", sans-serif;
            font-weight: 400;
        }

            .nav-dropdown .nav-dropdown-grid ul li > a {
                font-family: "Open Sans", sans-serif;
                font-weight: 400;
                font-size: 14px;
                padding-top: 2px;
                padding-left: 0px;
                padding-right: 0px;
                padding-bottom: 2px;
                display: inline-block;
                transition: all 0.2s ease 0s;
                -moz-transition: all 0.2s ease 0s;
                -o-transition: all 0.2s ease 0s;
                -webkit-transition: all 0.2s ease 0s;
            }

    .nav-dropdown .nav-dropdown-grid > ul > li:hover > a {
        color: inherit;
    }

    .nav-dropdown .nav-dropdown-grid > ul > li > a:hover {
        padding-left: 5px;
        color: #34b79d;
    }

.menu-mobile:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 20px;
    padding: 0;
    float: right;
    position: relative;
    top: 5px;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
}

.menu-dropdown-icon:before {
    content: "\f107";
    font-family: "FontAwesome";
    display: none;
    cursor: pointer;
    float: right;
    font-size: 16px;
    padding: 0;
    /*margin-top: 10px;
    margin-right: 15px;*/
    color: #999;
    height: 42px;
    width: 42px;
    line-height: 42px;
    text-align: center;
    vertical-align: middle;
    background: #f6f6f6;
    border: 1px solid #eee;
}

.show-on-mobile {
    display: block !important;
}

/* Sticky Header */
@media only screen and (min-width: 980px) {
    .header-main.fixed .header-main-inner .logo a {
        margin-top: 17px;
        margin-bottom: 0px;
        transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
    }

    .header-main.fixed > .header-main-inner > .navigation-menu > ul > li > a {
        padding-top: 21px;
        padding-bottom: 20px;
        transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
    }

    .header-main.fixed .header-main-inner .header-rightside-nav .header-btn-link {
        padding-top: 12px;
        padding-bottom: 12px;
        transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
    }

    .header-main.fixed .header-main-inner .sidebar-icon-nav ul li {
        margin-top: 20px;
        margin-bottom: 19px;
        transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
    }
}
/*Mobile style's*/
@media only screen and (max-width: 979px) {
    .navigation-menu {
        display: block;
        float: none;
        position: relative;
        text-transform: uppercase;
        clear: both;
        z-index: 99;
    }

        .navigation-menu ul > li > a {
            padding: 8px 15px;
            display: block;
            border: 1px solid #eee;
            border-radius: 3px;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
        }

    .nav-dropdown .nav-dropdown-grid ul li > a {
        border: none 0px;
    }

    .nav-dropdown .nav-dropdown-grid {
        width: 100%;
    }

    .nav-dropdown {
        padding-top: 30px;
        padding-bottom: 0px;
    }

    .navigation-menu > ul {
        display: none;
        position: absolute;
        top: 100%;
        width: 100%;
    }

        .navigation-menu > ul > li {
            display: block;
            margin-top: 1px;
            background: #fff;
        }

    .nav-dropdown {
        display: none;
        position: relative;
        width: 100%;
        z-index: auto;
        left: 0;
    }

    .menu-mobile {
        display: block;
    }

    .menu-dropdown-icon:before {
        display: inline-block;
    }

    .navigation-menu ul li a .nav-label-sale {
        display: none;
    }

    .nav-dropdown > .container {
        width: 100%;
    }
}
/* Rightside Navigation ------------------------------------*/
.header-rightside-nav {
    float: right;
}
    /* Login Register Link */
    .header-rightside-nav .header-btn-link {
        border-right: 1px solid #eeeeee;
        padding: 21px 30px 20px 0px;
        display: inline-block;
        vertical-align: top;
        float: left;
    }

        .header-rightside-nav .header-btn-link a {
            font-size: 13px;
        }

            .header-rightside-nav .header-btn-link a:hover {
                text-decoration: underline;
            }

@media only screen and (max-width: 420px) {
    .header-rightside-nav {
        float: none;
        width: 100% !important;
        display: block;
        clear: both;
        text-align: center;
    }
}
/* Sidebar Icon Navigation(Search, Whishlist, Cart) */
.sidebar-icon-nav {
    display: inline-block;
    font-size: 18px;
    margin-right: -12px;
    margin-left: 15px;
}

    .sidebar-icon-nav ul li {
        margin: 28px 11px 0px;
    }

        .sidebar-icon-nav ul li a {
            position: relative;
        }

        .sidebar-icon-nav ul li .countTip {
            border-radius: 50px;
            -moz-border-radius: 50px;
            -webkit-border-radius: 50px;
            width: 18px;
            height: 18px;
            display: block;
            position: absolute;
            background: #34b79d;
            right: -10px;
            top: -8px;
            text-align: center;
            line-height: 18px;
            font-size: 10px;
            color: #fff;
        }

    .sidebar-icon-nav .cart-icon, .sidebar-icon-nav .cart-title {
        display: inline-block;
    }

    .sidebar-icon-nav .cart-title {
        font-size: 13px;
    }

#mega-menu-wrap-top, #mega-menu-wrap-top #mega-menu-top, #mega-menu-wrap-top #mega-menu-top ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top li.mega-menu-item, #mega-menu-wrap-top #mega-menu-top a.mega-menu-link {
   /* transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;*/
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
    -webkit-border-radius: 0 0 0 0;
    -moz-border-radius: 0 0 0 0;
    -ms-border-radius: 0 0 0 0;
    -o-border-radius: 0 0 0 0;
    border-radius: 0 0 0 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    background: none;
    border: 0;
    bottom: auto;
    box-sizing: border-box;
    clip: auto;
    color: #333;
    display: block;
    float: none;
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    height: auto;
    left: auto;
    line-height: inherit;
    list-style-type: none;
    margin: 0;
    min-height: 0;
    opacity: 1;
    outline: none;
    overflow: visible;
    padding: 0;
    position: inherit;
    right: auto;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    top: auto;
    vertical-align: baseline;
    visibility: inherit;
    width: auto;
}

    #mega-menu-wrap-top:before, #mega-menu-wrap-top #mega-menu-top:before, #mega-menu-wrap-top #mega-menu-top ul.mega-sub-menu:before, #mega-menu-wrap-top #mega-menu-top li.mega-menu-item:before, #mega-menu-wrap-top #mega-menu-top a.mega-menu-link:before, #mega-menu-wrap-top:after, #mega-menu-wrap-top #mega-menu-top:after, #mega-menu-wrap-top #mega-menu-top ul.mega-sub-menu:after, #mega-menu-wrap-top #mega-menu-top li.mega-menu-item:after, #mega-menu-wrap-top #mega-menu-top a.mega-menu-link:after {
        display: none;
    }

#mega-menu-wrap-top {
    background: none;
    -webkit-border-radius: 0px 0px 0px 0px;
    -moz-border-radius: 0px 0px 0px 0px;
    -ms-border-radius: 0px 0px 0px 0px;
    -o-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
}

    #mega-menu-wrap-top #mega-menu-top {
        visibility: visible;
        text-align: left;
        padding: 0px 0px 0px 0px;
    }

        #mega-menu-wrap-top #mega-menu-top a.mega-menu-link {
            cursor: pointer;
            display: inline;
        }

            #mega-menu-wrap-top #mega-menu-top a.mega-menu-link .mega-description-group {
                vertical-align: middle;
                display: inline-block;
            }

                #mega-menu-wrap-top #mega-menu-top a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-top #mega-menu-top a.mega-menu-link .mega-description-group .mega-menu-description {
                    line-height: 1.5;
                    display: block;
                }

                #mega-menu-wrap-top #mega-menu-top a.mega-menu-link .mega-description-group .mega-menu-description {
                    font-style: italic;
                    font-size: 0.8em;
                    text-transform: none;
                    font-weight: normal;
                }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item.mega-icon-top > a.mega-menu-link {
            display: table-cell;
            vertical-align: middle;
            line-height: initial;
        }

            #mega-menu-wrap-top #mega-menu-top li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
                display: block;
                margin: 0 0 6px 0;
                text-align: center;
            }

            #mega-menu-wrap-top #mega-menu-top li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
                display: inline-block;
            }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
            float: right;
            margin: 0 0 0 6px;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-animating > ul.mega-sub-menu {
            pointer-events: none;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-top #mega-menu-top li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
            cursor: default;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
            cursor: pointer;
        }

        #mega-menu-wrap-top #mega-menu-top.mega-keyboard-navigation + .mega-menu-toggle.mega-menu-open, #mega-menu-wrap-top #mega-menu-top.mega-keyboard-navigation a:focus, #mega-menu-wrap-top #mega-menu-top.mega-keyboard-navigation input:focus {
            -webkit-box-shadow: inset 0px 0px 3px 1px #0ff;
            -moz-box-shadow: inset 0px 0px 3px 1px #0ff;
            -ms-box-shadow: inset 0px 0px 3px 1px #0ff;
            -o-box-shadow: inset 0px 0px 3px 1px #0ff;
            box-shadow: inset 0px 0px 3px 1px #0ff;
        }

        #mega-menu-wrap-top #mega-menu-top p {
            margin-bottom: 10px;
        }

        #mega-menu-wrap-top #mega-menu-top input, #mega-menu-wrap-top #mega-menu-top img {
            max-width: 100%;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item > ul.mega-sub-menu {
            display: block;
            visibility: hidden;
            opacity: 1;
        }

        #mega-menu-wrap-top #mega-menu-top[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
            opacity: 0;
           /* transition-duration: 0.3s;
            transition-timing-function: ease;
            transition-property: opacity, visibility;*/
			-webkit-transition-duration: 0s;
			-moz-transition-duration: 0s;
			-o-transition-duration: 0s;
			transition-duration: 0s;
        }

        #mega-menu-wrap-top #mega-menu-top[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
            opacity: 1;
        }

        #mega-menu-wrap-top #mega-menu-top[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
            opacity: 0;
            margin-top: 0;
            transition-duration: 0.3s;
            transition-timing-function: ease;
            transition-property: opacity, margin-top, visibility;
			transform: translate(0, 0);			
        }
		

        #mega-menu-wrap-top #mega-menu-top[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
            opacity: 1;
            margin-top: 0;
        }

        #mega-menu-wrap-top #mega-menu-top[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
            margin-top: 0;
            transition-duration: 0.3s;
            transition-timing-function: ease;
            transition-property: margin-top, visibility;
        }

        #mega-menu-wrap-top #mega-menu-top[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
            margin-top: 0;
        }

        #mega-menu-wrap-top #mega-menu-top.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-top #mega-menu-top li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
            visibility: visible;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
            visibility: inherit;
            opacity: 1;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item a[class^='dashicons']:before {
            font-family: dashicons;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item a.mega-menu-link:before {
            display: inline-block;
            font: inherit;
            font-family: dashicons;
            position: static;
            margin: 0 6px 0 0px;
            vertical-align: top;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            color: inherit;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
            margin: 0;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
            margin: 0 6px 0 0;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
            -webkit-border-radius: 0px 0px 0 0;
            -moz-border-radius: 0px 0px 0 0;
            -ms-border-radius: 0px 0px 0 0;
            -o-border-radius: 0px 0px 0 0;
            border-radius: 0px 0px 0 0;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-align-bottom-right > ul.mega-sub-menu {
            right: 0;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
            -webkit-border-radius: 0px 0px 0 0;
            -moz-border-radius: 0px 0px 0 0;
            -ms-border-radius: 0px 0px 0 0;
            -o-border-radius: 0px 0px 0 0;
            border-radius: 0px 0px 0 0;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item {
            position: inherit;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item {
            margin: 0 0px 0 0;
            display: inline-block;
            height: auto;
            vertical-align: middle;
        }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-item-align-right {
                float: right;
            }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item > a.mega-menu-link:focus {
                background: none;
                color: #34b79d;
                font-weight: normal;
                text-decoration: none;
                border: none;
            }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
                background: none;
                color: #34b79d;
                font-weight: normal;
                text-decoration: none;
                border: none;
            }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item > a.mega-menu-link {
                border: none;
                outline: none;
                text-decoration: none;
                padding: 29px 14px;
                line-height: 24px;
                font-weight: 500;
                height: inherit;
                vertical-align: baseline;
                text-align: left;
                width: auto;
                display: block;
                color: #333;
                text-transform: uppercase;
                text-decoration: none;
                background: rgba(0, 0, 0, 0);
                -webkit-border-radius: 0px 0px 0px 0px;
                -moz-border-radius: 0px 0px 0px 0px;
                -ms-border-radius: 0px 0px 0px 0px;
                -o-border-radius: 0px 0px 0px 0px;
                border-radius: 0px 0px 0px 0px;
                font-family: "Montserrat", sans-serif;
                font-size: 13px;
                position: relative;
            }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu {
            z-index: 99;
            -webkit-border-radius: 0px 0px 0px 0px;
            -moz-border-radius: 0px 0px 0px 0px;
            -ms-border-radius: 0px 0px 0px 0px;
            -o-border-radius: 0px 0px 0px 0px;
            border-radius: 0px 0px 0px 0px;
            background: #ffffff;
            padding: 30px 0px 30px 0px;
            position: absolute;
            width: 100%;
            border-top: 1px solid #eee;
            border-left: 0px solid #fff;
            border-right: 0px solid #fff;
            border-bottom: 0px solid #fff;
            left: 0;
        }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
                margin: 5px 0;
            }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
                clear: both;
            }

                #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
                    margin-left: 10px;
                }

                    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
                        margin-left: 20px;
                    }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
                color: #666;
                font-family: inherit;
                font-size: 14px;
                display: block;
                float: left;
                clear: none;
                padding: 15px 15px 15px 15px;
                vertical-align: top;
            }

                #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
                    clear: left;
                }

                #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
                    color: #555;
                    font-family: inherit;
                    font-size: 16px;
                    text-transform: uppercase;
                    text-decoration: none;
                    font-weight: bold;
                    margin: 0px 0px 0px 0px;
                    padding: 0px 0px 5px 0px;
                    vertical-align: top;
                    display: block;
                    border-top: 0px solid #555;
                    border-left: 0px solid #555;
                    border-right: 0px solid #555;
                    border-bottom: 0px solid #555;
                }

                #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
                    color: #555;
                    font-family: inherit;
                    font-size: 16px;
                    text-transform: uppercase;
                    text-decoration: none;
                    font-weight: bold;
                    margin: 0px 0px 0px 0px;
                    padding: 0px 0px 0px 0px;
                    vertical-align: top;
                    display: block;
                    border-top: 0px solid #555;
                    border-left: 0px solid #555;
                    border-right: 0px solid #555;
                    border-bottom: 0px solid #555;
                }

                    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
                        color: #555;
                        font-weight: bold;
                        text-decoration: none;
                        background: rgba(0, 0, 0, 0);
                    }

                #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
                    color: #666;
                    font-family: inherit;
                    font-size: 14px;
                    text-transform: none;
                    text-decoration: none;
                    font-weight: normal;
                    margin: 0;
                    padding: 0px 0px 0px 0px;
                    vertical-align: top;
                    display: block;
                }

                    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
                        color: #666;
                        font-weight: normal;
                        text-decoration: none;
                        background: rgba(0, 0, 0, 0);
                    }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
            color: #666;
            font-family: inherit;
            font-size: 14px;
            text-transform: none;
            text-decoration: none;
            font-weight: normal;
            margin: 0;
            border: 0;
            padding: 0px 0px 0px 0px;
            vertical-align: top;
            display: block;
        }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
                color: #666;
                font-weight: normal;
                text-decoration: none;
                background: rgba(0, 0, 0, 0);
            }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu {
            z-index: 99;
            position: absolute;
            width: 230px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #fff;
            border-left: 1px solid #fff;
            border-right: 1px solid #fff;
            padding: 20px 0;
            background: #fff;
        }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
                display: block;
                background: none;
                color: #333;
                line-height: inherit;
                text-decoration: none;
                text-transform: none;
                vertical-align: baseline;
                font-family: "Open Sans", sans-serif;
                font-weight: 400;
                font-size: 14px;
                padding-top: 3px;
                padding-left: 20px;
                padding-right: 20px;
                padding-bottom: 3px;
            }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
                border-top-left-radius: 0px;
                border-top-right-radius: 0px;
            }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
                border-bottom-right-radius: 0px;
                border-bottom-left-radius: 0px;
            }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
                background: none;
                font-weight: normal;
                text-decoration: none;
                color: #34b79d;
            }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
                position: absolute;
                left: 100%;
                top: 0;
            }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item-has-children > a.mega-menu-link:after {
            display: none;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link:after {
            display: none;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link:after {
            content: '\f139';
            float: right;
            margin: 0;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
            text-align: right;
        }

            #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
                float: right;
                margin: 0 0 0 6px;
            }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a.mega-menu-link:after {
            content: '\f141';
            float: left;
            margin: 0;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
            left: -100%;
            top: 0;
        }

        #mega-menu-wrap-top #mega-menu-top li[class^='mega-lang-item'] > a.mega-menu-link > img {
            display: inline;
        }

        #mega-menu-wrap-top #mega-menu-top a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-top #mega-menu-top a.mega-menu-link > img.iclflag {
            display: inline;
            margin-right: 8px;
        }

    #mega-menu-wrap-top .mega-menu-toggle {
        display: none;
        z-index: 1;
        cursor: pointer;
        background: #f0f0f0;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        line-height: 40px;
        height: 40px;
        text-align: center;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        outline: none;
        color: #333;
        padding: 0 15px;
        font-family: 'Montserrat', sans-serif;
        margin-bottom: 20px;
    }

        #mega-menu-wrap-top .mega-menu-toggle.mega-menu-open {
            margin-bottom: 0px;
        }

        #mega-menu-wrap-top .mega-menu-toggle .mega-toggle-block {
            text-align: left;
            display: inline-block;
            height: 100%;
        }

        #mega-menu-wrap-top .mega-menu-toggle .mega-toggle-block-left {
            float: left;
            margin-left: 0;
            width: 100%;
        }

        #mega-menu-wrap-top .mega-menu-toggle .mega-toggle-block-center {
            float: none;
            margin-left: 3px;
            margin-right: 3px;
        }

        #mega-menu-wrap-top .mega-menu-toggle .mega-toggle-block-right {
            float: right;
            margin-right: 6px;
        }

    #mega-menu-wrap-top .mega-menu-toggle {
        /** Push menu onto new line **/
    }

        #mega-menu-wrap-top .mega-menu-toggle .mega-toggle-block-1:before {
            content: "\f107";
            font-family: "FontAwesome";
            font-size: 20px;
            padding: 0;
            float: right;
            position: relative;
            top: 9px;
            color: #333;
            -webkit-transform: translateY(-25%);
            -ms-transform: translateY(-25%);
            transform: translateY(-25%);
        }

        #mega-menu-wrap-top .mega-menu-toggle.mega-menu-open .mega-toggle-block-1:before {
            content: "\f107";
        }

        #mega-menu-wrap-top .mega-menu-toggle .mega-toggle-block-1:after {
            content: ' ';
            color: #333;
            float: left;
        }

        #mega-menu-wrap-top .mega-menu-toggle.mega-menu-open .mega-toggle-block-1:after {
            content: ' ';
        }

        #mega-menu-wrap-top .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label {
            color: #333;
        }

#mega-menu-wrap-top {
}

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item.mega-toggle-on > ul.mega-sub-menu:after, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout.mega-menu-item.mega-toggle-on > ul.mega-sub-menu:after {
        background: rgba(0, 0, 0, 0.08);
        width: 100%;
        bottom: -4px;
        left: 0;
        height: 4px;
        position: absolute;
        content: "";
        opacity: 1;
        visibility: visible;
        display: inline-block;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item.menu-dropdown-icon > ul.mega-sub-menu .row > li.mega-menu-item-has-children > a {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 600;
        color: #333;
        margin-top: 0px;
        margin-bottom: 15px;
        display: block;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item.menu-dropdown-icon > ul.mega-sub-menu .row > li.mega-menu-item-has-children {
        padding-left: 15px;
        padding-right: 15px;
    }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item.menu-dropdown-icon > ul.mega-sub-menu .row > li.mega-menu-item-has-children li a {
            font-family: "Open Sans", sans-serif;
            font-weight: 400;
            font-size: 14px;
            padding-top: 2px;
            padding-left: 0px;
            padding-right: 0px;
            padding-bottom: 2px;
            display: block;
        }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item.menu-dropdown-icon > ul.mega-sub-menu .row > li.mega-menu-item-has-children li a:hover {
                color: #34b79d;
            }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
        float: left;
        width: 100%;
        position: relative; /* border-bottom: 1px solid #eee;*/
    }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child {
            border-bottom: none;
        }

@media only screen and (min-width: 992px) {
    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-item-align-right {
        margin: 0 0 0 0px;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item {
        position: static;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-item-align-float-left {
        float: left;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
        line-height: inherit;
        display: table-cell;
        vertical-align: middle;
    }

    .fixed #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item > a.mega-menu-link {
        padding-top: 21px;
        padding-bottom: 20px;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
        width: 100%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
        width: 50%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
        width: 100%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
        width: 33.33333%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
        width: 66.66667%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
        width: 100%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
        width: 25%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
        width: 50%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
        width: 75%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
        width: 100%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
        width: 20%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
        width: 40%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
        width: 60%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
        width: 80%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
        width: 100%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
        width: 16.66667%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
        width: 33.33333%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
        width: 50%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
        width: 66.66667%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
        width: 83.33333%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
        width: 100%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
        width: 14.28571%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
        width: 28.57143%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
        width: 42.85714%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
        width: 57.14286%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
        width: 71.42857%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
        width: 85.71429%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
        width: 100%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
        width: 12.5%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
        width: 25%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
        width: 37.5%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
        width: 50%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
        width: 62.5%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
        width: 75%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
        width: 87.5%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
        width: 100%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
        width: 11.11111%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
        width: 22.22222%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
        width: 33.33333%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
        width: 44.44444%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
        width: 55.55556%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
        width: 66.66667%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
        width: 77.77778%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
        width: 88.88889%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
        width: 100%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-dropdown-right ul.mega-sub-menu {
        right: 100%;
        left: inherit;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
        -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
    }

    #mega-menu-wrap-top #mega-menu-top li.mega-menu-item.mega-hide-on-desktop, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
        display: none;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children:before {
        content: "\f105";
        font-family: "FontAwesome";
        color: #333333;
        font-size: 13px;
        padding: 0;
        float: right;
        position: relative;
        top: 10px;
        right: 10px;
        -webkit-transform: translateY(-25%);
        -ms-transform: translateY(-25%);
        transform: translateY(-25%);
        display: none;
        opacity: 1;
        visibility: hidden;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children.dropdown-right:before {
        content: "\f104";
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout.mega-toggle-on ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children:before {
        display: block;
        visibility: visible;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item.mega-toggle-on .dropworn-arrow, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout.mega-menu-item.mega-toggle-on .dropworn-arrow {
        display: block;
    }
}

@media only screen and (max-width: 991px) {
    #mega-menu-wrap-top #mega-menu-top {
        padding: 0;
    }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
            display: block;
            line-height: 40px;
        }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
                display: inline-block;
                margin: 0 6px 0 0;
                text-align: left;
            }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item > a.mega-menu-link {
            padding: 8px 15px;
            display: block;
            border: 1px solid #eee;
            border-radius: 3px;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            font-weight: 400;
            font-size: 13px;
        }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item > a.mega-menu-link:focus {
                border: none 0;
            }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
            border: none 0;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
            display: none;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item {
            display: list-item;
            margin: 0;
            background: #fff;
            clear: both;
            border-top: 1px solid #eee;
        }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item:last-child {
                border-bottom: 1px solid #eee;
            }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item.mega-item-align-right {
                float: none;
            }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item > a.mega-menu-link {
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                -ms-border-radius: 0;
                -o-border-radius: 0;
                border-radius: 0;
                border: 0 none;
                margin: 0;
                line-height: inherit;
                height: inherit;
                padding: 8px 0px;
                display: block;
            }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu {
            float: left;
            position: static;
            width: 100%;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu {
            border: 0;
            padding: 10px;
            -webkit-border-radius: 0 0 0 0;
            -moz-border-radius: 0 0 0 0;
            -ms-border-radius: 0 0 0 0;
            -o-border-radius: 0 0 0 0;
            border-radius: 0 0 0 0;
        }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
                width: 50%;
            }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li:nth-child(odd) {
                clear: left;
            }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu {
            float: left;
            position: static;
            width: 100%;
            padding: 0;
            border: 0;
        }

            #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
                clear: both;
            }

                #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
                    border-top-left-radius: 0;
                    border-top-right-radius: 0;
                }

                #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
                    border-bottom-right-radius: 0;
                    border-bottom-left-radius: 0;
                }

                #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
                    position: static;
                    left: 0;
                    width: 100%;
                    padding-left: 15px;
                    padding-bottom: 0;
                }

                    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
                        padding-left: 0;
                    }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item-has-children > a.mega-menu-link:after {
            content: '\f140';
            display: inline-block;
            font-family: dashicons;
            margin: 0 0 0 6px;
            vertical-align: top;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-transform: rotate(0);
            -moz-transform: rotate(0);
            -ms-transform: rotate(0);
            -o-transform: rotate(0);
            transform: rotate(0);
            color: inherit;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-menu-item-has-children a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout li.mega-menu-item-has-children a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item-has-children a.mega-menu-link:after {
            /*float: right;*/
            display: none;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link:after {
            content: '\f142';
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link:after, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link:after {
            display: none;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link:after {
            content: '\f140';
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
            text-align: left;
        }

            #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
                float: left;
                margin: 0 6px 0 0;
            }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a.mega-menu-link:after {
            content: '\f140';
            float: right;
        }

        #mega-menu-wrap-top #mega-menu-top li.mega-menu-item.mega-hide-on-mobile, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
            display: none;
        }

    #mega-menu-wrap-top .mega-menu-toggle {
        display: block;
    }

        #mega-menu-wrap-top .mega-menu-toggle + #mega-menu-top {
            display: none;
        }

            #mega-menu-wrap-top .mega-menu-toggle + #mega-menu-top li.mega-menu-item > ul.mega-sub-menu {
                display: none;
                visibility: visible;
                opacity: 1;
            }

            #mega-menu-wrap-top .mega-menu-toggle + #mega-menu-top li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-top .mega-menu-toggle + #mega-menu-top li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
                display: block;
            }

        #mega-menu-wrap-top .mega-menu-toggle.mega-menu-open + #mega-menu-top {
            display: block;
        }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item-has-children > a.mega-menu-link:before {
        content: "\f107";
        font-family: "FontAwesome";
        display: none;
        cursor: pointer;
        float: right;
        font-size: 16px;
        padding: 0;
        margin-top: 0px;
        margin-right: 0px;
        color: #999;
        -webkit-transform: translateY(-25%);
        -ms-transform: translateY(-25%);
        transform: translateY(-25%);
        background: #f6f6f6;
        text-align: center;
        line-height: 26px;
        height: 26px;
        width: 26px;
        position: absolute;
        right: 0;
        top: 13px;
        border: 1px solid #eee;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item {
        position: relative;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item-has-children > a.mega-menu-link:before {
        display: inline-block;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item-has-children ul.normal-sub li.mega-menu-item-has-children > a:before {
        content: "\f107";
        font-family: "FontAwesome";
        display: none;
        cursor: pointer;
        float: right;
        font-size: 16px;
        padding: 0;
        margin-top: 6px;
        margin-right: 0px;
        color: #999;
        -webkit-transform: translateY(-25%);
        -ms-transform: translateY(-25%);
        transform: translateY(-25%);
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item-has-children ul.normal-sub li.mega-menu-item-has-children > a:before {
        display: inline-block;
    }

    #mega-menu-wrap-top .mega-menu-toggle + #mega-menu-top li.mega-menu-item > ul.mega-sub-menu {
        float: left;
        position: static;
        width: 100%;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu .row > li {
        padding-left: 15px;
        padding-right: 15px;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item-has-children .row > li > a.mega-menu-link {
        color: #333333;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        /*margin-bottom: 15px;*/
        margin-top: 0;
        text-transform: uppercase;
        font-size: 14px;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout > ul.mega-sub-menu {
        padding: 0;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu {
        display: none;
        position: absolute;
        width: 100%;
        z-index: 99;
        background: #fff !important;
        left: 0;
        border-top: none 0 !important;
        padding: 0 !important;
    }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu:after {
            background: rgba(0, 0, 0, 0.08);
            width: 100%;
            bottom: -4px;
            left: 0;
            height: 4px;
            position: inherit;
            content: "";
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu .mega-sub-menu {
            margin-bottom: 20px;
            overflow: hidden;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu ul li > a {
            font-family: "Open Sans", sans-serif;
            font-weight: 400;
            font-size: 14px;
            padding-top: 2px;
            padding-left: 0px;
            padding-right: 0px;
            padding-bottom: 2px;
            display: inline-block;
            transition: all 0.2s ease 0s;
            -moz-transition: all 0.2s ease 0s;
            -o-transition: all 0.2s ease 0s;
            -webkit-transition: all 0.2s ease 0s;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu ul > li:hover > a {
            color: inherit;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu ul > li > a:hover {
            padding-left: 5px;
            color: #34b79d;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu .row > li {
            padding-left: 15px;
            padding-right: 15px;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu ul > li {
            width: 25%;
            min-height: 1px;
            text-align: left;
            float: left;
        }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu > ul.mega-sub-menu ul > li {
            width: 100%;
        }

    #mega-menu-wrap-top .mega-menu-toggle + #mega-menu-top li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-top .mega-menu-toggle + #mega-menu-top li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
        display: block;
        margin-bottom: 0;
        padding-left: 15px;
    }

    #mega-menu-wrap-top .mega-menu-toggle.mega-menu-open + #mega-menu-top {
        display: block;
		background:#fff;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children:before {
        content: "\f107";
        font-family: "FontAwesome";
        color: #999;
        font-size: 14px;
        padding: 0;
        float: right;
        position: relative;
        top: 13px;
        right: 0;
        -webkit-transform: translateY(-25%);
        -ms-transform: translateY(-25%);
        transform: translateY(-25%);
        display: block;
        opacity: 1;
        visibility: visible;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children li:first-child {
        /* border-top: 1px solid #eee;*/
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
        padding: 8px 0;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item.mega-toggle-on .dropworn-arrow {
        display: none;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item.menu-dropdown-icon > ul.mega-sub-menu .row > li.mega-menu-item-has-children > a {
        margin-bottom: 0;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item.menu-dropdown-icon > ul.mega-sub-menu .row > li.mega-menu-item-has-children {
        width: 100%;
    }

        #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item.menu-dropdown-icon > ul.mega-sub-menu .row > li.mega-menu-item-has-children li a {
            padding-top: 8px;
            padding-bottom: 8px;
        }

    #mega-menu-wrap-top #mega-menu-top > li.mega-menu-megamenu.mega-menu-item.mega-toggle-on > ul.mega-sub-menu:after, #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout.mega-menu-item.mega-toggle-on > ul.mega-sub-menu:after {
        display: none;
    }
}
#mega-menu-wrap-top #mega-menu-top li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator{
	display:none;
}
/* Header Mix ------------------------------------*/
body.boxed {
    max-width: 1140px;
    margin: 0 auto;
}

.container.fullwidth {
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    .container.fullwidth > .row > .col-md-12 {
        padding: 0;
    }

input, input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], select {
    padding-top: 13px;
    padding-bottom: 13px;
    height: 44px;
}

    input[type="checkbox"], input[type="radio"] {
        padding: 0;
        width: 15px;
        height: 15px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

    input[type="radio"] {
        appearance: radio;
        -webkit-appearance: radio;
    }

    input[type="checkbox"] {
        appearance: checkbox;
        -webkit-appearance: checkbox;
    }

.wysija-paragraph {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.nlpopup .widget_wysija_cont input[type="text"] {
    width: 225px;
    color: #777;
}

.widget_wysija_cont .wysija-submit {
    display: inline-block;
    margin: 0;
    background-color: #34b79d;
    border: none;
    color: #fff;
    padding: 0 35px;
    text-transform: uppercase;
}

    .widget_wysija_cont .wysija-submit:hover {
        background-color: #4ac2aa;
    }

.search-overlay-menu .search-form .search-submit {    
	background-image: url("../images/mix.png");
	background-position: 0 -302px;
	background-repeat: no-repeat;
    text-indent: -999em;
    border: none;
    height: 120px;
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 35px;
    color: #c6c6c6;
}

.search-overlay-menu .search-content .search-form .search-submit {
    background-image: none;
    text-indent: inherit;
    height: inherit;
    width: inherit;
    position: inherit;
    border: 1px solid;
}

.widget_search .search-form .search-submit {
    bottom: 0;
    padding: 10px 15px;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    font-size: 18px;
    background: #34b79d;
    border: transparent;
    line-height: 0;
    color: #fff;
}

    .widget_search .search-form .search-submit:hover {
        background: #4ac2aa;
    }

.widget_search .search-field {
    width: 100%;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.widget_search .search-form button.search-submit .screen-reader-text {
    display: none;
}

.search-no-results .search-form {
    max-width: 350px;
    margin: 0;
}

.error404 .search-form {
    max-width: 350px;
    margin: 0 auto;
}

.error404 .search-content .search-field, .search-no-results .search-field {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    width: 100%;
    padding-right: 50px;
}

.error404 .search-content button, .search-no-results button.search-submit {
    padding: 10px 15px 12px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    background: #34b79d;
    border: transparent;
    line-height: 1.2;
    color: #fff;
}

    .error404 .search-content button:hover, .search-no-results button.search-submit:hover {
        background: #4ac2aa;
    }

.cart-contents-data {
    font-size: 13px;
}

del .woocommerce-Price-amount {
    color: #999;
    font-weight: 400;
    font-size: 16px;
    margin-right: 5px;
    font-style: italic;
    text-decoration: line-through;
}

.woocommerce-Price-amount {
    display: inline-block;
    font-weight: 600;
}

.sidebar-icon-nav .cart-icon {
    font-size: 18px;
    padding-right: 3px;
}

.sidebar-icon-nav .woocommerce-Price-amount:before {
    content: "/";
    padding: 0 3px 0 0;
    font-weight: normal;
}

.sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li.empty {
    font-size: 13px;
    color: #777;
    font-weight: 400;
    border: none;
}
/* Navigation Top ------------------------------------*/

.navigation-top {
    display: block;
    float: left;
    position: static;
    text-transform: uppercase;
}

    .navigation-top a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 13px;
        padding: 29px 14px;
        display: block;
    }

    .navigation-top .current-menu-item > a, .navigation-top .current_page_item > a {
        color: #34b79d;
    }

.main-navigation ul {
    background: #fff;
    list-style: none;
    margin: 0;
    padding: 0;
}
    /* Hide the menu on small screens when JavaScript is available.
 * It only works with JavaScript.
 */

    .js .main-navigation ul, .main-navigation .menu-item-has-children > a > .icon, .main-navigation .page_item_has_children > a > .icon, .main-navigation ul a > .icon {
        display: none;
    }

.js .main-navigation.toggled-on > div > ul {
    display: block;
}

.main-navigation ul ul.toggled-on {
    display: block;
}

.main-navigation ul ul a {
    letter-spacing: 0;
    position: relative;
    text-transform: none;
}

.main-navigation li {
    border-bottom: 1px solid #eee;
    position: relative;
}

    .main-navigation li li, .main-navigation li:last-child {
        border: 0;
    }

.main-navigation a {
    display: block;
}

    .main-navigation a:hover {
        color: #34b79d;
    }
/* Menu toggle */

.menu-toggle {
    background: #f0f0f0;
    color: #333;
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    display: none;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    width: 100%;
    border: none;
}

    .menu-toggle:hover {
        color: #34b79d;
    }
/* Display the menu toggle when JavaScript is available. */

.js .menu-toggle {
    display: block;
}

.main-navigation.toggled-on ul.nav-menu {
    display: block;
}

.menu-toggle .icon {
    margin-right: 0.5em;
    top: -2px;
}

.toggled-on .menu-toggle .icon-bars, .menu-toggle .icon-close {
    display: none;
}

.toggled-on .menu-toggle .icon-close {
    display: inline-block;
}
/* Dropdown Toggle */

.dropdown-toggle {
    background-color: #f6f6f6;
    border: 1px solid #eee;
    color: #999;
    display: block;
    font-size: 16px;
    height: 26px;
    width: 26px;
    line-height: 1;
    right: 7px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    text-shadow: none;
    top: 7px;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}

    .dropdown-toggle:hover, .dropdown-toggle:focus {
    }

    .dropdown-toggle:focus {
        outline: none;
    }

    .dropdown-toggle.toggled-on .icon {
        -ms-transform: rotate(-180deg); /* IE 9 */
        -webkit-transform: rotate(-180deg); /* Chrome, Safari, Opera */
        transform: rotate(-180deg);
    }

    .dropdown-toggle:after {
        display: none;
    }
/* Scroll down arrow */

.site-header .menu-scroll-down {
    display: none;
}
/*Mobile style's*/
@media only screen and (max-width: 991px) {
    .main-navigation ul ul {
        padding: 0;
        position: relative;
        width: 100%;
        z-index: auto;
        left: 0;
    }

    .navigation-top {
        display: block;
        float: none;
        position: relative;
        text-transform: uppercase;
        clear: both;
        z-index: 99;
    }

        .navigation-top ul > li > a {
            padding: 8px 15px;
            display: block;            
        }

    .main-navigation ul ul a {
        border: none;
    }

    .main-navigation ul > li.menu-item-has-children ul.sub-menu li.menu-item-has-children a {
        font-family: "Montserrat", sans-serif;
        font-weight: normal;
        color: #333;
        margin-top: 0px;
        margin-bottom: 0;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .main-navigation ul > li.menu-item-has-children ul.sub-menu li a {
        font-size: 14px;
        text-transform: none;
        font-family: "Open Sans", sans-serif;
        font-weight: normal;
        color: #333;
        margin-top: 0px;
        margin-bottom: 0;
        padding-top: 8px;
        padding-bottom: 8px;
    }

        .main-navigation ul > li.menu-item-has-children ul.sub-menu li a:hover {
            color: #34b79d;
        }

    .main-navigation ul > li.menu-item-has-children ul.sub-menu ul.sub-menu li a {
        font-size: 14px;
        text-transform: none;
        font-family: "Open Sans", sans-serif;
        font-weight: normal;
        color: #333;
        margin-top: 0px;
        margin-bottom: 0;
        padding-bottom: 8px;
        padding-top: 8px;
    }

    .main-navigation ul > li.menu-item-has-children ul.sub-menu ul.sub-menu li:last-child a {
    }

    .main-navigation ul > li.menu-item-has-children ul.sub-menu ul.sub-menu li a:hover {
        color: #34b79d;
    }

    .js .main-navigation ul ul {
        position: relative;
        width: 100%;
        z-index: auto;
        left: 0;
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 15px;
    }

        .js .main-navigation ul ul ul, .js .main-navigation ul ul ul ul {
            border: none;
            padding: 0 0 0 15px;
            margin-bottom: 0;
        }

    .main-navigation ul ul .dropdown-toggle {
        display: none;
    }

    .navigation-top .menu-main-menu-container > ul {
        display: none;
        position: absolute;
        top: 100%;
        width: 100%;
    }

        .navigation-top .menu-main-menu-container > ul > li {
            display: block;
            margin-top: 0;
            background: #fff;
            border-bottom: none 0;
            border-top: 1px solid #eee;
        }

            .navigation-top .menu-main-menu-container > ul > li:last-child {
                border-bottom: 1px solid #eee;
            }

    .navigation-top .menu-main-menu-container .dropdown-toggle:after {
        display: none;
    }

    .js .main-navigation ul ul {
        display: none;
    }

        .js .main-navigation ul ul.toggled-on, .js .main-navigation ul ul.toggled-on ul {
            display: block;
        }
}

@media screen and (min-width: 992px) {
    /* Main Navigation */

    .js .menu-toggle, .js .dropdown-toggle {
        display: none;
    }

    .main-navigation {
    }

    .js .main-navigation ul, .js .main-navigation ul ul, .js .main-navigation > div > ul {
        display: block;
    }

    .main-navigation ul {
        background: transparent;
        padding: 0;
    }

    .main-navigation > div > ul {
        border: 0;
        margin-bottom: 0;
        padding: 0;
    }

    .main-navigation li {
        border: 0;
        display: inline-block;
    }

        .main-navigation li li {
            display: block;
        }

    .main-navigation a {
    }

    .fixed .navigation-top ul.menu > li > a {
        padding-top: 21px;
        padding-bottom: 20px;
    }

    .main-navigation ul ul {
        background: #fff;
        border: 1px solid #eeeeee;
        left: -999em;
        padding: 0;
        position: absolute;
        top: 100%;
        z-index: 99999;
    }

    .main-navigation ul li.menu-item-has-children:before, .main-navigation ul li.menu-item-has-children:after, .main-navigation ul li.page_item_has_children:before, .main-navigation ul li.page_item_has_children:after {
        border-style: solid;
        border-width: 0 6px 6px;
        content: "";
        display: none;
        height: 0;
        position: absolute;
        right: 1em;
        bottom: -1px;
        width: 0;
        z-index: 100000;
    }

    .main-navigation ul li.menu-item-has-children.focus:before, .main-navigation ul li.menu-item-has-children:hover:before, .main-navigation ul li.menu-item-has-children.focus:after, .main-navigation ul li.menu-item-has-children:hover:after, .main-navigation ul li.page_item_has_children.focus:before, .main-navigation ul li.page_item_has_children:hover:before, .main-navigation ul li.page_item_has_children.focus:after, .main-navigation ul li.page_item_has_children:hover:after {
        display: block;
    }

    .main-navigation ul li.menu-item-has-children:before, .main-navigation ul li.page_item_has_children:before {
        border-color: transparent transparent #eeeeee;
        bottom: 0;
    }

    .main-navigation ul li.menu-item-has-children:after, .main-navigation ul li.page_item_has_children:after {
        border-color: transparent transparent #fff;
    }

    .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
        left: 100%;
        right: auto;
    }

    .main-navigation ul ul a {
        padding: 8px 15px;
        width: 15em;
    }

        .main-navigation ul ul a.widget_media_image {
            padding: 0;
            width: 100%;
        }

    .main-navigation li li {
        -webkit-transition: background-color 0.2s ease-in-out;
        transition: background-color 0.2s ease-in-out;
    }

        .main-navigation li li:hover, .main-navigation li li.focus {
            background: #34b79d;
        }

        .main-navigation li li a {
        }

            .main-navigation li li.focus > a, .main-navigation li li:focus > a, .main-navigation li li:hover > a, .main-navigation li li a:hover, .main-navigation li li a:focus, .main-navigation li li.current_page_item a:hover, .main-navigation li li.current-menu-item a:hover, .main-navigation li li.current_page_item a:focus, .main-navigation li li.current-menu-item a:focus {
                color: #fff;
            }

    .main-navigation ul li:hover > ul, .main-navigation ul li.focus > ul {
        left: 0.5em;
        right: auto;
    }

    .main-navigation .menu-item-has-children > a > .icon, .main-navigation .page_item_has_children > a > .icon {
        display: inline;
        left: 5px;
        position: relative;
        top: -1px;
    }

    .main-navigation ul ul .menu-item-has-children > a > .icon, .main-navigation ul ul .page_item_has_children > a > .icon {
        margin-top: -9px;
        left: auto;
        position: absolute;
        right: 0.8em;
        top: 50%;
        -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
        -ms-transform: rotate(-90deg); /* IE 9 */
        transform: rotate(-90deg);
    }

    .main-navigation ul ul ul {
        left: -999em;
        margin-top: -1px;
        top: 0;
    }

    .main-navigation ul ul li.menu-item-has-children.focus:before, .main-navigation ul ul li.menu-item-has-children:hover:before, .main-navigation ul ul li.menu-item-has-children.focus:after, .main-navigation ul ul li.menu-item-has-children:hover:after, .main-navigation ul ul li.page_item_has_children.focus:before, .main-navigation ul ul li.page_item_has_children:hover:before, .main-navigation ul ul li.page_item_has_children.focus:after, .main-navigation ul ul li.page_item_has_children:hover:after {
        display: none;
    }

    .site-header .site-navigation-fixed .menu-scroll-down {
        display: none;
    }
}
/*==========================================================================================================*/
/* PRODUCT SLIDER     ||---------------------------- */
/*==========================================================================================================*/
.panel-grid-cell h3.widget-title {
    display: none;
}

.product-slider > ul.products {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

    .product-slider > ul.products.owl-loaded {
        display: block;
    }

    .product-slider > ul.products.owl-hidden {
        opacity: 0;
    }

.product-slider .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.product-slider .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.product-slider .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.product-slider .owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.product-slider .owl-nav.disabled, .product-slider .owl-dots.disabled {
    display: none;
}

.product-slider .owl-prev, .product-slider .owl-next {
    background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
    border-radius: 50px;
    border: none;
    height: 40px;
    line-height: 38px;
    margin-top: -30px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 40px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px;
    font-size: 20px;
    transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
}

.product-slider .owl-prev, .product-slider .owl-next {
    margin-top: -60px !important;
}

.product-slider .owl-next {
    right: -50px;
}

.product-slider .owl-prev {
    left: -50px;
}

.product-slider:hover .owl-next {
    right: -20px;
}

.product-slider:hover .owl-prev {
    left: -20px;
}

@media only screen and (max-width: 1100px) {
    .product-slider > ul.products {
        overflow: hidden;
    }

    .product-slider:hover .owl-next {
        right: 5px;
    }

    .product-slider:hover .owl-prev {
        left: 5px;
    }
}

@media (max-width: 768px) {
    .product-filter li a {
        padding: 0px 15px;
    }
}

.product-slider:hover .owl-prev, .product-slider:hover .owl-next {
    opacity: 1;
}

.product-slider .owl-prev i, .product-slider .owl-next i {
    color: #fff;
}

.product-slider .owl-next i {
    margin-left: 2px;
}

.product-slider .owl-prev:hover, .product-slider .owl-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
}

.product-slider .owl-nav .owl-prev, .product-slider .owl-nav .owl-next, .product-slider .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.promo-box .info {
    font-weight: 400;
    font-size: 14px;
    color: #777;
}

.onsale {
    display: block;
    font-size: 10px;
    font-weight: 600;
    height: 35px;
    line-height: 34px;
    padding: 0;
    position: absolute;
    right: 10px;
    text-align: center;
    text-transform: uppercase;
    top: 10px;
    width: 35px;
    z-index: 2;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #f55151;
    color: #fff;
}
/****** TOP INTERESTING ******/
.yith-wcwl-add-to-wishlist {
    margin-top: 0px;
}

    .yith-wcwl-add-to-wishlist img.ajax-loading {
        display: none !important;
    }

.product-wishlist-button, .product-quick-view, .product-compare-button {
    display: block;
}

.product-wishlist-button, .product-quick-view {
    border-bottom: 1px solid #eeeeee;
}

    .product-item .product-button .yith-wcwl-add-button a, .product-quick-view a, .product-compare-button a, .yith-wcwl-wishlistexistsbrowse a, .yith-wcwl-wishlistaddedbrowse a {
        font-size: 0;
        display: block;
        margin: 0 auto;
        padding: 0px;
        height: 45px;
        width: 45px;
        line-height: 45px;
    }

.product-item .product-button a:before {
    color: #333333;
    font-family: "FontAwesome";
    font-size: 16px;
    margin: 0 auto;
    text-align: center;
}

.product-item .product-button a.add_to_wishlist:before {
    content: "\f004";
}

.product-item .product-button .product-quick-view a:before {
    content: "\f002";
}

.product-item .product-button .product-quick-view a.popup-active {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

    .product-item .product-button .product-quick-view a.popup-active:before {
        content: "\f1ce";
        color: #aaaaaa;
    }

.product-item .product-button a.added_to_cart:before {
    content: "\f290";
}

.product-item .product-button a.compare:before {
    content: "\f066";
}

.product-item .product-button .yith-wcwl-wishlistexistsbrowse a:before {
    content: "\f06e";
}

.product-item .product-button .yith-wcwl-wishlistaddedbrowse a:before {
    content: "\f06e";
}

.yith-wcwl-wishlistexistsbrowse span, .yith-wcwl-wishlistaddedbrowse span {
    display: none;
}

.countTip .blockUI.blockMsg.blockElement, .countTip .blockUI.blockOverlay {
    display: none !important;
}

.product-add-button a.added {
    display: none !important;
}

.product-item .product-button {
}

.product-button-inner {
    position: relative;
    display: table;
    text-align: center;
    background: #ffffff none repeat scroll 0 0;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.08);
}

.product-button .product-button-inner .clear {
    display: none;
}

.product-item .product-item-inner .add-to-link {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.product-item:hover .product-item-inner .add-to-link {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.woocommerce ul.products li.product .add-to-link a {
    margin: 0;
    text-align: center;
    width: 100%;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    padding-left: 15px;
    padding-right: 15px;
	background-color:#333;
	padding-top: 15px;
	padding-bottom: 15px;
	line-height:1;
	color: #fff !important;
	text-transform:uppercase;
	font-size:12px;
}
.woocommerce ul.products li.product .add-to-link a:hover{
	background-color: #4b4b4b;
	border-color: transparent;
	color: #fff !important;
}
.woocommerce ul.products li.product a img {
    margin: 0;
}

.product-item .product-item-inner .add-to-link a {
}

.tooltip {
    line-height: 1 !important;
    font-size: 13px !important;
}

    .tooltip .tooltip-inner {
        padding: 8px !important;
    }
/*==========================================================================================================*/
/* INTRO     ||---------------------------- */
/*==========================================================================================================*/
/*intro*/
.intro {
    background-color: #333;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.tp-bannertimer {
    display: none !important;
}

img.tp-caption {
    /*width:100%;*/
    /*max-width:100%;*/
}

.slide-bg-image {
    background-size: cover;
    background-repeat: no-repeat;
}

.owl-main-slider {
    position: relative;
}

    .owl-main-slider .slide__item {
        position: relative;
    }

    .owl-main-slider .row, .owl-main-slider [class*="col-"] {
        height: 100%;
    }

    .owl-main-slider .slide__item > .container {
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 2;
        left: 50%;
        transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }

    .owl-main-slider .slide-caption {
        position: relative;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        top: 50%;
    }

    .owl-main-slider .slide-caption__title {
        line-height: 1.2;
        white-space: nowrap;
    }

    .owl-main-slider .slide-caption__desc {
        margin-top: 30px;
        font-weight: 400;
        text-transform: none;
        white-space: nowrap;
    }

    .owl-main-slider .slide-btn {
        margin-top: 30px;
    }

    .owl-main-slider .btn {
        white-space: nowrap;
    }

    .owl-main-slider .owl-item.active .slide-caption__title {
        animation: 1s .2s fadeIn both;
        -moz-animation: 1s .2s fadeIn both;
        -o-animation: 1s .2s fadeIn both;
        -webkit-animation: 1s .2s fadeIn both;
        transition: all 0.45s ease-in-out 0.3s;
        -moz-transition: all 0.45s ease-in-out 0.3s;
        -o-transition: all 0.45s ease-in-out 0.3s;
        -webkit-transition: all 0.45s ease-in-out 0.3s;
    }

    .owl-main-slider .owl-item.active .slide-caption__desc {
        animation: 1s .6s fadeIn both;
        -moz-animation: 1s .6s fadeIn both;
        -o-animation: 1s .6s fadeIn both;
        -webkit-animation: 1s .6s fadeIn both;
        transition: all 0.45s ease-in-out 0.3s;
        -moz-transition: all 0.45s ease-in-out 0.3s;
        -o-transition: all 0.45s ease-in-out 0.3s;
        -webkit-transition: all 0.45s ease-in-out 0.3s;
    }

    .owl-main-slider .owl-item.active .btn {
        animation: 1s 1s fadeIn both;
        -moz-animation: 1s 1s fadeIn both;
        -o-animation: 1s 1s fadeIn both;
        -webkit-animation: 1s 1s fadeIn both;
        transition: all 0.45s ease-in-out 0.3s;
        -moz-transition: all 0.45s ease-in-out 0.3s;
        -o-transition: all 0.45s ease-in-out 0.3s;
        -webkit-transition: all 0.45s ease-in-out 0.3s;
    }

    .owl-main-slider .text-center img {
        margin-left: auto;
        margin-right: auto;
    }

@media only screen and (max-width: 991px) {
    .owl-main-slider .slide-caption__title {
        font-size: 300%;
    }
}

@media only screen and (max-width: 776px) {
    .owl-main-slider .slide-caption__title {
        font-size: 200%;
    }

    .owl-main-slider .slide-caption__desc {
        font-size: 130%;
    }
}
/* Owl Nav*/
.owl-main-slider .owl-nav {
}

.owl-main-slider.owl-carousel .owl-nav .owl-prev, .owl-main-slider.owl-carousel .owl-nav .owl-next {
    background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
    color: #fff;
    border-radius: 60px;
    -moz-border-radius: 60px;
    -webkit-border-radius: 60px;
    font-size: 18px;
    height: 60px;
    margin-top: -30px;
    line-height: 60px;
    position: absolute;
    text-align: center;
    top: 50%;
    transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    width: 60px;
    outline: none;
}

    .owl-main-slider.owl-carousel .owl-nav .owl-prev:hover, .owl-main-slider.owl-carousel .owl-nav .owl-next:hover {
        background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    }

.owl-main-slider.owl-carousel .owl-nav .owl-prev {
    left: 25px;
}

.owl-main-slider.owl-carousel .owl-nav .owl-next {
    right: 25px;
}
/* Owl Dots */
.owl-main-slider.owl-carousel .owl-dots {
    position: absolute;
    margin: 0;
    text-align: center;
    bottom: 15px;
    width: 100%;
}

    .owl-main-slider.owl-carousel .owl-dots .owl-dot {
        display: inline-block;
        height: 10px;
        width: 10px;
        margin-left: 3px;
        margin-right: 3px;
        background-color: rgba(255, 255, 255, 0.50);
    }

        .owl-main-slider.owl-carousel .owl-dots .owl-dot span {
            display: block;
        }

        .owl-main-slider.owl-carousel .owl-dots .owl-dot.active, .owl-main-slider.owl-carousel .owl-dots .owl-dot:hover {
            background-color: rgba(255, 255, 255, 1);
        }
/*==========================================================================================================*/
/* ELEMENTS     ||---------------------------- */
/*==========================================================================================================*/

/*------------------------------------------------------------------*/
/* Sidebar Menu (Cart Menu)*/
/*------------------------------------------------------------------*/
.admin-bar .sidebar-menu {
    top: 30px;
}

.sidebar-menu {
    background: #fff;
    width: 320px;
    height: 100%;
    top: 0;
    z-index: 3050;
    position: fixed;
    overflow: auto;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.sidebar-right {
    right: -320px;
}

    .sidebar-right.sidebar-open {
        right: 0;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.30);
        -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.30);
        -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.30);
    }
/* click Buttons ( Toggle, Close ) */
#sidebar_toggle_btn {
}

#sidebar_close_icon {
    position: absolute;
    right: 30px;
    top: 31px;
}
/* Sidebar Menu Overlay */
.sidebar_overlay {
}

    .sidebar_overlay.sidebar_overlay_active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        cursor: pointer;
        z-index: 3030;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

.sidebar-menu .cart-sidebar-wrap {
    display: table;
    width: 100%;
    height: 100%;
}
/* Sidebar Content Cart */
.sidebar-menu .cart-widget-heading {
    padding: 30px;
    display: block;
    background: #34b79d;
}

    .sidebar-menu .cart-widget-heading h4, .sidebar-menu .cart-widget-heading h5, .sidebar-menu .cart-widget-heading h4, .sidebar-menu .cart-widget-heading h3 {
        color: #fff;
        margin-bottom: 0;
        margin-top: 0;
    }
/*Cart Product Content*/
.sidebar-menu .cart-widget-content {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    position: relative;
}

    .sidebar-menu .cart-widget-content .cart-widget-product {
        position: relative;
    }

        .sidebar-menu .cart-widget-content .cart-widget-product .cart-empty {
            display: none;
        }

            .sidebar-menu .cart-widget-content .cart-widget-product .cart-empty p {
                font-size: 13px;
            }

        .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item {
            padding: 0;
            list-style: none;
            margin-bottom: 30px;
        }

            .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li {
                border-bottom: 1px solid #eee;
                padding-bottom: 15px;
                margin-bottom: 15px;
                display: block;
                position: relative;
            }

                .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li:last-child {
                    border-bottom: 0px none;
                    padding-bottom: 0px;
                    margin-bottom: 0px;
                }

                .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li .product-image {
                    margin-right: 15px;
                    display: table-cell;
                    float: none !important;
                    margin-right: 0;
                    width: 30%;
                }

                    .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li .product-image img {
                        width: 100%;
                        vertical-align: top;
                        max-width: 100%;
                        height: auto;
                        border: none;
                        outline: none;
                    }

                .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li .product-content {
                    border: 0 none;
                    width: 70%;
                    display: table-cell;
                    float: none !important;
                    padding-top: 0;
                    padding-bottom: 0;
                    padding-left: 15px;
                    padding-right: 20px;
                    text-align: left;
                    vertical-align: top;
                }

                    .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li .product-content .product-remove {
                        position: absolute;
                        right: 0;
                        top: 0;
                        font-size: 14px;
                        font-weight: normal;
                        letter-spacing: 0;
                        text-align: center;
                    }

                    .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li .product-content .product-link {
                        color: #333;
                        font-size: 13px;
                        display: block;
                        margin-bottom: 10px;
                        line-height: 1.4;
                    }

                        .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li .product-content .product-link:hover {
                            color: #34b79d;
                        }

                    .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li .product-content .cart-collateral {
                        color: #777;
                        font-size: 12px;
                    }

                        .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li .product-content .cart-collateral .qty-cart {
                        }

                        .sidebar-menu .cart-widget-content .cart-widget-product .cart-product-item li .product-content .cart-collateral .product-price-amount {
                            font-weight: 600;
                            color: #333;
                        }
/*Cart Footer (Totle, Buttons)*/
.sidebar-menu .cart-widget-footer {
    display: table-row;
    vertical-align: bottom;
    height: auto;
}

    .sidebar-menu .cart-widget-footer .cart-footer-inner {
        padding: 30px;
        display: table-cell;
        vertical-align: bottom;
    }

    .sidebar-menu .cart-widget-footer .cart-total-hedding,
    .sidebar-menu .cart-widget-footer .woocommerce-mini-cart__total.total {
        padding-bottom: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
        font-size: 18px;
    }

        .sidebar-menu .cart-widget-footer .cart-total-hedding .cart-total-price,
        .sidebar-menu .cart-widget-footer .woocommerce-mini-cart__total.total .woocommerce-Price-amount{
            color: #34b79d;
            float: right;
        }
    .woocommerce .widget_shopping_cart .total strong, 
    .woocommerce.widget_shopping_cart .total strong{
        color: #333;
    }
    
    .sidebar-menu .cart-widget-footer .cart-action-buttons {
        display: block;
        text-align: center;
    }

        .sidebar-menu .cart-widget-footer .cart-action-buttons .btn {
            width: 100%;
        }

            .sidebar-menu .cart-widget-footer .cart-action-buttons .btn:first-child {
                margin-bottom: 15px;
            }
/*------------------------------------------------------------------*/
/* Search Overlay Menu */
/*------------------------------------------------------------------*/
.search-overlay-menu {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .97);
    -webkit-transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    -moz-transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    -ms-transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    -o-transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 3400;
    text-align: center;
}

    .search-overlay-menu.open {
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
        -moz-transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
        -ms-transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
        -o-transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
        transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
    }

    .search-overlay-menu .container {
        height: 100%;
    }

    .search-overlay-menu form {
        position: relative;
        vertical-align: middle;
        top: 50%;
        left: 0;
        margin: -78px 0 0;
        width: 100%;
        padding-left: 65px;
        text-align: left;
        transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        -webkit-transition: all 0.3s ease-in-out 0s;
    }

        .search-overlay-menu form .search-icon-lg {
            width: 42px;
            height: 44px;
            position: absolute;
            top: 50%;
            margin-top: -5px;
            left: 0;
			background-image: url("../images/mix.png");
			background-position: 0 -228px;
			background-repeat: no-repeat;   
        }
		        
        .search-overlay-menu form input {
            height: 120px;
            width: 100%;
            color: #aaa;
            background: transparent;
            border-top: 0px none;
            border-bottom: 1px solid #d0d0d0 !important;
            border-left: 0px none;
            border-right: 0px none;
            font-size: 60px;
            font-weight: 700;
            outline: none;
            padding: 25px 45px 25px 0;
            font-family: "Montserrat", sans-serif;
            border-radius: 0px;
            -moz-border-radius: 0px;
            -webkit-border-radius: 0px;
        }

            .search-overlay-menu form input:focus {
                color: #333;
            }

        .search-overlay-menu form button {
            background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
            border: medium none;
            height: 120px;
            position: absolute;
            right: 0;
            bottom: 0px;
            width: 35px;
            color: #c6c6c6;
            padding: 0;
            border-radius: 0px;
            -moz-border-radius: 0px;
            -webkit-border-radius: 0px;
        }

            .search-overlay-menu form button:hover {
                background: none;
            }

.admin-bar .search-overlay-menu .search-overlay-close {
    top: 40px;
}

@media only screen and (max-width: 782px) {
    .admin-bar .search-overlay-menu .search-overlay-close {
        top: 50px;
    }
}

.search-overlay-menu .search-overlay-close {
	background-image: url("../images/mix.png");
    background-position: 0 0;
    background-repeat: no-repeat;   
    position: absolute;
    top: 25px;
    right: 25px;
    opacity: 1;
    font-size: 27px;
    z-index: 100;
    width: 16px;
    height: 16px;
    display: inline-block;
    color: #333;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

    .search-overlay-menu .search-overlay-close:hover {
        transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -ms-transform: rotate(90deg); /* IE 9 */
        -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
        transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
    }

@media only screen and (max-width: 776px) {
    .search-overlay-menu form button {
        height: 60px;
    }

    .search-overlay-menu form input {
        height: 60px;
        font-size: 30px;
        padding: 10px 45px 10px 0px;
    }

    .search-overlay-menu form {
        margin-top: -47px;
    }
}
.sidebar-icon-nav ul li.header-search-top{
	position:relative;
}
/*------------------------------------------------------------------*/
/* Icons */
/*------------------------------------------------------------------*/

/* Close Icon */
.close-icon-black {
   background-image:url("../images/mix.png");
	background-position:0 0;
	background-repeat:no-repeat; 
    height: 16px;
    width: 16px;
    display: block;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

    .close-icon-black:hover {
        -ms-transform: rotate(90deg); /* IE 9 */
        -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
        transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
    }

.close-icon-white {
	background-image:url("../images/mix.png");
	background-position:0 -41px;
	background-repeat:no-repeat;   
    height: 16px;
    width: 16px;
    display: block;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

    .close-icon-white:hover {
        -ms-transform: rotate(90deg); /* IE 9 */
        -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
        transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
    }
/*------------------------------------------------------------------*/
/* Product Filter Tab */
/*------------------------------------------------------------------*/
.product-filter, ul.product-filter {
    position: relative;
    margin: 0 auto 30px 0;
    padding: 0;
    text-align: center;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    display: block;
}

    .product-filter li {
        list-style: none;
        display: inline-block;
        border-right: 1px solid #eee;
    }

        .product-filter li:last-child {
            border-right: 0px none;
        }

        .product-filter li a {
            display: block;
            padding: 0px 25px;
            color: #999;
        }

            .product-filter li a.active, .product-filter li.active a {
                color: #333;
            }
/*------------------------------------------------------------------*/
/* Tabs */
/*------------------------------------------------------------------*/
.tab-content .tab-pane.active {
    display: block;
}

.tab-content .tab-pane {
    display: none;
}
/*------------------------------------------------------------------*/
/* Tooltip */
/*------------------------------------------------------------------*/

/*------------------------------------------------------------------*/
/* Like Share Banner */
/*------------------------------------------------------------------*/
.like-share-inner {
    padding: 20px 40px;
    position: relative;    
    background-position: center center;
    background-color: #333; /* Old browsers */
}

    .like-share-inner p, .like-share-inner h2, .like-share-inner h3, .like-share-inner h4 {
        display: inline-block;
        margin: 0;
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        text-transform: none;
    }

        .like-share-inner p a {
            color: #34b79d;
        }

.social-icon {
    float: right;
    list-style: none;
}

    .social-icon li {
        display: inline-block;
    }

        .social-icon li a {
            font-size: 22px;
            font-weight: 600;
            padding: 0 10px;
            color: #fff;
        }

            .social-icon li a:hover {
                color: #34b79d;
            }

@media (max-width: 776px) {
    .social-icon {
        float: none;
        margin-top: 15px;
    }
}
/*------------------------------------------------------------------*/
/* Newsletter Popup */
/*------------------------------------------------------------------*/

#nlpopup_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 9999;
}

#nlpopup {
    background-color: #f8f8f8;
    display: none;
    position: fixed;
    z-index: 99999;
    width: 100%;
    max-width: 790px;
    top: 100px;
    left: 50%;
    padding: 60px;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-image: url("../images/newsletter_popup_bg.png");
    background-position: top right;
    background-repeat: no-repeat;
}

.nlpopup_close_link {
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #777;
    display: block;
}

.nlpopup_close_icon {	
    position: absolute;
    top: -16px;
    right: -16px;
    display: block;
    text-align: center;
    width: 30px;
    height: 30px;  
    background: #333;    
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	 
}

    .nlpopup_close_icon:before {
		content: "\f00d";
		font-family: FontAwesome;
		color: #fff;
		font-size: 13px;
		line-height: 30px;    
    }

#nlpopup input[type="email"] {
    width: 225px;
}
#nlpopup .form-input {
    display:inline-block;
}
#nlpopup .newsletter-btn {
	 display: inline-block;
    margin: 0;
    background-color: #34b79d;
    border: none;
    color: #fff;
    padding: 0 35px;
    text-transform: uppercase;
}
#nlpopup .newsletter-btn:hover {
	background-color: #4ac2aa;
}
/*------------------------------------------------------------------*/
/* Bread Crumb */
/*------------------------------------------------------------------*/
.breadcrumb {
    background-color: #f4f4f4;
    padding: 40px 0;
    background-image: url("../images/breadcrumb-bg.png");
    background-position: center top;
    background-repeat: no-repeat;
}

    .breadcrumb .breadcrumb-link {
        font-size: 13px;
        font-family: inherit;
        text-align: left;
        color: #333;
    }

        .breadcrumb .breadcrumb-link a {
            font-weight: 600;
            margin-right: 5px;
        }
       
        .breadcrumb .breadcrumb-link span {
            color: #777;
        }

            .breadcrumb .breadcrumb-link span.breadcrumb_last {
                margin-left: 5px;
            }
/*------------------------------------------------------------------*/
/* Sidebar Widget */
/*------------------------------------------------------------------*/
.sidebar-container {
    position: relative;
    margin-bottom: 40px;
}

.widget-sidebar {
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

    .widget-sidebar:last-child {
        border-bottom: 0px none;
        padding-bottom: 0;
        margin-bottom: 0px;
    }

.widget-title {
    margin-bottom: 25px;
}

    .widget-title.highlight {
        background-color: #34b79d;
        color: #fff;
        padding: 25px 15px 25px 25px;        
        background-position: top right;
        background-repeat: no-repeat;
    }

.widget-sidebar ul, .widget-sidebar ul li {
    list-style: none;
}

    .widget-sidebar ul li {
        margin-bottom: 10px;
    }

        .widget-sidebar ul li:last-child {
            margin-bottom: 0;
        }

        .widget-sidebar ul li, .widget-sidebar ul li a {
            font-size: 14px;
        }

.widget-content {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .widget-content li, .widget-content ul li {
        list-style: none;
        margin: 0;
    }

.widget-sidebar .widget-product-categories li {
    margin-bottom: 15px;
    color: #333;
    position: relative;
}

    .widget-sidebar .widget-product-categories li:last-child {
        margin-bottom: 0px;
    }

    .widget-sidebar .widget-product-categories li a {
        display: block;
    }

    .widget-sidebar .widget-product-categories li > ul {
        margin-top: 12px;
    }

        .widget-sidebar .widget-product-categories li > ul > li, .widget-sidebar .widget-product-categories li > ul > li > ul > li {
            margin-bottom: 10px;
            font-size: 14px;
            font-weight: 400;
            color: #777;
            padding-left: 20px;
        }

            .widget-sidebar .widget-product-categories li > ul > li > a, .widget-sidebar .widget-product-categories li > ul > li > ul > li > a {
                color: inherit;
            }

                .widget-sidebar .widget-product-categories li > ul > li > a:hover, .widget-sidebar .widget-product-categories li > ul > li > ul > li > a:hover {
                    color: #34b79d;
                }
/* Price Rage Slider */
.widget-price-range form {
    padding-top: 10px;
}

.price-range-slider {
    width: 100%;
    height: 2px;
    position: relative;
    background: #e0e0e0;
    margin-bottom: 30px;
}

.ui-slider-range, .ui-slider-handle {
    background: #34b79d;
    position: absolute;
}

.ui-slider-range {
    height: 100%;
}

.ui-slider-handle {
    height: 15px;
    width: 15px;
    display: block;
    margin-top: -7px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    cursor: w-resize;
}

.price-range-amount {
    display: inline-block;
    vertical-align: sub;
    color: #777;
}

    .price-range-amount #price-range-from-to {
        display: inline-block;
    }

        .price-range-amount #price-range-from-to span {
            font-weight: 600;
            color: #333;
        }
/*filter By Color*/
.widget-filter-color .filter-color-switcher {
    display: inline-block;
    margin-right: 10px;
    vertical-align: bottom;
}

    .widget-filter-color .filter-color-switcher span {
        background-repeat: no-repeat;
        background-size: contain;
        border-radius: 50%;
        display: inline-block;
        height: 20px;
        vertical-align: middle;
        width: 20px;
        transition: all 0.2s ease 0s;
        -moz-transition: all 0.2s ease 0s;
        -o-transition: all 0.2s ease 0s;
        -webkit-transition: all 0.2s ease 0s;
    }

.widget-filter-color .color-count {
    color: #bbb;
    float: right;
}
/*filter By Size*/
.widget-filter-size ul li {
    list-style: none;
    margin-right: 15px;
    margin-bottom: 10px;
    padding-right: 10px;
    display: inline-block;
}

    .widget-filter-size ul li a {
        display: inline-block;
        font-weight: 600;
    }

    .widget-filter-size ul li span {
        margin-left: 2px;
        color: #bbb;
        font-size: 12px;
    }
/*filter By Tag*/
.widget-filter-tag ul li {
    list-style: none;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

    .widget-filter-tag ul li a {
        display: block;
        font-size: 13px;
        padding: 4px 15px;
        background: #eee;
        color: #333;
        border-radius: 30px;
        -border-radius: 30px;
        border-radius: 30px;
    }

        .widget-filter-tag ul li a:hover {
            color: #34b79d;
        }
/*Widget Product*/
.widget-product ul li {
    border-bottom: 1px solid #eee;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}

    .widget-product ul li:last-child {
        padding-bottom: 0;
        border-bottom: 0 none;
    }

    .widget-product ul li .product-img {
        display: table-cell;
        float: none !important;
        margin-right: 0;
        width: 25%;
    }

        .widget-product ul li .product-img img {
            width: 100%;
        }

    .widget-product ul li .product-content {
        border: 0 none;
        display: table-cell;
        float: none !important;
        padding: 0 0px 0 15px;
        text-align: left;
        vertical-align: top;
        width: 75%;
    }

        .widget-product ul li .product-content .product-link {
            color: #333;
            display: block;
            font-size: 13px;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .widget-product ul li .product-content .date-description {
            color: #777;
            display: block;
            font-size: 13px;
            line-height: 1.4;
        }

        .widget-product ul li .product-content .product-link:hover {
            color: #34b79d;
        }

        .widget-product ul li .product-content .product-amount {
            color: #333;
            font-size: 12px;
            font-weight: 700;
            font-family: "Montserrat", sans-serif;
            display: block;
        }

        .widget-product ul li .product-content .star-rating {
            float: none;
            display: inline-block;
            margin-top: 0;
        }

            .widget-product ul li .product-content .star-rating:before, .widget-product ul li .product-content .star-rating span:before {
                font-size: 12px;
            }
/*Widget Banner*/
.widget-banner {
    overflow: hidden;
    position: relative;
}
    /*shine effect*/
    .widget-banner:after {
        content: "";
        position: absolute;
        top: -150%;
        left: -210%;
        width: 200%;
        height: 200%;
        opacity: 0;
        transform: rotate(30deg);
        -moz-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        -o-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        background: rgba(0, 0, 0, 0);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0;
        background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0;
        background: -webkit-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0;
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#fff', GradientType=1 ); /* IE6-9 */
    }

    .widget-banner:hover:after {
        opacity: 1;
        top: -30%;
        left: -30%;
        transition-property: left, top, opacity;
        -moz-transition-property: left, top, opacity;
        -o-transition-property: left, top, opacity;
        -webkit-transition-property: left, top, opacity;
        transition-duration: 0.7s, 0.7s, 0.15s;
        -moz-transition-duration: 0.7s, 0.7s, 0.15s;
        -o-transition-duration: 0.7s, 0.7s, 0.15s;
        -webkit-transition-duration: 0.7s, 0.7s, 0.15s;
        transition-timing-function: ease;
        -moz-transition-timing-function: ease;
        -o-transition-timing-function: ease;
        -webkit-transition-timing-function: ease;
    }
    /*End shine effect*/

    .widget-banner .banner-image-wrap {
        transition: all 700ms ease 0s;
        -moz-transition: all 700ms ease 0s;
        -o-transition: all 700ms ease 0s;
        -webkit-transition: all 700ms ease 0s;
        display: block;
    }

    .widget-banner:hover .banner-image-wrap {
        transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }

    .widget-banner .banner-image-wrap img {
        width: 100%;
        height: auto;
    }

    .widget-banner .banner-content-wrap {
        background: rgba(0, 0, 0, 0.08);
        color: #fff;
        height: 100%;
        position: absolute;
        top: 0;
        transition: all 350ms ease-out 0s;
        -moz-transition: all 350ms ease-out 0s;
        -o-transition: all 350ms ease-out 0s;
        -webkit-transition: all 350ms ease-out 0s;
        width: 100%;
        z-index: 2;
    }

    .widget-banner:hover .banner-content-wrap {
        background: rgba(0, 0, 0, 0.3);
    }

    .widget-banner .banner-content-wrap .banner-content-wrap-inner {
        left: 0;
        width: 100%;
        padding: 30px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        text-align: center;
    }

.banner-content-bg-color {
    background: rgba(52, 183, 157, 0.75) !important;
}

.widget-banner .banner-content-wrap .banner-sub-title {
    margin-bottom: 12px;
    font-size: 14px;
}

.widget-banner .banner-content-wrap .banner-title {
    font-size: 28px;
    margin-bottom: 18px;
}

.widget-banner .banner-content-wrap .banner-content-text {
    font-size: 14px;
    margin-bottom: 20px;
}

.widget-banner .banner-content-wrap .banner-sub-title, .widget-banner .banner-content-wrap .banner-title, .widget-banner .banner-content-wrap .banner-content-text {
    color: #fff;
}
/*------------------------------------------------------------------*/
/* Accordian */
/*------------------------------------------------------------------*/
.jq-accordian .jq-accordionIcon {
    position: absolute;
    right: 0;
}

    .jq-accordian .jq-accordionIcon::before {
        content: "\f107";
        font-family: FontAwesome;
        font-weight: normal;
        color: #aaa;
    }

.jq-accordian .is-active .jq-accordionIcon::before {
    content: "\f106";
    color: #34b79d;
}
/*------------------------------------------------------------------*/
/* Toggle */
/*------------------------------------------------------------------*/
.toggle-content {
    display: none;
}
/*------------------------------------------------------------------*/
/* Product Listing Page (Top-Banner, Title, Filter Product-Grid) */
/*------------------------------------------------------------------*/

/*Title*/
.list-page-title {
    margin-bottom: 30px;
}

    .list-page-title small, .list-page-title h1 small, .list-page-title h3 small, .list-page-title h4 small {
        text-transform: none;
        font-size: 14px;
        color: #999;
        font-weight: 400;
        margin-bottom: 0px;
    }
/* Product Filter */
.product-filter-content {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    width: 100%;
}

    .product-filter-content .product-filter-content-inner {
        display: inline-block;
        width: 100%;
    }

        .product-filter-content label, .product-filter-content p, .product-filter-content form, .product-filter-content input, .product-filter-content .product-filter-content-inner > div {
            display: inline-block;
            vertical-align: middle;
            margin-bottom: 0;
            padding-left: 0;
        }

    .product-filter-content label {
        padding-right: 5px;
    }

@media (min-width: 767px) {
    .product-filter-content > .product-filter-content-inner > form, .product-filter-content > .product-filter-content-inner > p, .product-filter-content > .product-filter-content-inner > div {
        margin-left: 25px;
    }
}

.product-filter-content > *:last-child {
    margin-right: 0;
}

.product-filter-dropdown-btn {
    padding-right: 30px;
    border-right: 1px solid #eee;
}

    .product-filter-dropdown-btn a {
        border-radius: 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

.product-view-switcher {
    float: right;
}

    .product-view-switcher .product-view-icon {
        display: inline-block;
    }

        .product-view-switcher .product-view-icon a {
            height: 40px;
            border: 1px solid #eee;
            width: 40px;
            display: block;
            text-align: center;
            line-height: 40px;
            color: #333;
        }

            .product-view-switcher .product-view-icon.product-view-icon-active a, .product-view-switcher .product-view-icon a:hover {
                color: #fff;
                background: #34b79d;
                border-color: transparent;
            }
/* Product filter dropdown */
.product-filter-dropdown {
    clear: both;
    width: 100%;
    background: #f9f9f9;
    padding-top: 40px;
    padding-bottom: 10px;
}

    .product-filter-dropdown .widget-title {
    }

    .product-filter-dropdown .widget-sidebar {
        padding-bottom: 0;
        margin-bottom: 30px;
        border-bottom: 0px none;
    }

        .product-filter-dropdown .widget-sidebar .widget-content {
            overflow-y: auto;
            max-height: 220px;
            height: 100%;
        }

    .product-filter-dropdown .widget-content .color-count {
        display: none;
    }
/* Product List Item */
.product-list-item {
    margin-top: 30px;
}

    .product-list-item .product-item-element {
        margin-bottom: 30px;
    }

.product-list-view {
}

    .product-list-view .product-item-element {
        width: 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

        .product-list-view .product-item-element .product-item-inner {
            float: left;
            margin-bottom: 0;
            max-width: 220px;
        }

        .product-list-view .product-item-element .product-detail {
            text-align: left;
            padding-left: 30px;
        }

@media (max-width: 480px) {
    .col-xsm-12 {
        width: 100%;
    }

    .product-list-view .product-item-element .product-item-inner {
        float: none;
        margin-bottom: 15px;
        max-width: 100%;
        max-width: 100%;
    }

    .product-list-view .product-item-element .product-detail {
        text-align: left;
        padding-left: 0px;
        max-width: 100%;
        max-width: 100%;
    }
}
/*------------------------------------------------------------------*/
/* Pagination */
/*------------------------------------------------------------------*/
.pagination-wraper {
    display: inline-block;
    width: 100%;
    border-top: 1px solid #eee;
    padding: 30px 0;
}

    .pagination-wraper > p {
        margin-bottom: 0;
        display: inline-block;
        vertical-align: middle;
    }

.pagination {
    float: right;
    display: block;
    vertical-align: middle;
}

    ul.pagination-numbers, .pagination .pagination-numbers, .pagination-numbers {
        display: inline-block;
        margin-bottom: 0;
        margin-top: 0;
        padding-left: 0;
        text-align: right;
        width: 100%;
    }

        .pagination-numbers li {
            display: inline-block;
            float: left;
            list-style: outside none none;
            margin-bottom: 0;
            padding: 0 4px;
        }

            .pagination-numbers li a, .pagination-numbers li span {
                background-color: #f6f6f6;
                border: 1px solid transparent;
                box-sizing: border-box;
                display: block;
                float: left;
                font-size: 12px;
                font-weight: 600;
                height: 36px;
                line-height: 35px;
                padding: 0 12px;
                transition: all 0.2s linear 0s;
                color: #333;
            }

                .pagination-numbers li a:hover, .pagination-numbers li span:hover, .pagination-numbers li span.current, .pagination-numbers li a.current {
                    color: #fff;
                    background-color: #34b79d;
                }

                .pagination-numbers li a.dots, .pagination-numbers li span.dots {
                    background-color: transparent;
                    border: medium none;
                    padding: 0;
                }

                    .pagination-numbers li a.dots:hover, .pagination-numbers li span.dots:hover {
                        color: inherit;
                        background: inherit;
                    }
/*------------------------------------------------------------------*/
/* Deal of the Days */
/*------------------------------------------------------------------*/
.deal-of-the-days .woocommerce ul.products {
    padding: 0px;
    display: block;
    margin: 0;
}

    .deal-of-the-days .woocommerce ul.products li.product {
        margin: 0;
        padding: 0;
    }

.deal-of-the-days .bg-image {
    height: 100%;
    display: block;
}
/*==========================================================================================================*/
/* FOOTER     ||---------------------------- */
/*==========================================================================================================*/
.footer {
    background: #252525;
}

.copyrights {
    text-align: center;
    margin-top: 45px;
}

    .copyrights p {
        color: #fff;
        margin: 0;
    }

        .copyrights p.copyright {
            margin-bottom: 20px;
        }

    .copyrights a {
        color: #34b79d;
    }

        .copyrights a:hover {
            text-decoration: underline;
        }

.footer-newsletter {
    background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0;
    margin: 45px auto 0;
    padding: 25px 20px;
    text-align: center;
}

    .footer-newsletter h3, .footer-newsletter h4 {
        color: #ffffff;
        display: inline-block;
        line-height: 40px;
        margin-bottom: 0;
        margin-right: 15px;
        vertical-align: middle;
    }

.footer-newslettr-inner {
    display: inline-block;
}

    .footer-newslettr-inner input {
        border: 1px solid #ffffff;
        min-width: 320px;
    }

.footer-block {
    /*display: block;*/
    margin: 0;
    color: #acacac;
}

.widget-area .footer-block .widget {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.footer-block p {
    color: #acacac;
    margin: 30px 0;
}

.footer-block .footer-social-icon li {
    display: inline-block;
    width: auto;
    margin-right: 6px;
}

.footer-social-icon li a {
    background: rgba(255, 255, 255, 0.13) none repeat scroll 0 0;
    border-radius: 50px;
    color: #ffffff !important;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    text-align: center;
}

    .footer-social-icon li a:hover {
        background: rgba(255, 255, 255, 1) none repeat scroll 0 0;
        color: #333 !important;
    }

.footer-social-icon a:hover {
    color: #34b79d;
}

.footer-block h6 {
    color: #fff;
    margin-bottom: 30px;
}

.footer-block .nice-select li, .footer-block .nice-select span {
    margin-bottom: 0;
    color: #333;
    display: block;
}

.footer-block ul li {
    display: inline-block;
    width: 100%;
    margin-bottom: 8px;
    color: #acacac;
    position: relative;
}
.footer-block ul li:last-child {
    margin-bottom: 0px;
}
    .footer-block ul li a {
        color: #acacac;
        margin: 0 auto;
    }

        .footer-block ul li a:hover {
            color: #34b79d;
        }

.footer-block a {
    color: #acacac;
}

    .footer-block a:hover, .footer-block .widget_tag_cloud .tagcloud a:hover {
        color: #34b79d;
    }

.footer-block .widget_tag_cloud .tagcloud a {
    color: #333;
}

.footer-block .contact-block li {
    padding-left: 20px;
    margin-bottom: 15px;
}

    .footer-block .contact-block li i {
        position: absolute;
        left: 0;
        line-height: inherit;
    }
/*==========================================================================================================*/
/* GLOBEL     ||---------------------------- */
/*==========================================================================================================*/
/*------------------------------------------------------------------*/
/* Promo */
/*------------------------------------------------------------------*/
.promo {
    position: relative;
}

.promo-box {
    background: #ffffff none repeat scroll 0 0;
    /*border: 1px solid #eeeeee;*/
    /*display: table;
    clear: both;*/
    padding: 10px 0px;
    position: relative;
    width: 100%; /*box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);*/
}

    .promo-box .promo-item {
        text-align: center;
        border-right: 1px solid #eee;
    }

        .promo-box .promo-item:last-child, .promo-box .promo-item:nth-child(3) {
            border-right: 0px none;
        }

    .promo-box .icon {
        display: inline-table;
        vertical-align: middle;
    }

        .promo-box .icon i {
            font-size: 34px;
        }

    .promo-box .info {
        padding-left: 15px;
        text-align: left;
        display: inline-table;
        vertical-align: middle;
    }

    .promo-box h6 {
        margin: 0 0 2px 0;
        padding: 0;
        text-transform: uppercase;
    }

    .promo-box p {
        font-weight: 400;
        margin-bottom: 0px;
        margin-top: 0;
    }

.promo-style1 .promo-box .promo-item {
    border: none;
}

.promo-style1 .promo-box .icon {
    display: block;
    width: inherit;
    height: inherit;
}

.promo-style1 .promo-box .info {
    display: block;
    text-align: center;
    padding-left: 0;
    padding-top: 15px;
}
/*------------------------------------------------------------------*/
/* Promo Banner */
/*------------------------------------------------------------------*/
.promo-banner-wrap {
    position: relative;
    overflow: hidden;
    cursor: default;
}
    /*shine effect*/
    .promo-banner-wrap a:after {
        content: "";
        position: absolute;
        top: -300%;
        left: -210%;
        width: 200%;
        height: 300%;
        opacity: 0;
        transform: rotate(30deg);
        -moz-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        -o-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        background: rgba(0, 0, 0, 0);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0;
        background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0;
        background: -webkit-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0;
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#fff', GradientType=1 ); /* IE6-9 */
    }

    .promo-banner-wrap a:hover:after {
        opacity: 1;
        top: -30%;
        left: -30%;
        transition-property: left, top, opacity;
        -moz-transition-property: left, top, opacity;
        -o-transition-property: left, top, opacity;
        -webkit-transition-property: left, top, opacity;
        transition-duration: 0.7s, 0.7s, 0.15s;
        -moz-transition-duration: 0.7s, 0.7s, 0.15s;
        -o-transition-duration: 0.7s, 0.7s, 0.15s;
        -webkit-transition-duration: 0.7s, 0.7s, 0.15s;
        transition-timing-function: ease;
        -moz-transition-timing-function: ease;
        -o-transition-timing-function: ease;
        -webkit-transition-timing-function: ease;
    }
    /*End shine effect*/
    .promo-banner-wrap .promo-image-wrap {
        transition: all 700ms ease 0s;
        -moz-transition: all 700ms ease 0s;
        -o-transition: all 700ms ease 0s;
        -webkit-transition: all 700ms ease 0s;
        display: block;
    }

        .promo-banner-wrap .promo-image-wrap img {
            width: 100%;
        }

    .promo-banner-wrap:hover .promo-image-wrap {
        transform: scale(1.03);
        -moz-transform: scale(1.03);
        -ms-transform: scale(1.03);
        -o-transform: scale(1.03);
        -webkit-transform: scale(1.03);
        -webkit-transform: scale(1.03);
        transition: all 700ms ease 0s;
        -moz-transition: all 700ms ease 0s;
        -o-transition: all 700ms ease 0s;
        -webkit-transition: all 700ms ease 0s;
    }

    .promo-banner-wrap .promo-content-wrap {
        height: 100%;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 2;
        /*background: rgba(0,0,0,0.08);
        color: #fff;*/
        transition: all 350ms ease-out 0s;
        -moz-transition: all 350ms ease-out 0s;
        -o-transition: all 350ms ease-out 0s;
        -webkit-transition: all 350ms ease-out 0s;
    }

    .promo-banner-wrap:hover .promo-content-wrap {
        /* background: rgba(0,0,0,0.30);*/
        transition: all 350ms ease-out 0s;
        -moz-transition: all 350ms ease-out 0s;
        -o-transition: all 350ms ease-out 0s;
        -webkit-transition: all 350ms ease-out 0s;
    }

    .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner {
        top: 50%;
        left: 0;
        position: absolute;
        padding: 45px 15px 45px 45px;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        width: 100%;
    }

        .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner h1, .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner h2, .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner h3, .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner h4, .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner h5, .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner h6 {
            /*color: #fff;
            margin-bottom: 20px;*/
            transition: all 350ms ease-out 0s;
            -moz-transition: all 350ms ease-out 0s;
            -o-transition: all 350ms ease-out 0s;
            -webkit-transition: all 350ms ease-out 0s;
        }

        .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner h2 {
            font-size: 24px;
        }

        .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner .btn {
            opacity: 0;
            visibility: hidden;
        }

        .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner.top {
            top: 0;
            transform: translateY(0px);
            -moz-transform: translateY(0px);
            -ms-transform: translateY(0px);
            -o-transform: translateY(0px);
            -webkit-transform: translateY(0px);
        }

    .promo-banner-wrap:hover .promo-content-wrap .promo-content-wrap-inner .btn {
        opacity: 1;
        visibility: visible;
        margin-left: 0;
        transition: all 450ms ease-out 0s;
        -moz-transition: all 450ms ease-out 0s;
        -o-transition: all 450ms ease-out 0s;
        -webkit-transition: all 450ms ease-out 0s; /*margin-bottom: 0;*/
    }

    .promo-banner-wrap:hover .promo-content-wrap .promo-content-wrap-inner .banner-caption-text {
        transition: all 350ms ease-out 0s;
        -moz-transition: all 350ms ease-out 0s;
        -o-transition: all 350ms ease-out 0s;
        -webkit-transition: all 350ms ease-out 0s;
    }

    .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner .banner-caption-text.first {
        margin-bottom: 12px;
    }

    .promo-banner-wrap .promo-content-wrap .promo-content-wrap-inner .banner-caption-text.second {
        margin-bottom: -36px;
    }

    .promo-banner-wrap:hover .promo-content-wrap .promo-content-wrap-inner .banner-caption-text.second {
        margin-bottom: 20px;
    }

.promo-banner.style-01 p {
    margin-top: 0;
}
/*------------------------------------------------------------------*/
/* Slider Theme */
/*------------------------------------------------------------------*/
.nf-carousel-theme1 .owl-prev, .nf-carousel-theme1 .owl-next {
    background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0 !important;
    border-radius: 50px;
    height: 40px;
    line-height: 38px;
    margin-top: -30px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 40px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px;
    font-size: 20px;
    transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
}

.nf-carousel-theme1:hover .owl-prev, .nf-carousel-theme1:hover .owl-next {
    opacity: 1;
}

.nf-carousel-theme1 .owl-prev:hover, .nf-carousel-theme1 .owl-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
}

.nf-carousel-theme1 .owl-prev i, .nf-carousel-theme1 .owl-next i {
    color: #fff;
}

.nf-carousel-theme1 .owl-prev {
    left: -50px;
}

.nf-carousel-theme1:hover .owl-prev {
    left: -20px;
}

.nf-carousel-theme1 .owl-prev i {
    margin-right: 2px;
}

.nf-carousel-theme1 .owl-next {
    right: -50px;
}

.nf-carousel-theme1:hover .owl-next {
    right: -20px;
}

.nf-carousel-theme1 .owl-next i {
    margin-left: 2px;
}

.product-item-4 .owl-prev, .product-item-4 .owl-next, .product-item-5 .owl-prev, .product-item-5 .owl-next {
    margin-top: -60px !important;
}
/* Blog Carousel */
.blog-carousel .owl-prev, .blog-carousel .owl-next {
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
}
/* Brand Carousel */
.brand-logo-item .owl-item img {
    max-width: 100%;
    width: auto;
    max-height: 70px;
    height: auto;
    vertical-align: middle;
}

.brand-logo-item {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .brand-logo-item .owl-item {
        text-align: center;
        vertical-align: middle;
    }

    .brand-logo-item .brand-item {
        text-align: center;
        vertical-align: middle;
    }

@media only screen and (max-width: 1100px) {
    .nf-carousel-theme1 {
        overflow: hidden;
    }

        .nf-carousel-theme1:hover .owl-next {
            right: 5px;
        }

        .nf-carousel-theme1:hover .owl-prev {
            left: 5px;
        }
}
/*------------------------------------------------------------------*/
/* Product Item */
/*------------------------------------------------------------------*/

.product-item .product-item-inner {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}

    .product-item .product-item-inner img {
        width: 100%;
    }

.product-item .product-button {
    /* background: #ffffff none repeat scroll 0 0;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.08);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.08);*/
    opacity: 0;
    visibility: hidden;
    top: 0;
    right: 0;
    position: absolute;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    /*display: table;*/
    text-align: center;
    padding-top: 10px;
    padding-right: 10px;
}

    .product-item .product-button a {       
    }

.product-button a:last-child {
    border: none;
}

.product-item:hover .product-button {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -webkit-transform: translateX(0);
}

.product-item .product-detail .tag {
    margin-bottom: 5px;
    font-size: 12px;
    color: #333;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

    .product-item .product-detail .tag:hover {
        color: #34b79d;
    }

.product-item .product-detail h5 {
    margin-bottom: 0;
}

.product-item .product-detail {
    overflow: hidden;
    text-align: center;
}

    .product-item .product-detail del {
        font-weight: 400 !important;
        margin-right: 7px;
        color: #999;
        font-style: italic;
    }

.product-list-item .product-item .product-description {
    font-size: 13px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 15px;
}

.product-list-item .product-item .product-description, .product-item .product-description, .product-list-item .product-item .tag, .product-item .tag, .product-list-item .product-rating, .product-item .product-rating {
    display: none;
}

.product-list-item .product-rating {
    margin-top: 20px;
}

.product-list-item .product-item .product_tags {
    display: none;
}

.product-list-item.product-list-view .product-item .product-description, .product-list-item.product-list-view .product-item .product-rating, .product-list-item.product-list-view .product-item .product_tags {
    display: block;
}

.product-list-item.product-list-view .product-item .tag {
    display: inline-block;
}

.product-list-item.product-list-view .product-item .product-title, .product-list-view .product-item .product-title {
    font-size: 18px;
}

.product-item .product-detail .item-price, .product-item .product-detail .star-rating {
    display: inline-block;
}

.product-rating-count {
    display: inline-block;
}

.product-rating .star-rating {
    float: none;
    display: inline-block;
    margin-top: 0;
}

.product-rating-count {
    margin-left: 7px;
    color: #f55151;
}

    .product-rating-count:hover {
        color: #f55151;
        text-decoration: underline;
    }

.product-item .new-label, .product-item .sale-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    height: 35px;
    line-height: 34px;
    padding: 0;
    position: absolute;
    right: 10px;
    text-align: center;
    text-transform: uppercase;
    top: 10px;
    width: 35px;
    z-index: 2;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.product-item .new-label {
    background: #34b79d;
    color: #fff;
}

.product-item .sale-label {
    background: #f55151;
    color: #fff;
}
/*------------------------------------------------------------------*/
/* Categories Box */
/*------------------------------------------------------------------*/
.categories-box {
    display: block;
    position: relative;
}

    .categories-box .categories-image-wrap {
        overflow: hidden;
        text-align: center;
    }

        .categories-box .categories-image-wrap img {
            transition: all 350ms ease-out 0s;
            -moz-transition: all 350ms ease-out 0s;
            -o-transition: all 350ms ease-out 0s;
            -webkit-transition: all 350ms ease-out 0s;
        }

    .categories-box:hover .categories-image-wrap img {
        transform: scale(1.03);
        -moz-transform: scale(1.03);
        -ms-transform: scale(1.03);
        -o-transform: scale(1.03);
        -webkit-transform: scale(1.03);
    }

    .categories-box .categories-content {
        width: 100%;
        position: relative;
        text-align: center;
        margin-top: -18px;
    }

        .categories-box .categories-content .categories-caption {
            padding: 10px 30px;
            background: #fff;
            /*border: 1px solid #eee;*/
            display: inline-block;
        }

            .categories-box .categories-content .categories-caption h3, .categories-box .categories-content .categories-caption h4, .categories-box .categories-content .categories-caption h5, .categories-box .categories-content .categories-caption h6, .categories-box .categories-content .categories-caption p {
                margin-bottom: 0;
                margin-top: 0;
                color: #333;
                transition: all 350ms ease-out 0s;
                -moz-transition: all 350ms ease-out 0s;
                -o-transition: all 350ms ease-out 0s;
                -webkit-transition: all 350ms ease-out 0s;
            }

    .categories-box:hover .categories-content .categories-caption h3, .categories-box:hover .categories-content .categories-caption h4, .categories-box:hover .categories-content .categories-caption h5, .categories-box:hover .categories-content .categories-caption h6 {
        color: #34b79d;
    }
/*------------------------------------------------------------------*/
/* Blog Box */
/*------------------------------------------------------------------*/
.blog-box {
    position: relative;
}

    .blog-box .blog-img-wrap {
        display: block;
        width: 100%;
        overflow: hidden;
    }

        .blog-box .blog-img-wrap img {
            width: 100%;
            height: auto;
            transition: all 350ms ease-out 0s;
            -moz-transition: all 350ms ease-out 0s;
            -o-transition: all 350ms ease-out 0s;
            -webkit-transition: all 350ms ease-out 0s;
        }

    .blog-box:hover .blog-img-wrap img {
        transform: scale(1.03);
        -moz-transform: scale(1.03);
        -ms-transform: scale(1.03);
        -o-transform: scale(1.03);
        -webkit-transform: scale(1.03);
    }

    .blog-box .blog-box-content {
        text-align: center;
        padding: 0px 30px;
    }

        .blog-box .blog-box-content .blog-box-content-inner {
            background: #fff;
            border: 1px solid #eee;
            padding: 30px 40px;
        }

    .blog-box .blog-img-wrap + .blog-box-content .blog-box-content-inner {
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }

    .blog-box .blog-box-content .blog-title {
        font-weight: 500;
        margin-bottom: 8px;
    }

    .blog-box .blog-box-content .info span span {
        color: #777;
    }

    .blog-box .blog-box-content .info {
        margin-bottom: 0px;
        margin-top: 0px;
        font-style: italic;
    }
		.blog-box .blog-box-content .info time.updated{
			/*display:none;*/
		}

        .blog-box .blog-box-content .info > span:after {
            content: "/";
            padding-right: 5px;
            padding-left: 5px;
        }

        .blog-box .blog-box-content .info > span:last-child:after {
            content: "";
            padding: 0;
            display: none;
        }

.blog-title {
    font-family: "Montserrat", sans-serif;
    text-transform: none;
}

.blog-description-content {
    margin-bottom: 25px;
    color: #777;
}
.blog-description-content .link-more{
	margin-top:15px;
	margin-bottom:0;
}
.entry-video, .entry-audio {
    margin: 12px 0;
}
/*------------------------------------------------------------------*/
/* Newsletter */
/*------------------------------------------------------------------*/
.newsletter {
    text-align: center;
}

.newsletter-from .form-input {
    display: inline-block;
    position: relative;
}
.newsletter-from .frm-input-email {
    background: rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff !important;
    border-radius: 50px;
    min-width: 450px;
    padding: 12px 20px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease 0s !important;
    -moz-transition: all 0.3s ease 0s !important;
    -o-transition: all 0.3s ease 0s !important;
    -webkit-transition: all 0.3s ease 0s !important;
	 height: 50px;
}

    .newsletter-from .frm-input-email:focus, .newsletter-from .frm-input-email:hover {
        border-color: rgba(255, 255, 255, 0.30) !important; 
    }
.newsletter-from {
    max-width: 800px;
    margin: 0 auto 15px;
}
.newsletter-from .newsletter-btn{
	width: auto;
    min-width: inherit;
    height: 50px;
    padding: 16px 45px;
}
.newsletter-from .newsletter-btn:hover{
	background-color: #4ac2aa;
}
.newsletter-from label{ 
	display:none; 
}
/*------------------------------------------------------------------*/
/* About Blocks */
/*------------------------------------------------------------------*/
.home-about-blocks .customer-say, .home-about-blocks .about-shop {
    text-align: center;
}

.home-about-blocks .customer-say {
}

    .home-about-blocks .customer-say .quotes {
        font-style: italic;
        margin-bottom: 20px;
    }

    .home-about-blocks .customer-say .quotes-people {
        font-size: 12px;
    }

    .home-about-blocks .customer-say .quotes:before {
        content: "\201C";
        margin-right: 5px;
    }

    .home-about-blocks .customer-say .quotes:after {
        content: "\201D";
        margin-left: 5px;
    }

    .home-about-blocks .customer-say .quotes:after, .home-about-blocks .customer-say .quotes:before {
        font-family: sans-serif;
        font-size: 22px;
    }

.home-about-blocks .about-shop {
    border-top: 1px solid #eee;
}

.home-about-blocks .about-blocks-wrap {
    border: 1px solid #eee;
    display: inline-block;
    width: 100%;
    background: #fff;
    position: relative;
}

    .home-about-blocks .about-blocks-wrap::after {
        display: none;
    }

.home-about-blocks .about-box-inner {
    max-width: 400px;
    width: 100%;
    display: block;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
}

.home-about-blocks {
    display: inline-block;
    background: #fff;
    position: relative;
    width: 100%;
}

    .home-about-blocks .customer-say .quotes p {
        display: inline;
    }

@media (min-width: 991px) {
    .home-about-blocks .about-shop {
        border-top: 0px none;
        border-left: 0px none;
    }

    .home-about-blocks .customer-say {
        border-left: 0px none;
        /*border-right: 1px solid #eee;*/
    }

    .home-about-blocks .about-blocks-wrap::after {
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        margin-left: -0.5px;
        position: absolute;
        content: "";
        background: #eee;
        display: block;
    }
}

.brand-logo .owl-item img {
    max-width: 100%;
    width: auto;
    max-height: 70px;
    height: auto;
    vertical-align: middle;
}
/*------------------------------------------------------------------*/
/* Instagram Blocks */
/*------------------------------------------------------------------*/
.instagram #sbi_load {
    margin-top: 20px;
}
.instagram h3.widget-title {
    display: block;
    font-size: 28px;
}
.instagram p {
    margin-bottom: 40px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 30px;
}
@media only screen and (max-width: 400px) {
	.instagram p {
		 top: 60px;
	}
}
.instagram ul {
    margin-top: 70px;
}
.instagram ul li {
    margin-right: 0;
    width: 20%;
}

    .instagram ul li:last-child {
        margin: 0;
    }

    .instagram ul, .instagram ul li {
    list-style: none;
    text-align: center;
}

    .instagram ul li {
        display: inline-block;
    }
/*==========================================================================================================*/
/* Product Detail Page     ||---------------------------- */
/*==========================================================================================================*/
#product-detail {
    position: relative;
}

    #product-detail .product-sidebar {
        max-width: 500px;
    }
/*------------------------------------------------------------------*/
/* Product Image */
/*------------------------------------------------------------------*/
.product-page-image, .product-image-gallery, .product-image-slider-thumbnails {
    position: relative;
}

.product-gallery-item {
    cursor: crosshair;
}

.product-image-gallery .product-gallery-item img {
    width: 100%;
}

.product-image-slider-thumbnails {
    margin-top: 15px;
}

    .product-image-slider-thumbnails .item {
        padding-right: 7px;
        padding-left: 7px;
        opacity: 0.6;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
    }

        .product-image-slider-thumbnails .item img {
            cursor: pointer;
        }

        .product-image-slider-thumbnails .item:hover, .product-image-slider-thumbnails .item.slick-current {
            opacity: 1;
        }

.zoom-images-button {
    background: #fff;
    border: 1px solid #ddd;
    font-size: 19px;
    color: #777;
    width: 50px;
    height: 50px;
    line-height: 45px;
    text-align: center;
    display: block;
    position: absolute;
    bottom: 15px;
    left: 15px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.05);
}
/*Product Image Slider Buttons */
.product-image-slider .slick-prev, .product-image-slider .slick-next {
    z-index: 2;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    /*border:1px solid #ddd;*/
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
}

.product-image-slider:hover .slick-prev, .product-image-slider:hover .slick-next {
    opacity: 1;
    visibility: visible;
}

.product-image-slider .slick-prev {
    left: 15px;
}

.product-image-slider .slick-next {
    right: 15px;
}

    .product-image-slider .slick-next::before {
        margin-left: 2px;
    }

.product-image-slider .slick-prev::before {
    margin-right: 2px;
}
/*Product Thumb Slider Buttons */

.product-image-slider-thumbnails {
    /*padding-left:30px;
    padding-right:30px;*/
}

    .product-image-slider-thumbnails .slick-prev, .product-image-slider-thumbnails .slick-next {
        width: 25px;
        height: 100%;
        border: 1px solid #eee;
        border-radius: 0px;
    }

    .product-image-slider-thumbnails .slick-prev {
        left: 0px;
    }

    .product-image-slider-thumbnails .slick-next {
        right: 0px;
    }
/*------------------------------------------------------------------*/
/* Product Content */
/*------------------------------------------------------------------*/
.quickview-popup-data .woocommerce div.product p.price, .quickview-popup-data .woocommerce div.product span.price {
    font-size: 28px;
}

.product-title {
    text-transform: none;
    font-weight: 400;
    margin-bottom: 5px;
    margin-top: 5px;
}

.product-price {
    margin-top: 30px;
    margin-bottom: 30px;
    color: #34b79d;
    font-size: 36px;
    font-weight: 600;
}

    .product-price del {
        color: #999;
        font-weight: 400;
        font-size: 16px;
        margin-right: 10px;
        font-style: italic;
    }

.product-description {
    margin-bottom: 30px;
}

.product-filters form {
    margin-bottom: 30px;
}

.product-filters {
}

    .product-filters .color-selector .entry {
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        width: 25px;
        height: 25px;
        display: inline-block;
        position: relative;
        margin-right: 8px;
        margin-bottom: 8px;
        cursor: pointer;
    }

        .product-filters .color-selector .entry:before {
            border: 1px solid #fff;
            bottom: 2px;
            content: "";
            left: 2px;
            opacity: 0;
            position: absolute;
            right: 2px;
            top: 2px;
        }

        .product-filters .color-selector .entry:after {
            border: 2px solid #333;
            opacity: 0;
            bottom: -4px;
            content: "";
            left: -4px;
            opacity: 0;
            position: absolute;
            right: -4px;
            top: -4px;
            border-radius: 50%;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
        }

        .product-filters .color-selector .entry.active:after {
            border: 2px solid #333;
            opacity: 1;
        }

    .product-filters .size-selector .entry {
        display: inline-block;
        position: relative;
        height: 27px;
        line-height: 25px;
        border: 1px solid #ddd;
        padding-left: 10px;
        padding-right: 10px;
        margin-right: 8px;
        margin-bottom: 8px;
        cursor: pointer;
    }

        .product-filters .size-selector .entry.active {
            border-color: #333;
        }

.single-variation-wrap {
    border-top: 1px solid #eee;
    padding-top: 25px;
    padding-bottom: 25px;
}

.product-quantity {
    position: relative;
}

    .product-quantity .quantity, .product-quantity .quantity:hover, .product-quantity .quantity:focus {
        
    }

    .product-quantity input[type="number"]::-webkit-outer-spin-button, product-quantity input[type="number"]::-webkit-inner-spin-button {
        /* display: none; <- Crashes Chrome on hover */
        -webkit-appearance: none;
        margin: 0;
    }

    .product-quantity .quantity::-ms-expand {
        display: none;
    }

.quantityPlus, .quantityMinus {
    position: absolute;
    right: 0;
    cursor: pointer;
    height: 100%;
    width: 30px;
    top: 0;
}

.quantityPlus {
    border-left: 1px solid #ddd;
}

.quantityMinus {
    left: 0;
    border-right: 1px solid #ddd;
}

    .quantityPlus:before, .quantityMinus:before {
        height: 100%;
        position: relative;
        width: 100%;
        display: block;
        text-align: center;
        line-height: 2.7;
        font-size: 18px;
    }

.quantityPlus:before {
    content: "+";
}

.quantityMinus:before {
    content: "–";
}

single-add_to_cart {
}

.single-add-to-wrap {
    position: relative;
    display: block;
    padding: 0;
    background-color: #f4f4f4;
    border: 1px solid #eee;
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
}

    .single-add-to-wrap .single-add-to-wishlist, .single-add-to-wrap .single-add-to-compare {
        width: 49.5%;
        display: inline-block;
        font-size: 12px;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
        padding-top: 5px;
        padding-bottom: 5px;
    }

.product-meta {
    margin-bottom: 15px;
}

    .product-meta > span, .product-share > span {
        color: #333;
        display: block;
        font-weight: 600;
        margin-bottom: 15px;
    }

        .product-meta > span span, .product-share ul {
            color: #4e4e4e;
            display: inline-block;
            font-weight: 400;
            margin: 0 2px;
        }

.porfolio-content .product-meta > span {
    margin-bottom: 5px;
}

.product-share {
    margin-bottom: 30px;
}

    .product-share ul li, .product-share > span {
        display: inline-block;
    }

    .product-share ul li {
        margin: 0 5px;
    }

        .product-share ul li a {
            display: block;
            color: #777;
        }

            .product-share ul li a:hover {
                color: #34b79d;
            }
/*------------------------------------------------------------------*/
/* Product Tabs */
/*------------------------------------------------------------------*/
.product-tabs-wrapper {
    margin-top: 30px;
}
/* Tabs */
.product-content-tabs {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 0;
}

.product-content-tabs {
    text-align: center;
}

    .product-content-tabs li {
        display: inline-block;
        list-style: none;
    }

        .product-content-tabs li a {
            color: #777;
            display: block;
            text-transform: uppercase;
            font-size: 16px;
            padding-bottom: 8px;
            padding-left: 20px;
            padding-right: 20px;
            border-bottom: 1px solid;
            border-color: transparent;
            font-weight: 500;
        }

            .product-content-tabs li a.active {
                color: #333;
                border-bottom: 1px solid #333;
            }
/* End Tabs */

/*product content wraper*/
.product-content-Tabs_wraper {
    border: 1px solid #eee;
    padding-top: 30px;
    padding-bottom: 30px;
}

    .product-content-Tabs_wraper .product-collapse-title {
        display: none;
        margin-bottom: 2px;
        background: #f6f6f6;
        border: 1px solid #ddd;
        padding: 10px 15px;
        font-weight: 400;
    }

@media (min-width: 776px) {
    .product-content-Tabs_wraper .collapse {
        display: block;
    }
}

@media (max-width: 775px) {
    .product-content-tabs {
        display: none;
    }

    .product-content-Tabs_wraper .product-collapse-title {
        display: block;
    }

    .product-content-Tabs_wraper .product-collapse {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .product-content-Tabs_wraper .tab-pane {
        display: block;
        visibility: visible;
        opacity: 1;
    }
}
/*Producr Description Table*/
.shop_description p {
    margin-bottom: 10px;
    margin-top: 0;
}

.shop_description ul {
    padding-left: 30px;
}

.shop_description ul {
    color: #777;
}
/*Producr Information Table*/
.shop_attributes {
    width: 100%;
}

    .shop_attributes th {
        color: #333;
        font-size: 16px;
        vertical-align: middle;
        font-weight: 600;
    }

table.shop_attributes th, table.shop_attributes td {
    border-bottom: 1px solid #eee;
    border-left: 0 none;
    border-right: 0 none;
    padding: 1.07em 0.71em;
    vertical-align: top;
}

table.shop_attributes tr:last-child th, table.shop_attributes tr:last-child td {
    border-bottom: 0px none;
}

table.shop_attributes th:last-child, table.shop_attributes td:last-child {
    padding-right: 0;
}
/* Product Review --------------------*/
.review-title {
    margin-bottom: 30px;
}

/*Comment Form*/
.single-product-content .comment-form .stars span a::after, .comment-form .stars span a::after {
    font-family: FontAwesome;
    font-size: 14px;
    line-height: 20px;
}

.single-product-content .comment-form .stars span a, .comment-form .stars span a {
    color: #ddd;
}

    .single-product-content .comment-form .stars span a:hover, .single-product-content .comment-form .stars span a.active, .comment-form .stars span a:hover, .comment-form .stars span a.active {
        color: #34b79d;
    }   

    .single-product-content .comment-form .stars span a.star-1::after, .comment-form .stars span a.star-1::after {
        content: "\f005";
    }

    .single-product-content .comment-form .stars span a.star-2::after, .comment-form .stars span a.star-2::after {
        content: "\f005\f005";
    }

    .single-product-content .comment-form .stars span a.star-3::after, .comment-form .stars span a.star-3::after {
        content: "\f005\f005\f005";
    }

    .single-product-content .comment-form .stars span a.star-4::after, .comment-form .stars span a.star-4::after {
        content: "\f005\f005\f005\f005";
    }

    .single-product-content .comment-form .stars span a.star-5::after, .comment-form .stars span a.star-5::after {
        content: "\f005\f005\f005\f005\f005";
    }
/*Comment Review*/
.single-product-content .comments, .comments {
}

    .single-product-content .comments .review-blank, .comments .review-blank {
        font-weight: 300;
        font-style: italic;
    }

    .single-product-content .comments ul.commentlist, .comments ul.commentlist {
        list-style: none;
        padding: 0;
    }

        .single-product-content .comments ul.commentlist li, .comments ul.commentlist li {
            margin-bottom: 45px;
        }

            .single-product-content .comments ul.commentlist li:last-child, .comments ul.commentlist li:last-child {
                margin-bottom: 0px;
            }

.commentlist .avatar {
    float: left;
    margin-right: 15px;
    max-width: 60px;
    width: 100%;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.commentlist .comment-text {
    padding-left: 90px;
}

    .commentlist .comment-text .meta {
        display: inline;
    }

        .commentlist .comment-text .meta strong {
            font-family: "Montserrat", sans-serif;
            font-weight: 500;
            color: #333;
        }

        .commentlist .comment-text .meta time, .commentlist .comment-text .meta em {
            font-size: 12px;
            font-style: italic;
        }
   
    .commentlist .comment-text .star-rating {
        float: right;
    }

.star-rating {
    position: relative;
}
   
    .star-rating span {
        background-position: 0 0;
        background-repeat: no-repeat;
        height: 16px;
        left: 0;
        overflow: hidden;
        position: absolute;
        top: 0;
    }

.commentlist .comment-text .description {
    margin-top: 5px;
}

    .commentlist .comment-text .description p {
        margin-top: 0;
    }

        .commentlist .comment-text .description p:last-child {
            margin-bottom: 0;
        }
/*------------------------------------------------------------------*/
/* Product Carousel */
/*------------------------------------------------------------------*/
.product-carousel {
    margin-top: 60px;
}
/*------------------------------------------------------------------*/
/* Sidebar Widget */
/*------------------------------------------------------------------*/
.sidebar-widget-outline {
    padding: 20px;
    display: block;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.product-brand {
    text-align: center;
}

    .product-brand a.image-link img {
        max-width: 130px;
        width: 100%;
    }

    .product-brand a {
        width: 100%;
        display: block;
    }

        .product-brand a.text-link {
            padding-top: 15px;
            margin-top: 15px;
            border-top: 1px solid #eee;
            margin-bottom: 0;
            font-family: "Montserrat", sans-serif;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 700;
        }

.product-list ul li:last-child {
    margin-bottom: 0;
}

.product-banner-icon-text {
}
/*==========================================================================================================*/
/* Scroll To Top     ||---------------------------- */
/*==========================================================================================================*/

.back-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: center;
    font-size: 20px;
    background: #333;
    color: #fff;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px;
}

    .back-top.visible, .back-top.visible-fade-out, .back-top:hover {
        background: #34b79d;
        text-decoration: none;
        color: #fff;
        -webkit-transition: opacity .3s 0s, visibility 0s 0s;
        -moz-transition: opacity .3s 0s, visibility 0s 0s;
        transition: opacity .3s 0s, visibility 0s 0s;
    }

    .back-top.visible {
        visibility: visible;
        opacity: 0.8;
    }

    .back-top.visible-fade-out {
        opacity: .5;
    }

    .back-top:hover {
        opacity: 1;
    }

@media (max-width: 768px) {
    .back-top {
        opacity: 0;
        visibility: hidden;
    }
}
/*==========================================================================================================*/
/* Pages     ||---------------------------- */
/*==========================================================================================================*/

/*------------------------------------------------------------------*/
/* Blog Page */
/*------------------------------------------------------------------*/

.blog-entry .blog-title {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-entry .blog-box .blog-box-content {
    text-align: left;
}

    .blog-entry .blog-box .blog-box-content .blog-box-content-inner {
        margin-bottom: 45px;
    }
/* Blog Single */

.blog-entry .blog-box .blog-img-wrap + .blog-box-content .blog-box-content-inner {
    transform: translateY(-45px);
    -moz-transform: translateY(-45px);
    -ms-transform: translateY(-45px);
    -o-transform: translateY(-45px);
    -webkit-transform: translateY(-45px);
    margin-bottom: 0;
}

.blog-single .blog-title {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-single .blog-box .blog-box-content {
    text-align: left;
    padding: 0;
}

    .blog-single .blog-box .blog-box-content .blog-box-content-inner {
        transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        -webkit-transform: translateY(0);
        border: 0 none;
        padding-left: 0;
        padding-right: 0;
    }
/** classic **/
.blog-entry.classic{
	margin-right: -15px;
	margin-left: -15px;
	box-sizing: border-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
.blog-entry.classic .blog-box{
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 33.333333%;
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
	margin-bottom:30px;
}
.blog-entry.classic .blog-box .blog-box-content, .blog-entry.classic .blog-box .blog-box-content .blog-box-content-inner{
	padding: 0;
    border: none;
    text-align: center;
    margin-top: 10px;
}
.blog-entry.classic .blog-box .blog-img-wrap + .blog-box-content .blog-box-content-inner{
	transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	-webkit-transform: translateY(0);
}
.blog-entry.classic .blog-description-content{
	margin-bottom:0;
}
.blog-entry.classic .blog-box .blog-meta{
	margin-bottom:5px;
}
.blog-entry.classic .blog-category > a:not(:last-child):after {
    content: ",";
	padding-right: 3px;
}
.blog-entry.classic .blog-category:after {
    content: "/";
    padding-right: 5px;
    padding-left: 5px;
}
@media only screen and (max-width: 991px) {
	.blog-entry.classic .blog-box{
		-webkit-flex: 0 0 50%;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}
@media only screen and (max-width: 540px) {
	.blog-entry.classic .blog-box{
		-webkit-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}
/*------------------------------------------------------------------*/
/* Cart Page */
/*------------------------------------------------------------------*/
.post-8 table {
    width: 100%;
}

    .post-8 table tr th {
        border-bottom: 2px solid #eee;
        vertical-align: middle;
        font-size: 16px;
        line-height: 1.4;
        font-weight: 600;
        text-align: center;
        padding: 15px 10px;
        color: inherit;
        margin: 0;
        text-transform: uppercase;
    }

        .post-8 table tr th.product-remove {
            width: 40px;
        }

        .post-8 table tr th.product-thumbnail {
            width: 10px;
        }

        .post-8 table tr th.product-name {
            text-align: left;
        }

        .post-8 table tr th.product-quantity {
            float: none;
            display: table-cell;
        }

    .post-8 table tr td {
        border-bottom: 1px solid #eee;
        padding: 15px 12px;
        text-align: center;
        vertical-align: middle;
    }

.post-8 td.product-thumbnail img {
    max-width: 80px;
}

.post-8 table tr td.product-name {
    text-align: left;
}

.post-8 td.product-price {
    color: inherit;
    font-size: inherit;
}

.post-8 td.product-quantity, .post-8 td .product-quantity {
    margin: 0;
    float: none;
    display: table-cell;
}

.post-8 td.product-quantity, .post-8 td.product-subtotal {
    font-size: 18px;
    font-weight: 600;
}

.post-8 .cart-product-table-wrap {
    margin-bottom: 30px;
}

.post-8 .cart-actions {
    margin-bottom: 80px;
    /*display: flexbox;*/
    flex-direction: row;
}

.post-8 .cart-collateral {
    width: 100%;
    clear: both;
}

    .post-8 .cart-collateral .cart_totals {
        background: #f8f8f8;
        width: 100%;
        max-width: 480px;
        min-width: 320px;
        float: right;
        padding: 25px 15px 15px 15px;
    }

        .post-8 .cart-collateral .cart_totals h3 {
            text-align: center;
        }

        .post-8 .cart-collateral .cart_totals div.responsive-table {
            background: #fff;
            padding: 10px 20px;
            margin-bottom: 15px;
        }

        .post-8 .cart-collateral .cart_totals table tr td {
            text-align: right;
        }

        .post-8 .cart-collateral .cart_totals table tr th {
            text-align: left;
            text-transform: none;
            border-width: 1px;
        }

        .post-8 .cart-collateral .cart_totals table tr td ul {
            list-style: none;
        }

        .post-8 .cart-collateral .cart_totals table tr.order-total {
            text-align: left;
            border-width: 1px;
        }

            .post-8 .cart-collateral .cart_totals table tr.order-total th, .post-8 .cart-collateral .cart_totals table tr.order-total td {
                text-transform: uppercase;
                font-size: 18px;
                font-weight: 600;
                border-bottom: 0px none;
            }

ul#shipping_method {
    list-style: none;
}

#shipping_method label {
    display: inline-block;
    margin-bottom: 0;
}

.cart-collateral .cart_totals table .shipping a {
    border-bottom: 1px solid;
}

.responsive-table {
    overflow-x: auto;
}
/*------------------------------------------------------------------*/
/* Checkout Page */
/*------------------------------------------------------------------*/
.product-checkout .checkout-order-review {
    background-color: #f8f8f8;
    margin-top: 8px;
    padding: 40px 30px;
}

    .product-checkout .checkout-order-review h3 {
        text-align: center;
    }

    .product-checkout .checkout-order-review .product-checkout-review-order {
        display: flex;
        flex-direction: column;
    }

.product-checkout-review-order .responsive-table {
    background-color: #fff;
    padding: 20px 25px 0;
    margin-bottom: 30px;
}

.product-checkout-review-order table tr th, .product-checkout-review-order table tr td {
    border: medium none;
    max-width: 50%;
    width: 50%;
}

.product-checkout-review-order .product-total, .product-checkout-review-order .cart-subtotal td, .product-checkout-review-order .shipping td, .product-checkout-review-order .order-total td {
    text-align: right;
}

.product-checkout-review-order .cart-subtotal th, .product-checkout-review-order .shipping th {
    text-align: left;
    text-transform: none;
}

.product-checkout-review-order .order-total th {
    text-align: left;
}

.product-checkout-review-order .order-total th, .product-checkout-review-order .order-total td {
    font-size: 22px;
    font-weight: 600;
}

.product-checkout-review-order .order-total td {
    color: #34b79d;
}

.product-checkout-payment {
}

    .product-checkout-payment ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .product-checkout-payment ul li {
            margin-bottom: 20px;
        }

            .product-checkout-payment ul li input[type="radio"], .product-checkout-payment ul li label {
                display: inline-block;
                margin: 0;
            }

            .product-checkout-payment ul li img.paypal-img {
                width: 150px;
                margin-left: 10px;
                margin-right: 10px;
            }
/*------------------------------------------------------------------*/
/* Portfolio Page */
/*------------------------------------------------------------------*/
.portfolio-box {
    margin-bottom: 30px;
}

    .portfolio-box .portfolio-thumb {
        margin-bottom: 15px;
        display: block;
    }

    .portfolio-box .portfolio-content {
        display: block;
        text-align: center;
    }

        .portfolio-box .portfolio-content h5, .portfolio-box .portfolio-content h6, .portfolio-box .portfolio-content p {
            margin: 0;
        }
/*Portfolio Single*/
.portfolio-single-post .media-wrap {
    margin-bottom: 30px;
}

.portfolio-single-post .porfolio-title, .portfolio-single-post .porfolio-content {
    margin-bottom: 30px;
}
/*------------------------------------------------------------------*/
/* All Pages */
/*------------------------------------------------------------------*/
.map.style1 {
    height: 450px;
    border: 1px solid #eee;
}

.Contact-information {
    list-style: none;
    padding: 0;
    color: #777;
}

    .Contact-information li {
        margin-left: 0;
        padding: 0;
    }

        .Contact-information li i {
            margin-right: 10px;
        }
/*------------------------------------------------------------------*/
/* Toggle */
/*------------------------------------------------------------------*/
.toggle-container {
    display: block;
    position: relative;
    margin: 0 0 15px 0;
}

.toggle .toggle-title, .toggle .toggle-title-active {
    display: block;
    position: relative;
    line-height: 26px;
    padding: 0 24px 0 0;
    margin: 0;
    text-transform: none;
    /*font-size: 16px;*/
    font-weight: 400;
    color: #282828;
    cursor: pointer;
}

    .toggle .toggle-title i {
        position: absolute;
        top: 0;
        right: 0;
        width: 16px;
        text-align: center;
        font-size: 14px;
        line-height: 24px;
        font-weight: normal;
    }

.toggle .toggle-title-active {
    font-weight: inherit;
}

    .toggle .toggle-title i.toggle-open, .toggle .toggle-title-active i.toggle-closed {
        display: none;
    }

    .toggle .toggle-title-active i.toggle-open {
        display: block;
    }

.toggle .toggle-content {
    display: block;
    position: relative;
    padding: 15px 0 0 0px;
}
/* Toggle - with Title Background*/

.toggle.toggle-bg .toggle-title, .toggle.toggle-bg .toggle-title-active {
    background-color: #f8f8f8;
    line-height: 44px;
    padding: 0 30px 0 20px;
    border-radius: 2px;
}

    .toggle.toggle-bg .toggle-title i {
        right: 15px;
        line-height: 44px;
    }

.toggle.toggle-bg .toggle-content {
    padding: 12px 30px 0 20px;
}
/* Toggle - Bordered*/

.toggle-border .toggle-container {
    border: 1px solid #eee;
    border-radius: 4px;
}

.toggle.toggle-border .toggle-title, .toggle.toggle-border .toggle-title-active {
    line-height: 44px;
    padding: 0 30px 0 20px;
}

    .toggle.toggle-border .toggle-title i {
        right: 15px;
        line-height: 44px;
    }

.toggle.toggle-border .toggle-content {
    padding: 0 20px 15px 20px;
}
/*------------------------------------------------------------------*/
/* Accordion */
/*------------------------------------------------------------------*/

.accordion {
    margin-bottom: 20px;
}

.accordion_title {
    display: block;
    position: relative;
    line-height: 24px;
    margin: 0;
    /*font-size: 14px;*/
    font-weight: 400;
    text-transform: none;
    color: #282828;
    cursor: pointer;
    border-top: 1px dotted #DDD;
    padding: 10px 0 10px 0px;
}

.accordion_title_active {
    cursor: auto;
}

.accordion_title:first-child {
    border-top: none;
}

.accordion_title i {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    text-align: center;
    font-size: 14px;
    line-height: 44px;
}

    .accordion_title i.accordion-open, .accordion_title_active i.accordion-closed {
        display: none;
    }

.accordion_title_active i.accordion-open {
    display: block;
}

.accordion_content {
    position: relative;
    padding: 0 0 15px 0px;
}
/* Accordion - with Title Background*/

.accordion.accordion-bg .accordion_title, .accordion.accordion-bg .accordion_title_active {
    background-color: #f8f8f8;
    line-height: 44px;
    padding: 0 30px 0 20px;
    margin-bottom: 5px;
    border-top: 0;
}

    .accordion.accordion-bg .accordion_title i {
        right: 15px;
        line-height: 44px;
    }

.accordion.accordion-bg .accordion_content {
    padding: 10px 20px 15px 20px;
}
/* Accordion - Bordered*/

.accordion.accordion-border {
    border: 1px solid #eee;
    border-radius: 4px;
}

    .accordion.accordion-border .accordion_title, .accordion.accordion-border .accordion_title_active {
        border-color: #eee;
        line-height: 44px;
        padding: 0 30px 0 20px;
    }

        .accordion.accordion-border .accordion_title i {
            right: 15px;
            line-height: 44px;
        }

    .accordion.accordion-border .accordion_content {
        padding: 0 15px 15px 20px;
    }
/*------------------------------------------------------------------*/
/* Vertical/Horizontal Tabs */
/*------------------------------------------------------------------*/

.tabs {
    position: relative;
    margin: 0 0 30px 0;
}

ul.tab-nav {
    margin: 0;
    border-bottom: 1px solid #eee;
    list-style: none;
}

    ul.tab-nav li {
        float: left;
        border: 1px solid #eee;
        border-bottom: 0;
        border-left: 0;
        height: 41px;
    }

        ul.tab-nav li:first-child {
            margin-left: 15px;
            border-left: 1px solid #eee;
        }

        ul.tab-nav li a {
            display: block;
            padding: 0 15px;
            color: #282828;
            height: 40px;
            line-height: 40px;
            background-color: #f8f8f8;
            font-size: 14px;
            font-weight: 400;
            text-transform: capitalize;
        }

        ul.tab-nav li.ui-tabs-active a {
            position: relative;
            top: 1px;
            background-color: #FFF;
        }
    /* Tabs - Navigation Style 2*/
    ul.tab-nav.tab-nav2 {
        border-bottom: 0;
    }

        ul.tab-nav.tab-nav2 li {
            border: 0;
            margin-left: 10px;
        }

            ul.tab-nav.tab-nav2 li:first-child {
                margin-left: 0;
                border-left: 0;
            }

            ul.tab-nav.tab-nav2 li a {
                background-color: #f8f8f8;
                border-radius: 3px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
            }

            ul.tab-nav.tab-nav2 li.ui-state-active a {
                top: 0;
                background-color: #34b79d;
                color: #FFF;
            }
/* Tabs - Content Area*/

.tab-container {
    position: relative;
    padding: 20px 0 0;
}

    .tab-container p:first-child {
        margin-top: 0;
    }

    .tab-container p:last-child {
        margin-bottom: 0;
    }

ul.tab-nav li a i {
    position: relative;
    top: 1px;
    font-size: 14px;
    margin-right: 3px;
}
/* Tabs - Bordered*/

.tabs-bordered ul.tab-nav li:first-child {
    margin-left: 0;
}

.tabs-bordered .tab-container {
    border: 1px solid #eee;
    border-top: 0;
    padding: 20px;
}
/* Tabs - Side Tabs*/

.side-tabs ul.tab-nav {
    float: left;
    width: 200px;
    padding: 20px 0;
    border-bottom: 0;
    border-right: 1px solid #eee;
}

    .side-tabs ul.tab-nav li {
        float: none;
        border: 1px solid #eee;
        border-right: 0;
        border-top: 0;
        height: auto;
    }

        .side-tabs ul.tab-nav li:first-child {
            margin-left: 0;
            border-top: 1px solid #eee;
            border-left: 1px solid #eee;
        }

        .side-tabs ul.tab-nav li a {
            height: auto;
            line-height: 44px;
        }

        .side-tabs ul.tab-nav li.ui-tabs-active a {
            top: 0;
            right: -1px;
        }

.side-tabs .tab-container {
    overflow: hidden;
    padding: 15px 0 0 20px;
}
/* Tabs - Side Tabs & Nav Style 2 -----------------------------------*/

.side-tabs ul.tab-nav.tab-nav2 {
    border: 0;
}

    .side-tabs ul.tab-nav.tab-nav2 li {
        border: 0;
        margin: 6px 0 0;
    }

        .side-tabs ul.tab-nav.tab-nav2 li:first-child {
            margin-top: 0;
        }

        .side-tabs ul.tab-nav.tab-nav2 li.ui-state-active a {
            right: 0;
        }
/* Tabs - Side Tabs & Bordered -----------------------------------*/

.tabs-bordered.side-tabs ul.tab-nav {
    position: relative;
    padding: 0;
    z-index: 2;
    margin-right: -1px;
}

    .tabs-bordered.side-tabs ul.tab-nav li a {
        height: auto;
        line-height: 44px;
    }

    .tabs-bordered.side-tabs ul.tab-nav li.ui-tabs-active a {
        right: -1px;
        border-right: 1px solid #FFF;
    }

.tabs-bordered.side-tabs .tab-container {
    overflow: hidden;
    padding: 20px;
    border-top: 1px solid #eee;
}
/*------------------------------------------------------------------*/
/* Message Box */
/*------------------------------------------------------------------*/
.message-box {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid transparent;
    display: block;
    overflow: hidden;
    padding: 1em 1em 1em 4em;
    position: relative;
    font-size: 1em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .message-box .message-icon {
        bottom: 0;
        font-size: 1em;
        left: 0;
        top: 0;
        width: 4em;
        position: absolute;
        font-weight: 400;
        font-style: normal;
    }

        .message-box .message-icon i {
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            position: absolute;
            font-weight: 400;
            font-style: normal;
            font-size: 1.5em;
            line-height: 1;
        }
/*------------------------------------------------------------------*/
/* Nice Select */
/*------------------------------------------------------------------*/
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 0px;
    border: solid 1px #ddd;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

    .nice-select:hover {
        border-color: #ddd;
    }

    .nice-select:active, .nice-select.open, .nice-select:focus {
        border-color: #ddd;
    }

    .nice-select:after {
        border-bottom: 1px solid #999;
        border-right: 1px solid #999;
        content: '';
        display: block;
        height: 5px;
        margin-top: -4px;
        pointer-events: none;
        position: absolute;
        right: 12px;
        top: 50%;
        -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        width: 5px;
    }

    .nice-select.open:after {
        -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .nice-select.open .list {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }

    .nice-select.disabled {
        border-color: #ededed;
        color: #999;
        pointer-events: none;
    }

        .nice-select.disabled:after {
            border-color: #cccccc;
        }

    .nice-select.wide {
        width: 100%;
    }

        .nice-select.wide .list {
            left: 0 !important;
            right: 0 !important;
        }

    .nice-select.right {
        float: right;
    }

        .nice-select.right .list {
            left: auto;
            right: 0;
        }

    .nice-select.small {
        font-size: 12px;
        height: 36px;
        line-height: 34px;
    }

        .nice-select.small:after {
            height: 4px;
            width: 4px;
        }

        .nice-select.small .option {
            line-height: 34px;
            min-height: 34px;
        }

    .nice-select .list {
        background-color: #fff;
        border: 1px solid #ddd;
        box-sizing: border-box;
        margin-top: 4px;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        pointer-events: none;
        position: absolute;
        top: 100%;
        left: 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
        transform: scale(0.75) translateY(-21px);
        -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        z-index: 9;
    }

        .nice-select .list:hover .option:not(:hover) {
            background-color: transparent !important;
        }

    .nice-select .option {
        cursor: pointer;
        font-weight: 400;
        line-height: 40px;
        list-style: none;
        min-height: 40px;
        outline: none;
        padding-left: 18px;
        padding-right: 29px;
        text-align: left;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

        .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
            background-color: #f6f6f6;
        }

        .nice-select .option.selected {
            font-weight: bold;
        }

        .nice-select .option.disabled {
            background-color: transparent;
            color: #999;
            cursor: default;
        }

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}
/*------------------------------------------------------------------*/
/* Magnific Popup */
/*------------------------------------------------------------------*/
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

    .mfp-container:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

    .mfp-preloader a {
        color: #CCC;
    }

        .mfp-preloader a:hover {
            color: #FFF;
        }

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

.mfp-content .quickview-popup-data {
    position: relative;
    background: #FFF;
    padding: 0px;
    max-width: 1100px;
    width: 100%;
    margin: 25px auto;
    overflow-y: auto;
    overflow-x: hidden;
	max-height:90vh;
}

@media all and (min-width: 992px) {
    .mfp-content .quickview-popup-data .container {
        padding-left: 0;
        padding-right: 0;
    }

    .quickview-popup-data .product-page-content {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 30px;
    }
}

@media all and (max-width: 991px) {
    .mfp-content .quickview-popup-data product-image-wrapper {
        padding-top: 15px;
    }
}

button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

    .mfp-close:hover, .mfp-close:focus {
        opacity: 1;
    }

    .mfp-close:active {
        top: 1px;
    }

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

    .mfp-arrow:active {
        margin-top: -54px;
    }

    .mfp-arrow:hover, .mfp-arrow:focus {
        opacity: 1;
    }

    .mfp-arrow:before, .mfp-arrow:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 35px;
        margin-left: 35px;
        border: medium inset transparent;
    }

    .mfp-arrow:after {
        border-top-width: 13px;
        border-bottom-width: 13px;
        top: 8px;
    }

    .mfp-arrow:before {
        border-top-width: 21px;
        border-bottom-width: 21px;
        opacity: 0.7;
    }

.mfp-arrow-left {
    left: 0;
}

    .mfp-arrow-left:after {
        border-right: 17px solid #FFF;
        margin-left: 31px;
    }

    .mfp-arrow-left:before {
        margin-left: 25px;
        border-right: 27px solid #3F3F3F;
    }

.mfp-arrow-right {
    right: 0;
}

    .mfp-arrow-right:after {
        border-left: 17px solid #FFF;
        margin-left: 39px;
    }

    .mfp-arrow-right:before {
        border-left: 27px solid #3F3F3F;
    }

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

    .mfp-iframe-holder .mfp-content {
        line-height: 0;
        width: 100%;
        max-width: 900px;
    }

    .mfp-iframe-holder .mfp-close {
        top: -40px;
    }

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

    .mfp-iframe-scaler iframe {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        background: #000;
    }
/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

    .mfp-figure:after {
        content: '';
        position: absolute;
        left: 0;
        top: 40px;
        bottom: 40px;
        display: block;
        right: 0;
        width: auto;
        height: auto;
        z-index: -1;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        background: #444;
    }

    .mfp-figure small {
        color: #BDBDBD;
        display: block;
        font-size: 12px;
        line-height: 14px;
    }

    .mfp-figure figure {
        margin: 0;
    }

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

        .mfp-img-mobile .mfp-bottom-bar:empty {
            padding: 0;
        }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}
/*------------------------------------------------------------------*/
/* Preloader */
/*------------------------------------------------------------------*/

a.post-edit-link, a.post-edit-link span {
    padding-left: 5px;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,1);
    z-index: 999999;
    display: block;
}

    .preloader .theme-loader {
        position: absolute;
        top: 50%;
        left: 50%;
        text-align: center;
        transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }

        .preloader .theme-loader img {
            width: 100%;
            height: 100%;
            display: block;
            max-height: 80px;
        }

/*----------------------------------------
01_Spinner
----------------------------------------*/
@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.lds-spinner {
    position: relative;
}

    .lds-spinner div {
        left: 94px;
        top: 48px;
        position: absolute;
        -webkit-animation: lds-spinner linear 1s infinite;
        animation: lds-spinner linear 1s infinite;
        background: #c2c2c2;
        width: 12px;
        height: 24px;
        border-radius: 40%;
        -webkit-transform-origin: 6px 52px;
        transform-origin: 6px 52px;
    }

        .lds-spinner div:nth-child(1) {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-animation-delay: -0.916666666666667s;
            animation-delay: -0.916666666666667s;
        }

        .lds-spinner div:nth-child(2) {
            -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
            -webkit-animation-delay: -0.833333333333333s;
            animation-delay: -0.833333333333333s;
        }

        .lds-spinner div:nth-child(3) {
            -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
            -webkit-animation-delay: -0.75s;
            animation-delay: -0.75s;
        }

        .lds-spinner div:nth-child(4) {
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
            -webkit-animation-delay: -0.666666666666667s;
            animation-delay: -0.666666666666667s;
        }

        .lds-spinner div:nth-child(5) {
            -webkit-transform: rotate(120deg);
            transform: rotate(120deg);
            -webkit-animation-delay: -0.583333333333333s;
            animation-delay: -0.583333333333333s;
        }

        .lds-spinner div:nth-child(6) {
            -webkit-transform: rotate(150deg);
            transform: rotate(150deg);
            -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
        }

        .lds-spinner div:nth-child(7) {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
            -webkit-animation-delay: -0.416666666666667s;
            animation-delay: -0.416666666666667s;
        }

        .lds-spinner div:nth-child(8) {
            -webkit-transform: rotate(210deg);
            transform: rotate(210deg);
            -webkit-animation-delay: -0.333333333333333s;
            animation-delay: -0.333333333333333s;
        }

        .lds-spinner div:nth-child(9) {
            -webkit-transform: rotate(240deg);
            transform: rotate(240deg);
            -webkit-animation-delay: -0.25s;
            animation-delay: -0.25s;
        }

        .lds-spinner div:nth-child(10) {
            -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
            -webkit-animation-delay: -0.166666666666667s;
            animation-delay: -0.166666666666667s;
        }

        .lds-spinner div:nth-child(11) {
            -webkit-transform: rotate(300deg);
            transform: rotate(300deg);
            -webkit-animation-delay: -0.083333333333333s;
            animation-delay: -0.083333333333333s;
        }

        .lds-spinner div:nth-child(12) {
            -webkit-transform: rotate(330deg);
            transform: rotate(330deg);
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

.lds-spinner {
    width: 80px !important;
    height: 80px !important;
    -webkit-transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
    transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
}

/*----------------------------------------
02_Eclipse
----------------------------------------*/
@keyframes lds-eclipse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

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

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

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

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

.lds-eclipse {
    position: relative;
}

    .lds-eclipse div {
        position: absolute;
        -webkit-animation: lds-eclipse 1s linear infinite;
        animation: lds-eclipse 1s linear infinite;
        width: 160px;
        height: 160px;
        top: 20px;
        left: 20px;
        border-radius: 50%;
        box-shadow: 0 6px 0 0 #c2c2c2;
        -webkit-transform-origin: 80px 83px;
        transform-origin: 80px 83px;
    }

.lds-eclipse {
    width: 80px !important;
    height: 80px !important;
    -webkit-transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
    transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
}

/*----------------------------------------
03_Ripple
----------------------------------------*/
@keyframes lds-ripple {
    0% {
        top: 94px;
        left: 94px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 17px;
        left: 17px;
        width: 154px;
        height: 154px;
        opacity: 0;
    }
}

@-webkit-keyframes lds-ripple {
    0% {
        top: 94px;
        left: 94px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 17px;
        left: 17px;
        width: 154px;
        height: 154px;
        opacity: 0;
    }
}

.lds-ripple {
    position: relative;
}

    .lds-ripple div {
        box-sizing: content-box;
        position: absolute;
        border-width: 6px;
        border-style: solid;
        opacity: 1;
        border-radius: 50%;
        -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(1) {
            border-color: #c2c2c2;
        }

        .lds-ripple div:nth-child(2) {
            border-color: #c2c2c2;
            -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
        }

.lds-ripple {
    width: 80px !important;
    height: 80px !important;
    -webkit-transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
    transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
}

/*----------------------------------------
04_Spin
----------------------------------------*/
@keyframes lds-spin {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes lds-spin {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.lds-spin {
    position: relative;
}

    .lds-spin div > div {
        position: absolute;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #c2c2c2;
        -webkit-animation: lds-spin 1s linear infinite;
        animation: lds-spin 1s linear infinite;
    }

    .lds-spin div:nth-child(1) > div {
        left: 144px;
        top: 84px;
        -webkit-animation-delay: -0.875s;
        animation-delay: -0.875s;
    }

    .lds-spin > div:nth-child(1) {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transform-origin: 160px 100px;
        transform-origin: 160px 100px;
    }

    .lds-spin div:nth-child(2) > div {
        left: 126.42640685999999px;
        top: 126.42640685999999px;
        -webkit-animation-delay: -0.75s;
        animation-delay: -0.75s;
    }

    .lds-spin > div:nth-child(2) {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: 142.42640686px 142.42640686px;
        transform-origin: 142.42640686px 142.42640686px;
    }

    .lds-spin div:nth-child(3) > div {
        left: 84px;
        top: 144px;
        -webkit-animation-delay: -0.625s;
        animation-delay: -0.625s;
    }

    .lds-spin > div:nth-child(3) {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transform-origin: 100px 160px;
        transform-origin: 100px 160px;
    }

    .lds-spin div:nth-child(4) > div {
        left: 41.57359314px;
        top: 126.42640685999999px;
        -webkit-animation-delay: -0.5s;
        animation-delay: -0.5s;
    }

    .lds-spin > div:nth-child(4) {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        -webkit-transform-origin: 57.57359314px 142.42640686px;
        transform-origin: 57.57359314px 142.42640686px;
    }

    .lds-spin div:nth-child(5) > div {
        left: 24px;
        top: 84px;
        -webkit-animation-delay: -0.375s;
        animation-delay: -0.375s;
    }

    .lds-spin > div:nth-child(5) {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        -webkit-transform-origin: 40px 100px;
        transform-origin: 40px 100px;
    }

    .lds-spin div:nth-child(6) > div {
        left: 41.57359314px;
        top: 41.57359314px;
        -webkit-animation-delay: -0.25s;
        animation-delay: -0.25s;
    }

    .lds-spin > div:nth-child(6) {
        -webkit-transform: rotate(225deg);
        transform: rotate(225deg);
        -webkit-transform-origin: 57.57359314px 57.57359314px;
        transform-origin: 57.57359314px 57.57359314px;
    }

    .lds-spin div:nth-child(7) > div {
        left: 84px;
        top: 24px;
        -webkit-animation-delay: -0.125s;
        animation-delay: -0.125s;
    }

    .lds-spin > div:nth-child(7) {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
        -webkit-transform-origin: 100px 40px;
        transform-origin: 100px 40px;
    }

    .lds-spin div:nth-child(8) > div {
        left: 126.42640685999999px;
        top: 41.57359314px;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    .lds-spin > div:nth-child(8) {
        -webkit-transform: rotate(315deg);
        transform: rotate(315deg);
        -webkit-transform-origin: 142.42640686px 57.57359314px;
        transform-origin: 142.42640686px 57.57359314px;
    }

    .lds-spin div:nth-child(9) > div {
        left: 144px;
        top: 84px;
        -webkit-animation-delay: 0.125s;
        animation-delay: 0.125s;
    }

    .lds-spin > div:nth-child(9) {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: 160px 100px;
        transform-origin: 160px 100px;
    }

.lds-spin {
    width: 80px !important;
    height: 80px !important;
    -webkit-transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
    transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
}

/*----------------------------------------
05_Rolling
----------------------------------------*/
@keyframes lds-rolling {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes lds-rolling {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.lds-rolling {
    position: relative;
}

    .lds-rolling div,
    .lds-rolling div:after {
        position: absolute;
        width: 128px;
        height: 128px;
        border: 8px solid #c2c2c2;
        border-top-color: transparent;
        border-radius: 50%;
    }

    .lds-rolling div {
        -webkit-animation: lds-rolling 1s linear infinite;
        animation: lds-rolling 1s linear infinite;
        top: 100px;
        left: 100px;
    }

        .lds-rolling div:after {
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
        }

.lds-rolling {
    width: 80% !important;
    height: 80% !important;
    -webkit-transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
    transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
}

/*----------------------------------------
06_Ball
----------------------------------------*/
@keyframes lds-ball {
    0%, 100% {
        animation-timing-function: cubic-bezier(0.45, 0, 0.9, 0.55);
    }

    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(0, 96px);
        transform: translate(0, 96px);
        animation-timing-function: cubic-bezier(0, 0.45, 0.55, 0.9);
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@-webkit-keyframes lds-ball {
    0%, 100% {
        animation-timing-function: cubic-bezier(0.45, 0, 0.9, 0.55);
    }

    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(0, 96px);
        transform: translate(0, 96px);
        animation-timing-function: cubic-bezier(0, 0.45, 0.55, 0.9);
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.lds-ball {
    position: relative;
}

    .lds-ball div {
        position: absolute;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: #c2c2c2;
        left: 68px;
        top: 20px;
        -webkit-animation: lds-ball 1s linear infinite;
        animation: lds-ball 1s linear infinite;
    }

.lds-ball {
    width: 80px !important;
    height: 80px !important;
    -webkit-transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
    transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
}

/*------------------------------------------------------------------*/
/* Extra Mix */
/*------------------------------------------------------------------*/
.footer-newsletter form {
    display: inline-block;
}
.footer-newsletter .form-input{
	display:inline-block;
}
.footer-newsletter .frm-input-email {
    border-radius: 50px 0 0 50px;
    vertical-align: middle;
    display: inline-block;
    border: 1px solid #ffffff;
    min-width: 320px;
}

.footer-newsletter .newsletter-btn {
    border-radius: 0 50px 50px 0;
    vertical-align: middle;
    margin-left: -5px;
    display: inline-block;
    margin-top: 0;	
    background-color: #34b79d;
    border: none;
    color: #fff;
    padding: 0 35px;
    text-transform: uppercase;
	height:44px;
}
.footer-newsletter .newsletter-btn:hover{
	background-color: #4ac2aa;
}

/****************************************/
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
/*****************************************/
ul.categories-filter {
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.categories-filter li {
    margin-right: 15px;
}

    .categories-filter li:last-child {
        margin: 0;
    }

    .categories-filter li a {
        background-color: #f6f6f6;
        border: 1px solid transparent;
        box-sizing: border-box;
        display: block;
        font-size: 12px;
        height: 40px;
        line-height: 38px;
        padding: 0 15px;
        transition: all 0.2s linear 0s;
        text-transform: uppercase;
    }

        .categories-filter li a.active, .categories-filter li a:hover {
            background: #34b79d;
            color: #fff !important;
        }

@media only screen and (max-width: 767px) {
    .categories-filter li {
        margin-bottom: 15px;
    }
}

.portfolio-box p {
    text-transform: capitalize;
}

.comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"] {
    width: 100%;
    line-height: 20px;
    font-family: "Montserrat", sans-serif;
}

.comment-form input[type="submit"] {
    background-color: #333;
    border-color: transparent;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

    .comment-form input[type="submit"]:hover {
        background-color: #4b4b4b;
        border-color: transparent;
        color: #fff !important;
    }

.comment-list li {
    padding-bottom: 30px;
    padding-top: 30px;
    border-bottom: 1px solid #eee;
}

.comment-list > li:last-child {
    margin-bottom: 0;
}

.comment-list li ul.children {
    padding-left: 30px;
    margin-top: 30px;
    margin-bottom: 0;
    list-style: none;
}

.comments-area .comment-list li.comment .children li {
    border-top: 1px solid #eee;
    border-bottom: none;
}

    .comments-area .comment-list li.comment .children li:last-child {
        padding-bottom: 0;
    }

.comment-author img {
    margin-right: 15px;
}

.comments-area .comment-body .comment-author img {
    position: absolute;
    left: 0;
    top: 0;
}

#comments .avatar {
    margin-left: 0;
}

.comments-area .comment-body {
    position: relative;
    padding-left: 105px;
}

.comments-area .pingback .comment-body {
    padding-left: 105px;
}

.comments-area .pingback.depth-1 > .comment-body {
    padding-left: 0;
}

.comments-area .comment-list li.pingback .children li {
    border-top: 1px solid #eee;
    border-bottom: none;
}

    .comments-area .comment-list li.pingback .children li:last-child {
        padding-bottom: 0;
    }

.comments-area .comment-body .comment-author {
    line-height: 20px;
    font-size: 16px;
    margin-bottom: 10px;
    float: left;
}

.comments-area .comment-body .comment-metadata {
    line-height: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: right;
}

.comments-area .reply {
    margin-top: 15px;
}

    .comments-area .reply a {
        color: #34b79d;
    }

.comments-area .comment-body p {
    margin-top: 0;
    margin-bottom: 0;
}

.comment-respond {
    padding-bottom: 30px;
    padding-top: 30px;
}

@media only screen and (min-width: 768px) {
    .comment-respond {
        max-width: 60%;
    }

    .woocommerce-Reviews .comment-respond {
        max-width: 90%;
    }
}

.comments-area .comment-body .comment-author .fn {
    text-transform: capitalize;
    vertical-align: middle;
}

.comments-area .comment-body .comment-author .says {
    color: #777;
    margin-left: 3px;
    vertical-align: middle;
    font-style: italic;
}

.comments-area .comment-body .comment-meta a {
    color: #777;
    vertical-align: middle;
    font-size: 13px;
    font-style: italic;
}

.comments-area .nav-links {
    margin-top: 0;
    padding-left: 0;
    text-align: right;
    margin-bottom: 20px;
}

.nav-links .page-numbers {
    background-color: #f6f6f6;
    border: 1px solid transparent;
    box-sizing: border-box;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    height: 36px;
    line-height: 35px;
    padding: 0 12px;
    margin: 0 2px;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    color: #333;
}

    .nav-links .page-numbers:hover {
        color: #fff;
        background-color: #34b79d;
    }

    .nav-links .page-numbers.current {
        color: #fff;
        background-color: #34b79d;
    }
/*************************************/
.post-navigation {
    overflow: hidden;
    padding: 10px;
    margin-bottom: 30px;
    background-color: #EEEEEE;
    width: 100%;
}

    .post-navigation a {
        text-transform: uppercase;
        font-weight: 600;
    }

    .post-navigation .screen-reader-text {
        display: none;
    }

    .post-navigation .nav-previous {
        float: left;
    }

        .post-navigation .nav-previous a {
            padding-left: 15px;
        }

            .post-navigation .nav-previous a:before {
                content: "\f104";
                margin-right: 5px;
                font-family: FontAwesome;
            }

    .post-navigation .nav-next {
        float: right;
        text-align: right;
    }

        .post-navigation .nav-next a {
            padding-right: 15px;
        }

            .post-navigation .nav-next a:after {
                content: "\f105";
                margin-left: 5px;
                font-family: FontAwesome;
            }

    .nav-next, .post-navigation .nav-next {
        margin-top: 0;
    }

.entry-footer {
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    padding: 30px 0 30px;
    clear: both;
}

    .entry-footer .edit-link {
        display: inline-block;
    }

.cat-tags-links {
    margin-bottom: 20px;
    overflow: hidden;
    display: block;
}

    .cat-tags-links .cat-tags-inner {
        margin: 0 0 3px;
    }

    .cat-tags-links .cat-tags-category:before {
        content: "\f07c";
    }

    .cat-tags-links .cat-tags-tag:before {
        content: "\f292";
    }

    .cat-tags-links .cat-tags-category:before, .cat-tags-links .cat-tags-tag:before {
        font-family: FontAwesome;
        padding-right: 5px;
        font-size: 12px;
    }

.entry-footer .edit-link a.post-edit-link {
    background-color: #333;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    padding-top: 13px;
    padding-bottom: 13px;
    height: 44px;
    border: 1px solid transparent;
    -webkit-border-radius: 55px;
    -moz-border-radius: 55px;
    border-radius: 55px;
    outline: none;
    font-weight: 500;
    font-size: 13px;
    padding-left: 25px;
    padding-right: 25px;
    transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
    -moz-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
    -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
    -o-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
}

    .entry-footer .edit-link a.post-edit-link:hover, .entry-footer .edit-link a.post-edit-link:focus {
        background-color: #4b4b4b;
        border-color: transparent;
        color: #fff !important;
    }

.blog .pagination {
    text-align: center;
    float: none;
}

    .blog .pagination h2 {
        display: none;
    }

    .blog .pagination .nav-links {
        display: inline-block;
    }

    .blog .pagination a, .blog .pagination span {
        display: inline-block;
        margin: 0 2px;
        border: 1px solid transparent;
        box-sizing: border-box;
        display: block;
        float: left;
        font-size: 12px;
        font-weight: 600;
        height: 36px;
        line-height: 35px;
        padding: 0 12px;
        transition: all 0.2s linear 0s;
    }

    .blog .pagination a {
        background-color: #f6f6f6;
        color: #333;
    }

        .blog .pagination span, .blog .pagination a:hover {
            background: #34b79d;
            color: #fff;
        }

.comments-area {
    width: 100%;
    overflow: hidden;
}

.format-gallery .post-icon, .format-image .post-icon, .format-quote .post-icon, .format-video .post-icon, .format-audio .post-icon {
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}

.post-fromat-icon {
    display: table;
    margin: 0 auto 10px;
    text-align: center;
}

.blog-box-content .entry-header .icon-thumb-tack + .post-icon {
    padding-left: 5px;
}

.post.sticky .icon-thumb-tack {
    height: 2em;
    width: 2em;
    top: -0.8em;
}

.format-gallery .post-icon:before {
    content: "\f161";
    display: inline-block;
    margin: 0;
    font: 400 30px/1 dashicons;
}

.format-image .post-icon:before {
    content: "\f128";
    display: inline-block;
    margin: 0;
    font: 400 30px/1 dashicons;
}

.format-quote .post-icon:before {
    content: "\f122";
    display: inline-block;
    margin: 0;
    font: 400 30px/1 dashicons;
}

.format-video .post-icon:before {
    content: "\f126";
    display: inline-block;
    margin: 0;
    font: 400 30px/1 dashicons;
}

.format-audio .post-icon:before {
    content: "\f127";
    display: inline-block;
    margin: 0;
    font: 400 30px/1 dashicons;
}

.blog-single .format-quote .blog-description-content p {
    margin-left: 1.75em;
}
/********************************/
.product-item:hover .team-social {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

.product-item .team-social {
    opacity: 0;
    width: 100%;
    bottom: -50px;
    visibility: hidden;
    position: absolute;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.team-social-icon li a {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    color: #ffffff !important;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    text-align: center;
}

    .team-social-icon li a:hover {
        background: rgba(255, 255, 255, 1);
        color: #333 !important;
    }

.search-form {
    position: relative;
}

.blog-entry .no-results .page-content .search-form {
    text-align: center;
    margin: 0 auto;
}

    .blog-entry .no-results .page-content .search-form .search-field {
        width: 100%;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
    }

    .blog-entry .no-results .page-content .search-form .search-submit {
        bottom: 0;
        padding: 10px;
        position: absolute;
        right: 0;
        top: 0;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
    }

        .blog-entry .no-results .page-content .search-form .search-submit .icon {
            height: 20px;
            top: 0;
            width: 20px;
        }

@media only screen and (min-width: 768px) {
    .search-content .search-field {
        min-width: 280px;
    }
}

.widget_recent_entries .post-date {
    color: #777;
    font-style: italic;
    font-size: 13px;
}

    .widget_recent_entries .post-date:before {
        content: "\f073";
        font-family: FontAwesome;
        font-size: 13px;
        line-height: normal;
        padding-right: 6px;
    }

.sidebar-container ul li.recentcomments .comment-author-link {
    font-style: italic;
    color: #777;
    text-transform: capitalize;
}
/*************************************/
.blog-single .blog-box .blog-box-content .blog-box-content-inner {
    padding-bottom: 10px;
}

.widget_tag_cloud .tagcloud a {
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    font-size: 13px !important;
    padding: 4px 15px;
    background: #eee;
    border-radius: 30px;
    -border-radius: 30px;
    border-radius: 30px;
    text-transform: capitalize;
}
/*******************************************/
@media only screen and (min-width: 980px) {
    .nav-label-new, .nav-label-sale {
        position: relative;
        right: 0;
    }

        .nav-label-new:before {
            content: "";
            display: block;
            height: 20px;
            position: absolute;
            top: -40px;
            width: 28px;
			background-image: url("../images/mix.png");
			background-position: 0 -133px;
			background-repeat: no-repeat;
            z-index: 100;
            right: -10px;
        }

        .nav-label-sale:before {
            content: "";
            display: block;
            height: 20px;
            position: absolute;
            top: -40px;
            width: 28px;
            background-image: url("../images/mix.png");
			background-position: 0 -182px;
			background-repeat: no-repeat;
            z-index: 100;
            right: -10px;
        }
}
/**************************************/
.breadcrumb .breadcrumb-link {
    text-transform: capitalize;
}

.widget_media_image {
    overflow: hidden;
    position: relative;
}
    /*shine effect*/
    .widget_media_image a:after {
        content: "";
        position: absolute;
        top: -150%;
        left: -210%;
        width: 200%;
        height: 200%;
        opacity: 0;
        transform: rotate(30deg);
        -moz-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        -o-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        background: rgba(0, 0, 0, 0);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0;
        background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0;
        background: -webkit-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0;
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#fff', GradientType=1 ); /* IE6-9 */
    }

    .widget_media_image a:hover:after {
        opacity: 1;
        top: -30%;
        left: -30%;
        transition-property: left, top, opacity;
        -moz-transition-property: left, top, opacity;
        -o-transition-property: left, top, opacity;
        -webkit-transition-property: left, top, opacity;
        transition-duration: 0.7s, 0.7s, 0.15s;
        -moz-transition-duration: 0.7s, 0.7s, 0.15s;
        -o-transition-duration: 0.7s, 0.7s, 0.15s;
        -webkit-transition-duration: 0.7s, 0.7s, 0.15s;
        transition-timing-function: ease;
        -moz-transition-timing-function: ease;
        -o-transition-timing-function: ease;
        -webkit-transition-timing-function: ease;
    }
    /*End shine effect*/

    .widget_media_image img {
        transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        display: block;
    }

    .widget_media_image:hover img {
        transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }

.sidebar-container .widget .nice-select, .sidebar-container .widget .nice-select.open .list, .widget select, .widget .nice-select, .widget .nice-select.open .list {
    width: 100%;
}

.widget_text .nice-select .option {
    text-overflow: ellipsis;
    overflow: hidden;
}

.widget_text .nice-select {
    text-overflow: ellipsis;
}

    .widget_text .nice-select span.current {
        text-overflow: ellipsis;
        overflow: hidden;
        width: 85%;
        position: absolute;
    }

    .widget_text .nice-select .list {
        max-width: 100%;
    }

.widget_text .textwidget img {
    padding: 5px 0;
}

.calendar_wrap table {
    width: 100%;
}

.calendar_wrap caption {
    caption-side: top;
    text-align: center;
    padding-top: 0;
    padding-bottom: 1em;
}

.calendar_wrap thead th {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.post-password-form label {
    float: left;
}

.post-password-form input[type="submit"] {
    float: left;
    margin-left: 10px;
    padding: 15px 35px;
    background-color: #333;
    color: #fff;
}

    .post-password-form input[type="submit"]:hover {
        background-color: #4b4b4b;
    }

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}

.blog-box .entry-content ul, .blog-box .entry-content ol {
    margin: 0 0 1.5em;
    padding: 0 0 0 40px;
}

.blog-box .entry-content ul {
    /*list-style: disc;*/
}

.blog-box .entry-content ol {
    /*list-style: decimal;*/
}

.blog-box .entry-content li > ul, .blog-box .entry-content li > ol {
    margin-bottom: 0;
}

.blog-box .entry-content table {
    border-collapse: collapse;
    margin: 0 0 1.5em;
    width: 100%;
}

.blog-box .entry-content thead th {
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5em;
}

.blog-box .entry-content th {
    padding: 0.4em;
    text-align: left;
}

.blog-box .entry-content tr {
    border-bottom: 1px solid #eee;
}

.blog-box .entry-content td {
    padding: 0.4em;
}

    .blog-box .entry-content th:first-child, .blog-box .entry-content td:first-child {
        padding-left: 0;
    }

    .blog-box .entry-content th:last-child, .blog-box .entry-content td:last-child {
        padding-right: 0;
    }

.nice-select, .nice-select.open .list {
    /*width:100%;*/
}

.variations .nice-select, .variations .nice-select.open .list {
    width: 100%;
}

/*==========================================================================================================*/
/* Responsive CSS     ||---------------------------- */
/*==========================================================================================================*/

@media only screen and (max-width: 1100px) {
}

@media only screen and (min-width: 980px) and (max-width: 1100px) {
}

@media only screen and (max-width: 979px) {
}

@media only screen and (max-width: 800px) {
    .search-overlay-menu .search-form .search-submit {
        height: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 979px) {
}

@media only screen and (min-width: 768px) {
    .product-quantity {
        width: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .search-overlay-menu .search-form .search-submit {
        height: 60px;
    }

    .breadcrumb .breadcrumb-link {
        text-align: center;
    }

    .breadcrumb h3 {
        text-align: center !important;
        margin-top: 10px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
}

@media only screen and (max-width: 600px) {
    .mega-sub-menu .container {
        width: 100%;
    }

    .side-tabs ul.tab-nav {
        width: 100%;
    }

    .tabs-bordered.side-tabs ul.tab-nav li.ui-tabs-active a {
        border-right: 1px solid #eee;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    /***********Homepage***********/
    .promo-box .promo-item {
        border: none;
    }

     .newsletter-from .frm-input-email {
        margin-bottom: 10px;
    }

    .footer-newsletter .frm-input-email {
        min-width: 280px;
    }
}

@media only screen and (max-width: 479px) {
    /***********Homepage***********/
    .promo-box .promo-item {
        border: none;
    }

    .newsletter-from .frm-input-email{
        min-width: 100%;
        margin-bottom: 10px;
    }

    .footer-newsletter .frm-input-email {
        min-width: 100%;
        border-radius: 50px;
        margin-bottom: 10px;
    }

    .footer-newsletter input[type="submit"] {
        border-radius: 50px;
    }

    .footer-newsletter {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 499px) {
    /***********Homepage***********/
     .newsletter-from .frm-input-email, .footer-newsletter .frm-input-email  {
        min-width: 270px;
    }
}

@media only screen and (min-width: 460px) and (max-width: 479px) {
     .footer-newsletter .frm-input-email {
        min-width: 100%;
        border-radius: 50px 0 0 50px;
        margin-bottom: 0;
    }

    .footer-newsletter input[type="submit"] {
        border-radius: 0 50px 50px 0;
    }
}

@media only screen and (max-width: 460px) {
    .alignleft, .alignright {
        display: block;
        margin-left: auto;
        margin-right: auto;
        float: none;
    }
}

@media only screen and (min-width: 321px) and (max-width: 479px) {
    /***********Homepage***********/
    .newsletter-from .frm-input-email, .footer-newsletter .frm-input-email {
        min-width: 270px;
    }
}

@media only screen and (max-width: 350px) {
    .product-checkout-review-order .responsive-table {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 320px) {
    /***********Homepage***********/
    .newsletter-from .frm-input-email, .footer-newsletter .frm-input-email {
        min-width: 230px;
    }
}
.blog-entry.classic .navigation{
	 width: 100%;
}
.wp-custom-header img{
    display: block;
    margin: 0 auto;
}

/* woocommerce css */
.woocommerce .loader:before {
    display: none;
}
/********************Top Header Cart**************************/
.woocommerce .widget_shopping_cart .cart_list li, .woocommerce.widget_shopping_cart .cart_list li {
    padding-left: 0;
}

.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
    margin-right: 0;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove, .woocommerce.widget_shopping_cart .cart_list li a.remove {
    right: 0;
    left: inherit;
    color: #333 !important;
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.woocommerce a.remove:hover {
    background: none !important;
    color: #34b79d !important;
}

    .woocommerce a.remove:hover i {
        color: #34b79d;
    }

.woocommerce .widget_layered_nav_filters ul li a {
    padding-right: 5px;
}

    .woocommerce .widget_layered_nav_filters ul li a:before {
        color: #333;
    }

.woocommerce .widget_layered_nav ul li.chosen a:before {
    color: #34b79d;
}

.woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a {
    font-weight: normal;
}
.woocommerce.single-product h1.product_title{
    text-transform: none;
    font-weight: 400;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 28px;
    line-height: 1.3;
}
.woocommerce-Price-amount {
    font-weight: 600;
}

.cart-total-price .woocommerce-Price-amount {
    font-weight: normal;
    color: #34b79d;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    font-family: "Montserrat",sans-serif;
    text-decoration: none !important;
    text-transform: uppercase;
    text-align: center;
    outline: none;
    border-width: 1px;
    border-style: solid;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease 0s !important;
    -moz-transition: all 0.3s ease 0s !important;
    -webkit-transition: all 0.3s ease 0s !important;
    -o-transition: all 0.3s ease 0s !important;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    background-color: #333;
    border-color: transparent;
    color: #fff !important;
    padding: 15px 35px !important;
    display: inline-block;
}

    .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
        background-color: #4b4b4b;
        border-color: transparent;
        color: #fff !important;
    }

.cart-action-buttons a {
    width: 100%;
}

    .cart-action-buttons a.checkout {
        margin-top: 15px;
        background-color: #34b79d;
        border-color: transparent;
        color: #fff !important;
    }

        .cart-action-buttons a.checkout:hover {
            background-color: #4ac2aa;
            border-color: transparent;
            color: #fff !important;
        }
/*****************************category page***************/
.sidebar-container .widget {
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

    .sidebar-container .widget:last-child {
        border-bottom: none;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

.sidebar-container .widget_nav_menu li {
    margin-bottom: 15px;
    color: #333;
    position: relative;
}

    .sidebar-container .widget_nav_menu li:last-child {
        margin-bottom: 0;
    }

    .sidebar-container .widget_nav_menu li li {
        margin-bottom: 5px;
    }

        .sidebar-container .widget_nav_menu li li a {
            color: #999;
        }

            .sidebar-container .widget_nav_menu li li a:hover {
                color: #34b79d;
            }

.sidebar-container ul, .sidebar-container ul li {
    list-style: none;
}

.sidebar-container .widget_nav_menu li a {
    display: block;
}

.sidebar-container ul li, .sidebar-container ul li a {
    font-size: 14px;
}

.widget_nav_menu .jq-accordionIcon {
    position: absolute;
    right: 0;
    top: 0;
}

    .widget_nav_menu .jq-accordionIcon::before {
        content: "\f107";
        font-family: FontAwesome;
        font-weight: normal;
        color: #aaa;
    }

.widget_nav_menu .is-active > .jq-accordionIcon:before {
    content: "\f106";
    color: #34b79d;
}

.widget_nav_menu .sub-menu {
    margin: 5px 0 0 5px;
}

.sidebar-container .widget_recent_entries li, .sidebar-container .widget_search li, .sidebar-container .widget_recent_comments li, .sidebar-container .widget_archive li, .sidebar-container .widget_categories li, .sidebar-container .widget_meta li, .sidebar-container .widget_pages li, .sidebar-container .widget_rss li {
    margin-bottom: 10px;
}

    .sidebar-container .widget_recent_entries li:last-child, .sidebar-container .widget_search li:last-child, .sidebar-container .widget_recent_comments li:last-child, .sidebar-container .widget_archive li:last-child, .sidebar-container .widget_categories li:last-child, .sidebar-container .widget_meta li:last-child, .sidebar-container .widget_pages li:last-child, .sidebar-container .widget_rss li:last-child {
        margin-bottom: 0px;
    }
/********************************/
.price_slider_wrapper {
    padding-top: 10px;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background: #34b79d;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    height: 15px;
    width: 15px;
    display: block;
    margin-top: -7px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    cursor: w-resize;
    background: #34b79d;
    top: inherit;
    margin-left: 0;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
}
/********************************/
.product-list-item ul.products {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.woocommerce .products ul, .woocommerce ul.products {
    clear: both;
    list-style: outside none none;
    margin-top: 0;
    padding: 0;
    width: 100%;
}
/**********Responsive*************/
@media (min-width: 320px) and (max-width: 575px) {
    .woocommerce ul.products.col-count-3 li.product, .woocommerce-page ul.products.col-count-3 li.product {
        padding-right: 15px;
        padding-left: 15px;
        margin: 0 0 30px;
        width: 100%;
    }

    .woocommerce ul.products.col-count-4 li.product, .woocommerce-page ul.products.col-count-4 li.product {
        padding-right: 15px;
        padding-left: 15px;
        margin: 0 0 30px;
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .woocommerce ul.products.col-count-3 li.product, .woocommerce-page ul.products.col-count-3 li.product {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 15px;
        padding-left: 15px;
        margin: 0 0 30px;
        width: 100%;
    }

    .woocommerce ul.products.col-count-4 li.product, .woocommerce-page ul.products.col-count-4 li.product {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 15px;
        padding-left: 15px;
        margin: 0 0 30px;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .woocommerce ul.products.col-count-3 li.product, .woocommerce-page ul.products.col-count-3 li.product {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 49.6%;
        -ms-flex: 0 0 49.6%;
        flex: 0 0 49.6%;
        max-width: 49.6%;
        padding-right: 15px;
        padding-left: 15px;
        margin: 0 0 30px;
        width: 100%;
    }

    .woocommerce ul.products.col-count-4 li.product, .woocommerce-page ul.products.col-count-4 li.product {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 49.6%;
        -ms-flex: 0 0 49.6%;
        flex: 0 0 49.6%;
        max-width: 49.6%;
        padding-right: 15px;
        padding-left: 15px;
        margin: 0 0 30px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .woocommerce ul.products.col-count-3 li.product, .woocommerce-page ul.products.col-count-3 li.product {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 32.9%;
        -ms-flex: 0 0 32.9%;
        flex: 0 0 32.9%;
        max-width: 32.9%;
        padding-right: 15px;
        padding-left: 15px;
        margin: 0 0 30px;
        width: 100%;
    }

    .woocommerce ul.products.col-count-4 li.product, .woocommerce-page ul.products.col-count-4 li.product {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 24.6%;
        -ms-flex: 0 0 24.6%;
        flex: 0 0 24.6%;
        max-width: 24.6%;
        padding-right: 15px;
        padding-left: 15px;
        margin: 0 0 30px;
        width: 100%;
    }
}

.woocommerce .product-list-item.product-list-view ul.products li.product {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
}

    .woocommerce .product-list-item.product-list-view ul.products li.product.product-category {
       /* display: none;*/
    }

ul.products li.product.product-category mark.count {
  /*  display: none;*/
  background:none;
}
.woocommerce .product-list-item.product-list-view ul.products li.product.product-category img{
    margin-left: auto;
    width: auto;
    margin-right: auto;
}
.product-filter-content .product-filter-content-inner > div.woocommerce-notices-wrapper{
    display:block;
}
@media only screen and (min-width: 540px) {
    .woocommerce .product-list-item.product-list-view ul.products li.product .product-item .product-item-inner {
        float: left;
        margin-bottom: 0;
        max-width: 220px;
    }
}

.woocommerce .product-list-item.product-list-view ul.products li.product .product-detail {
    padding-left: 30px;
    text-align: left;
}

.woocommerce .product-list-item.product-list-view ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    height: inherit;
    white-space: normal;
}

.woocommerce .product-list-item.product-list-view ul.products li.product .star-rating {
    display: block;
    margin-top: 20px;
    font-size: 1em;
}

.product-list-item.product-list-view .product-item a.tag:after {
    content: ",";
    margin: 0 3px;
}


.product-list-item.product-list-view .product-item a.tag:last-child:after {
    content: "";
}

.woocommerce .product-list-item ul.products {
    border-bottom: 1px solid #eee;
}

    .woocommerce .product-list-item ul.products li.product .woocommerce-loop-product__title:hover {
        color: #34b79d;
    }

.woocommerce ul.products li.product .onsale {
    margin: 0;
    padding: 0;
    top: 10px;
    left: 10px;
    line-height: 34px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    font-size: 10px;
    background: #f55151;
    z-index: 8;
}

.woocommerce ul.products li.product .button {   
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    font-weight: 400;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    text-transform: capitalize;
    line-height: 30px;    
    padding: 0;
}

.woocommerce ul.products li.product.product-category .woocommerce-loop-category__title {
    text-align: center;
    font-weight: 600;
}

.woocommerce ul.products li.product .price del {
    display: inline-block;
}

.woocommerce ul.products li.product .price ins {
    background: none;
    font-weight: 700;
}

.woocommerce ul.products li.product .price {
    font-family: "Montserrat",sans-serif;
    font-weight: 700;
    color: #333;
    margin-top: 0px;
    font-size: 16px;
    margin-bottom: 0;
}

.woocommerce nav.woocommerce-pagination {
    text-align: right;
}

    .woocommerce nav.woocommerce-pagination ul {
        border: none;
        margin: 0;
    }

.woocommerce .woocommerce-pagination ul.page-numbers li, .woocommerce-page .woocommerce-pagination ul.page-numbers li {
    display: inline-block;
    float: left;
    list-style: outside none none;
    margin-bottom: 0;
    padding: 0 4px;
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background: #34b79d;
    color: #fff;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
    background-color: #f6f6f6;
    border: 1px solid transparent;
    box-sizing: border-box;
    display: block;
    float: left;
    font-size: 12px;
    font-weight: 600;
    height: 36px;
    line-height: 35px;
    padding: 0 12px;
    transition: all 0.2s linear 0s;
    color: #333;
}
.woocommerce nav.woocommerce-pagination ul li a.prev,
.woocommerce nav.woocommerce-pagination ul li a.next {
    font-size:0;
}
.woocommerce nav.woocommerce-pagination ul li a.prev:before,
.woocommerce nav.woocommerce-pagination ul li a.next:before{    
    font-family:FontAwesome;
    font-size:12px;
    font-weight:normal;
}
.woocommerce nav.woocommerce-pagination ul li a.prev:before{
    content:"\f100";
}
.woocommerce nav.woocommerce-pagination ul li a.next:before{
    content:"\f101";    
}
.woocommerce .woocommerce-ordering {
    margin-bottom: 0;
}

.only-subcategories {
    display: none;
}

.tax-product_cat .only-subcategories {
    display: block;
}

.product-filter-content {
    line-height: normal;
}
/******************************************/
.woocommerce .widget_price_filter .price_slider_amount .button {
    font-size: 12px;
    background-color: #333;
    border-color: transparent;
    color: #fff !important;
    padding: 11px 30px !important;
}

    .woocommerce .widget_price_filter .price_slider_amount .button:hover {
        background-color: #4b4b4b;
        border-color: transparent;
        color: #fff !important;
    }

.woocommerce .widget_price_filter .price_slider_amount {
    font-size: 14px;
    color: #777;
}

.price_slider_wrapper .price_label span {
    font-weight: 600;
    color: #333;
}
/******************************************/
.woocommerce .widget_layered_nav ul li span.count {
    color: #bbb;
    float: right;
}
/******************************************/
.widget_product_tag_cloud a {
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    font-size: 13px !important;
    padding: 4px 15px;
    background: #eee;
    border-radius: 30px;
    -border-radius: 30px;
    border-radius: 30px;
    text-transform: capitalize;
}
/******************************************/
.widget.widget_top_rated_products ul li {
    border-bottom: 1px solid #eee;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-top: 0;
    position: relative;
}

    .widget.widget_top_rated_products ul li:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.widget ul.product_list_widget li img {
    float: left;
    width: 65px;
    margin-right:15px;
    margin-left:0;
}

    .widget ul.product_list_widget li .product-img img {
        float: none;
        width: 100%;
        margin: 0;
    }

.widget ul.product_list_widget li .product-content {
    border: 0 none;
    display: table-cell;
    float: none;
    padding: 0 0 0 15px;
    text-align: left;
    vertical-align: top;
    width: 75%;
}

.widget.widget_top_rated_products ul li .product-title {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: normal;
    margin-top: 0;
}

.woocommerce ul.cart_list li .star-rating, .woocommerce ul.product_list_widget li .star-rating {
    font-size: 0.8em;
    margin-bottom: 5px;
    margin-top: 5px;
}

.woocommerce ul.product_list_widget .woocommerce-Price-amount.amount {
    font-size: 12px;
    font-family: "Montserrat",sans-serif;
}

.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
    float: none;
    display: inline-block;
}

.woocommerce .product-filter-content > .product-filter-content-inner .woocommerce-result-count, .woocommerce-page .product-filter-content > .product-filter-content-inner .woocommerce-result-count {
    float: none;
    display: inline-block;
    margin: 0;
    padding: 0;
}
@media (max-width: 767px){
    .woocommerce .woocommerce-result-count{
        display:none !important;
    }
}
/**************************************/
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    width: 100%;
    margin-bottom: 0;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    margin-top: 30px;
    margin-bottom: 30px;
    color: #34b79d;
    font-size: 36px;
    font-weight: 600;
}

.woocommerce-product-details__short-description {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #777;
}

.woocommerce div.product p.stock {
    color: #34b79d;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.woocommerce div.product form.cart .variations label {
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    line-height: 40px;
}

.woocommerce div.product form.cart .variations select {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    appearance: menulist-button;
    -webkit-appearance: menulist-button;
    margin-right: 0;
    margin-bottom: 5px;
    min-width:100%;
}
.woocommerce div.product form.cart .variations tr + tr{
    margin-top:1em;
}
.woocommerce-variation-price .price {
    display: block;
}

.woocommerce div.product form.cart .reset_variations {
    font-size: 12px;
    margin-bottom: 0;    
}
.quickview-popup-data .woocommerce div.product form.cart .reset_variations {
        margin-bottom: 20px;
        display:block;
}
.woocommerce form .form-row.woocommerce-validated .select2-container, .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select {
    -webkit-appearance: menulist;
    appearance: menulist;
}

.woocommerce div.product form.cart .variations td.label {
    padding: 0 !important;
    margin: 0 !important;
    line-height: normal;
}

.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th {
    line-height: normal;
}

.woocommerce div.product form.cart .variations {
    margin-bottom: 0;
}

    .woocommerce div.product form.cart .variations .nice-select {
        margin-bottom: 15px;
    }

.woocommerce-product-details__short-description p {
    padding: 0;
    margin: 0;
}

.woocommerce div.product form.cart {
    border-top: 1px solid #eee;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-bottom: 0;
}

    .woocommerce div.product form.cart div.quantity {
        position: relative;
        width: 120px;
        float: left;
        display: block;
        margin: 0 20px 0 0;
    }
.quickview-popup-data .woocommerce div.product form.cart div.quantity {
    margin-bottom: 30px;
}
.woocommerce .quantity .qty {
    margin: 0;
    -webkit-appearance: none !important;
    -moz-appearance: textfield !important;
    width: 100%;
    min-width: 80px;
    border-color: #ddd;
    text-align: center;
    padding-left: 0;
    padding-right: 5px;
    padding-top: 16px;
    padding-bottom: 16px;
    height: 50px;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #333;
    border-color: transparent;
    color: #fff;
}

    .woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover {
        background-color: #333;
        border-color: transparent;
        color: #fff;
    }

    .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
        background-color: #4b4b4b;
        border-color: transparent;
        color: #fff;
    }

.single-product .product .product-page-content .yith-wcwl-add-to-wishlist {   
    display: inline-block;
    padding-right: 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: uppercase;
}

    .single-product .product .product-page-content .yith-wcwl-add-to-wishlist a:before {
        font-family: FontAwesome;
        content: "\f004";
        padding-right: 5px;
    }

    .single-product .product .product-page-content .yith-wcwl-add-to-wishlist a {
        font-size: 12px;
        line-height: 1;
        font-weight: 500;
        font-family: "Montserrat",sans-serif;
        width: auto;
        height: auto;
    }

    .single-product .product .product-page-content .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
        padding-top: 7px;
        padding-bottom: 5px;
    }

        .single-product .product .product-page-content .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
            width: auto;
            height: auto;
        }

.woocommerce .product-page-content a.compare {   
    display: inline-block;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    line-height: 25px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    font-family: "Montserrat",sans-serif;
    text-align: center;
}

    .woocommerce .product-page-content a.compare:before {
        font-family: FontAwesome;
        content: "\f021";
        padding-right: 5px;
    }

.product_meta {
    margin-bottom: 15px;
    margin-top: 25px;
}

    .product_meta > span {
        color: #333;
        display: block;
        font-weight: 600;
        margin-bottom: 15px;
    }

        .product_meta > span span, .product_meta > span a {
            color: #4e4e4e;
            display: inline-block;
            font-weight: 400;
            margin: 0 2px;
        }

            .product_meta > span span, .product_meta > span a:hover {
                color: #34b79d;
            }

.woocommerce span.onsale {
    margin: 0;
    padding: 0;
    top: 0px;
    right: 0;
    left: 10px;
    line-height: 34px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    font-size: 10px;
    background: #f55151;
}

.woocommerce div.product div.images img {
    width: 100%;
    max-width: 100%;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    width: auto;
}

.single-product.woocommerce .thumbnails li {
    margin-left: 5px;
    margin-right: 5px;
}

.caroufredsel_wrapper, .yith_magnifier_gallery {
   
}

@media only screen and (max-width: 500px) {
    .caroufredsel_wrapper, .yith_magnifier_gallery {
        
    }
}

.yith_magnifier_zoom_magnifier {
    background: #fff;
}
/***********************************/
.woocommerce #content div.product .woocommerce-tabs, .woocommerce div.product .woocommerce-tabs, .woocommerce-page #content div.product .woocommerce-tabs, .woocommerce-page div.product .woocommerce-tabs {
    margin-top: 30px;
}

    .woocommerce div.product .woocommerce-tabs ul.tabs {
        margin-bottom: -1px;
        padding: 0;
    }

    .woocommerce div.product .woocommerce-tabs .panel .product-collapse-title {
        display: none;
        margin-bottom: 2px;
        background: #f6f6f6;
        border: 1px solid #ddd;
        padding: 10px 15px;
        font-weight: 400;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        margin-bottom: 0px;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-bottom: 1px solid #eee;
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 0;
        background: none;
    }

        .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
            border-bottom: 1px solid #333;
            border-left: none;
            border-right: none;
            border-top: none;
            background: none;
        }

        .woocommerce div.product .woocommerce-tabs ul.tabs li a {
            color: #777;
            display: block;
            text-transform: uppercase;
            font-size: 16px;
            padding-bottom: 8px;
            padding-left: 20px;
            padding-right: 20px;
            padding-top: 0;
            font-weight: normal;
        }

        .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
            color: #333;
        }

        .woocommerce div.product .woocommerce-tabs ul.tabs li:after, .woocommerce div.product .woocommerce-tabs ul.tabs li:before {
            display: none;
        }

    .woocommerce div.product .woocommerce-tabs .panel {
        border: 1px solid #eee;
        padding-top: 40px;
        padding-bottom: 30px;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        padding-left: 30px;
        padding-right: 30px;
        margin: 0;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
    }

.product-content-Tabs_wraper {
    padding-left: 30px;
    padding-right: 30px;
}

@media only screen and (max-width: 775px) {
    .product-content-Tabs_wraper {
        padding: 0;
        border: none;
    }
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-color: #eee;
}

.woocommerce ul.products li.product .star-rating {
    display: none;
}
/*******************************/
.woocommerce div.product div.images .flex-control-thumbs {
    margin-top: 15px;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    .woocommerce div.product div.images .flex-control-thumbs li {
        padding-left: 7px;
        padding-right: 7px;
    }

    .woocommerce div.product div.images .flex-control-thumbs li {
        width: 100%;
    }

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
    clear: none;
}

.flex-control-thumbs .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.flex-control-thumbs .owl-prev, .flex-control-thumbs .owl-next {
    width: 25px;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 0px;
    position: absolute;
    text-align: center;
    background: #fff;
    cursor: pointer;
}

    .flex-control-thumbs .owl-prev i, .flex-control-thumbs .owl-next i {
        position: relative;        
    }

.flex-control-thumbs .owl-prev {
    left: 0;
}

.flex-control-thumbs .owl-next {
    right: 0;
}

    .flex-control-thumbs .owl-prev.disabled, .flex-control-thumbs .owl-next.disabled {
        display: none;
    }
/*****************************/
.woocommerce table.shop_attributes {
    border: none;
    margin-bottom: 0;
}

    .woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td {
        border-bottom: 1px solid #eee;
        border-left: 0 none;
        border-right: 0 none;
        padding: 1.07em 0.71em;
        vertical-align: top;
        font-style: normal;
    }

        .woocommerce table.shop_attributes th:last-child, .woocommerce table.shop_attributes td:last-child {
            padding-right: 0;
        }

    .woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td {
        border-bottom: 1px solid #eee;
        border-left: 0 none;
        border-right: 0 none;
        padding: 1.07em 0.71em;
        vertical-align: top;
        font-style: normal;
    }

/*******************************/
.portfolio.type-portfolio + .comments-area .review-title {
    padding-top: 30px;
}
.woocommerce #reviews #comments{
    margin-bottom:30px;
}
.woocommerce #reviews #comments h2,
.review-title, .comment-reply-title {
    margin-bottom: 15px;
    display: block;
    font-size: 14px;
    font-weight:700;
     font-size: 14px;
    line-height: normal;
}

.woocommerce #reviews #comments ol.commentlist li {
    margin-bottom: 45px;
}

    .woocommerce #reviews #comments ol.commentlist li img.avatar {
        max-width: 60px;
        width: 100%;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        padding: 0;
        border: none;
        margin-right: 15px;
    }

    .woocommerce #reviews #comments ol.commentlist li .comment-text {
        margin-bottom: 0;
        border: none;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        padding-right: 0;
        padding-left: 2.5em;
        padding-top: 0;
    }

        .woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
            font-size: 14px;
            font-weight: 400;
            color: #333;
            text-transform: capitalize;
        }

.woocommerce-review-link {
    margin-left: 7px;
    color: #f55151;
}

.woocommerce #reviews #comment {
    height: 120px;
    font-size: 13px !important;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    padding: 15px;
}
/*****************************/
.related_products, .upsells_products {
    margin-top: 60px;
}

@media only screen and (min-width: 1200px) {
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        float: left;
        display: inline-block;
        margin: 0 0 30px;
        padding: 0 15px;
        position: relative;
        width: 25%;
    }

    .woocommerce ul.products.columns-1 li.product, .woocommerce-page ul.products.columns-1 li.product {
        width: 100%;
    }

    .woocommerce ul.products.columns-2 li.product, .woocommerce-page ul.products.columns-2 li.product {
        width: 50%;
    }

    .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
        width: 33.33%;
    }

    .woocommerce ul.products.columns-5 li.product, .woocommerce-page ul.products.columns-5 li.product {
        width: 20%;
    }

    .woocommerce ul.products.columns-6 li.product, .woocommerce-page ul.products.columns-6 li.product {
        width: 16.666%;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (min-width: 991px) and (max-width: 1199px) {
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce-page[class*=columns-] ul.products li.product, .woocommerce[class*=columns-] ul.products li.product {
        width: 30%;
        margin: 0 1.3% 3% 1.2%;
    }

    .woocommerce ul.products.columns-5 li.product, .woocommerce-page ul.products.columns-5 li.product,
    .woocommerce ul.products.columns-6 li.product, .woocommerce-page ul.products.columns-6 li.product {
        width: 18%;
        margin-left: 1%;
        margin-right: 1%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 990px) {
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product, 
    .woocommerce-page[class*=columns-] ul.products li.product, 
    .woocommerce[class*=columns-] ul.products li.product,
    .woocommerce ul.products.columns-2 li.product, .woocommerce-page ul.products.columns-2 li.product,
    .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product,
    .woocommerce ul.products.columns-4 li.product, .woocommerce-page ul.products.columns-4 li.product,
    .woocommerce ul.products.columns-5 li.product, .woocommerce-page ul.products.columns-5 li.product,
    .woocommerce ul.products.columns-6 li.product, .woocommerce-page ul.products.columns-6 li.product {
        width: 46%;
        margin: 0 2.5% 3% 1.5%;
    }

    .woocommerce ul.products.columns-1 li.product, .woocommerce-page ul.products.columns-1 li.product{
        width: 100%;
        margin: 0 0 3% 0;
    }
   
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .woocommerce ul.products.columns-1 li.product, .woocommerce-page ul.products.columns-1 li.product {
        width: 100%;
        margin: 0 0 3% 0;
    }

    .woocommerce ul.products.columns-2 li.product, .woocommerce-page ul.products.columns-2 li.product,
    .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product,
    .woocommerce ul.products.columns-4 li.product, .woocommerce-page ul.products.columns-4 li.product,
    .woocommerce ul.products.columns-5 li.product, .woocommerce-page ul.products.columns-5 li.product,
    .woocommerce ul.products.columns-6 li.product, .woocommerce-page ul.products.columns-6 li.product {
        width: 46%;
        margin: 0 2.5% 3% 1.5%;
    }
    
}

@media only screen and (max-width: 480px) {

    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product, 
    .woocommerce-page[class*=columns-] ul.products li.product, 
    .woocommerce[class*=columns-] ul.products li.product,
    .woocommerce ul.products.columns-2 li.product, .woocommerce-page ul.products.columns-2 li.product,
    .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product,
    .woocommerce ul.products.columns-4 li.product, .woocommerce-page ul.products.columns-4 li.product,
    .woocommerce ul.products.columns-5 li.product, .woocommerce-page ul.products.columns-5 li.product,
    .woocommerce ul.products.columns-6 li.product, .woocommerce-page ul.products.columns-6 li.product {
        width: 100%;
    }

    .woocommerce ul.products.columns-1 li.product, .woocommerce-page ul.products.columns-1 li.product {
        width: 100%;
        margin: 0 0 3% 0;
    }
}

.woocommerce.product-slider ul.products li.product {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
}

.woocommerce .related_products ul.products li.product, .woocommerce .upsells_products ul.products li.product {
    width: 100%;
    padding: 0;
}

.woocommerce #respond input#author, .woocommerce #respond input#email {
    padding-top: 13px;
    padding-bottom: 13px;
    height: 44px;
    width: 100%;
}
/************************Cart Page**********************/
.woocommerce table.shop_table {
    border: 0;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    margin: 0;
}

    .woocommerce table.shop_table th {
        border-bottom: 2px solid #eee;
        vertical-align: middle;
        font-size: 16px;
        line-height: 1.4;
        font-weight: 600;
        text-align: center;
        padding: 15px 10px;
        color: inherit;
        margin: 0;
        text-transform: uppercase;
    }

    .woocommerce table.shop_table td {
        border-top: 0;
        border-bottom: 1px solid #eee;
        padding: 15px 12px;
        text-align: center;
        vertical-align: middle;
    }

        .woocommerce table.shop_table td.product-price {
            color: inherit;
            font-size: inherit;
        }

        .woocommerce table.shop_table td.actions {
            /*  margin-bottom: 80px;*/
            margin-bottom: 0px;
            margin-top: 30px;
            border-bottom: 0;
        }

.woocommerce a.remove {
    color: #333 !important;
    font-size: 13px;
    height: inherit;
    width: inherit;
    font-weight: 400;
}

.woocommerce .product-remove a.remove {
    background: #333;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 15px;
    margin: 0 auto;
    color: #fff !important;
}

    .woocommerce .product-remove a.remove:hover {
        background: #34b79d !important;
    }

.woocommerce table tr th.product-name, .woocommerce table tr td.product-name {
    text-align: left;
}

.woocommerce table td.product-subtotal {
    font-size: 18px;
    font-weight: 600;
}

#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
    max-width: 80px;
    width: inherit;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
    padding-top: 13px;
    padding-bottom: 13px;
    height: 44px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
    -webkit-border-radius: 55px;
    -moz-border-radius: 55px;
    border-radius: 55px;
    color: #333;
    outline: none;
    font-weight: 400;
    font-size: 13px;
    padding-left: 25px;
    padding-right: 25px;
    transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
    -moz-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
    -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
    -o-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
    display: inline-block;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    width: auto;
}

.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    margin-top: 80px;
}

    .woocommerce .cart-collaterals .cross-sells, .woocommerce-page .cart-collaterals .cross-sells {
        width: 58%;
    }

    .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
        background: #f8f8f8;
        width: 40%;
        min-width: 320px;
        float: right;
        padding: 25px 15px 15px 15px;
    }

        .woocommerce .cart-collaterals .cart_totals h2, .woocommerce-page .cart-collaterals .cart_totals h2 {
            text-align: center;
            font-size:20px;
            line-height:22px;
        }

        .woocommerce .cart-collaterals .cart_totals .shop_table_responsive, .woocommerce-page .cart-collaterals .cart_totals .shop_table_responsive {
            background: #fff;
            padding: 10px 20px;
            margin-bottom: 15px;
        }

        .woocommerce .cart-collaterals .cart_totals table th, .woocommerce .cart-collaterals .cart_totals table td {
            border-bottom: 1px solid #eee;
            border-top: 0;
            line-height: 1.4;
            text-transform: none;
        }

        .woocommerce .cart-collaterals .cart_totals table .order-total th, .woocommerce .cart-collaterals .cart_totals table .order-total td {
            border-bottom: 0;
        }

        .woocommerce .cart-collaterals .cart_totals table th {
            font-weight: 600;
            text-align: left;
        }

        .woocommerce .cart-collaterals .cart_totals .woocommerce-Price-amount.amount {
            font-weight: 400;
        }

        .woocommerce .cart-collaterals .cart_totals table .order-total .woocommerce-Price-amount.amount {
            text-transform: uppercase;
            font-size: 18px;
            font-weight: 600;
        }

        .woocommerce .cart-collaterals .cart_totals table td {
            font-weight: 400;
            text-align: right;
        }

            .woocommerce .cart-collaterals .cart_totals table td .select2 {
                text-align: left;
            }

.woocommerce-checkout .woocommerce-checkout-review-order {
    background: #f8f8f8;
    padding: 25px 15px 15px 15px;
}

.woocommerce form .form-row .input-checkbox, .woocommerce-account-fields .input-checkbox, .woocommerce-shipping-fields .input-checkbox {
    margin: -2px 4px 0 0;
}

@media only screen and (max-width: 810px) {
    .woocommerce .cart-collaterals .cross-sells, .woocommerce-page .cart-collaterals .cross-sells {
        width: 100%;
    }

    .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
        width: 100%;
        min-width: inherit;
    }
}

#add_payment_method .wc-proceed-to-checkout, .woocommerce-cart .wc-proceed-to-checkout, .woocommerce-checkout .wc-proceed-to-checkout {
    padding: 0;
}

    #add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
        background-color: #34b79d;
        border-color: transparent;
        color: #fff !important;
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 0;
    }

        #add_payment_method .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button:hover {
            background-color: #4ac2aa;
            border-color: transparent;
            color: #fff !important;
        }

.woocommerce .cart-collaterals .cross-sells ul.products li, .woocommerce-page .cart-collaterals .cross-sells ul.products li {
    width: 100%;
    padding: 0;
    margin: 0;
}
/********************************CheckoutPage*********************/

.woocommerce-info, .woocommerce-message {
    border: none;
}

@media only screen and (min-width: 479px) {
    .woocommerce-info, .woocommerce-message {
        line-height: 40px;
    }
}

.woocommerce-info::before, .woocommerce-message::before {
    color: #34b79d;
}
@media only screen and (min-width: 768px) {
    .woocommerce .col2-set .col-1, 
    .woocommerce-page .col2-set .col-1,
    .woocommerce .col2-set .col-2, 
    .woocommerce-page .col2-set .col-2  {
        max-width: 48.5%;       
        width:48.5%;
    }
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme{
    display:block;
}
.woocommerce .col2-set .col-1, 
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2, 
.woocommerce-page .col2-set .col-2  {   
    padding: 0; 
}
#customer_login h2{
    font-weight:500;
    text-transform:none;
}
.woocommerce form.checkout_coupon, .woocommerce form.register, .woocommerce form.login {
    border-color: #eee;
    margin: 1em 0 2em;
    border-radius: 0;
    overflow: hidden;
}
.woocommerce-additional-fields{
    margin-top:20px;
}
.woocommerce ul#shipping_method li {
    margin: 0;
    padding: 0;
    text-indent: 0;
}


.woocommerce form .woocommerce-address-fields .form-row, .woocommerce form.woocommerce-form-login .form-row {
    padding-bottom: 10px;
}

.woocommerce form .woocommerce-billing-fields .form-row {
    margin-bottom: 20px;
    position: relative;
}

.select2-container--default .select2-selection--single {
    border: 1px solid rgba(0, 0, 0, 0.10);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 13px 25px;
    height: 44px;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 1;
        padding: 0;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 44px;
        right: 10px;
    }

.select2-dropdown {
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.woocommerce form .form-row textarea {
    height: 7em;
}

.woocommerce .product-checkout-review-order .responsive-table {
    margin-bottom: 30px;
}

.woocommerce .product-checkout-review-order table.shop_table td {
    border: medium none;
    max-width: 50%;
    width: 50%;
}

.woocommerce .product-checkout-review-order table.shop_table th {
    border: medium none;
}

    .woocommerce .product-checkout-review-order table.shop_table td.product-total, .woocommerce .product-checkout-review-order table.shop_table th.product-total, .woocommerce .product-checkout-review-order table.shop_table .cart-subtotal td, .woocommerce .product-checkout-review-order table.shop_table .order-total td, .woocommerce .product-checkout-review-order table.shop_table .shipping td {
        text-align: right;
    }

.woocommerce .product-checkout-review-order table.shop_table .cart-subtotal th, .woocommerce .product-checkout-review-order table.shop_table .order-total th, .woocommerce .product-checkout-review-order table.shop_table .shipping th {
    text-align: left;
}

.woocommerce .product-checkout-review-order table.shop_table .order-total th, .woocommerce .product-checkout-review-order table.shop_table .order-total td {
    font-size: 22px;
    font-weight: 600;
}

.woocommerce .product-checkout-review-order table.shop_table .cart-subtotal th, .woocommerce .product-checkout-review-order table.shop_table .cart-subtotal td {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
}

.woocommerce .product-checkout-review-order table.shop_table .product-quantity {
    display: block;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

    #add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
        padding: 0;
        border: none;
    }

    #add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row {
        padding: 0;
    }

.payment_box p {
    margin-top: 0;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    background-color: #34b79d;
    border-color: transparent;
    color: #fff !important;
    width: 100%;
}

    .woocommerce #payment #place_order:hover, .woocommerce-page #payment #place_order:hover {
        background-color: #4ac2aa;
        border-color: transparent;
        color: #fff !important;
    }

#add_payment_method #payment ul.payment_methods li, .woocommerce-cart #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li {
    margin-bottom: 20px;
}
/*******************Order Detail*************************/
p.woocommerce-thankyou-order-received {
    margin-bottom: 20px;
    margin-top: 0;
}

.woocommerce ul.order_details {
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 2em;
}

.woocommerce table.shop_table.order_details, .woocommerce table.shop_table.customer_details {
    border: 1px solid #eee;
}

    .woocommerce table.shop_table.order_details th, .woocommerce table.shop_table.customer_details th {
        background: #f8f8f8;
        border-bottom: none;
        padding: 10px 15px;
        text-align: left;
        font-size: 13px;
    }

    .woocommerce table.shop_table.order_details td, .woocommerce table.shop_table.customer_details td {
        border-bottom: none;
        padding: 10px 15px;
        text-align: left;
    }

    .woocommerce table.shop_table.customer_details td {
        border-top: 1px solid #eee;
    }

.order_details .woocommerce-Price-amount {
    font-weight: 400;
}
/*****************My Account Page************/
@media only screen and (min-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 20%;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        width: 80%;
    }
}

@media only screen and (max-width: 767px) {
    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
    }
}

.woocommerce-MyAccount-navigation ul {
    list-style:none;
    margin:0;
    padding:0;
}
.woocommerce-MyAccount-navigation li {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
}

.woocommerce table.shop_table.woocommerce-orders-table {
    border: 1px solid #eee;
}

    .woocommerce table.shop_table.woocommerce-orders-table th {
        background: #f8f8f8;
        border-bottom: none;
        padding: 10px 15px;
        font-size: 13px;
    }

    .woocommerce table.shop_table.woocommerce-orders-table td {
        border-bottom: none;
        padding: 10px 15px;
    }

.woocommerce-MyAccount-content p {
    margin-top: 0;
}

    .woocommerce-MyAccount-content p.order-again {
        margin-top: 10px;
    }

.woocommerce form.edit-account .form-row {
    margin-bottom: 20px;
}

.woocommerce-order-details .woocommerce-order-details__title {
    font-size: 20px;
    line-height: normal;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    max-width: inherit;
    flex: inherit;
}

.widget-area .woocommerce-product-search {
    max-width: 350px;
    margin: 0 auto;
}

    .widget-area .woocommerce-product-search button[type="submit"] {
        padding: 12px 25px;
        border-radius: 0;
        margin-top: 15px;
    }

    .widget-area .woocommerce-product-search input[type="search"] {
        border-radius: 0;
        width: 100%;
    }
/************************WishlistPage***************/
.woocommerce .wishlist-title h2 {
    font-size: 20px;
}

.woocommerce table.wishlist_table {
    font-size: 100%;
    border-collapse: collapse;
}

    .woocommerce table.wishlist_table thead th {
        border-top: none;
        border-bottom: 2px solid #eee;
        padding: 15px 10px;
    }

    .woocommerce table.wishlist_table tbody td {
        border-top: none;
        border-bottom: 1px solid #eee;
        padding: 15px 10px;
    }

.wishlist_table tr td.product-stock-status span.wishlist-in-stock {
    color: #34b79d;
}

.woocommerce .wishlist_table td.product-add-to-cart a {
    display: inline-block !important;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    margin-bottom: 0;
}

.woocommerce a.remove.remove_from_wishlist:hover {
    color: #34b79d !important;
}

.woocommerce.single-product div.product form.cart .button {
    padding: 18px 45px !important;
}
.quickview-popup-data .woocommerce div.product form.cart .button {
    padding: 18px 45px !important;
}
.woocommerce.single-product div.product form.cart .button:before{
    content: "\f290";
    font-family:FontAwesome;
    margin-right:6px;
}
@media only screen and (max-width: 379px) {
    .woocommerce.single-product div.product form.cart .button {
        margin-top: 15px;
    }
}
/****************ComparePopup*************/
.woocommerce-main-image:hover, .yith_magnifier_mousetrap {
    cursor: crosshair !important;
}
/*****************************/
.woocommerce-store-notice, p.demo_store {
    background-color: #34b79d;
}
/*************************************/
.woocommerce-MyAccount-content .woocommerce-pagination {
    padding-top: 20px;
}
/*************************************/
@media only screen and (min-width: 651px) and (max-width: 1049px) {
    .container {
        width: 100%;
    }

    .woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
        margin-left: -7px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1030px) {
    .price_label {
        clear: both;
    }
}

@media only screen and (min-width: 768px) and (max-width: 980px) {

    .widget.widget_top_rated_products ul li img {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .widget.widget_top_rated_products ul li .product-title {
        clear: both;
    }
}

@media only screen and (max-width: 767px) {
    .woocommerce a.remove {
        text-align: right;
    }

    .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
        background: none;
    }

    .quantity.product-quantity {
        display: inline-block;
        max-width: 120px;
    }

    .woocommerce table.shop_table td.product-price {
        margin-top: 0;
        margin-bottom: 0;
    }   
}


@media only screen and (max-width: 600px) {
    .woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
        margin-left: -7px;
    }
}

@media only screen and (max-width: 420px) {
    .woocommerce .cart .button, .woocommerce .cart input.button[name="apply_coupon"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media only screen and (max-width: 320px) {

    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding-top: 8px;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs {
        border-top: 1px solid #eee;
    }

        .woocommerce div.product .woocommerce-tabs ul.tabs li {
            width: 100%;
            margin: 0;
            border-left: 1px solid #eee;
            border-right: 1px solid #eee;
        }

            .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
                background: #f6f6f6;
                border-bottom: 1px solid #eee;
                border-left: 1px solid #eee;
                border-right: 1px solid #eee;
            }
    .woocommerce .addresses .col-1, .woocommerce .addresses .col-2 {
        width: 100%;
        max-width: 100%;
    } 
    .woocommerce .addresses .col-1{
        margin-bottom: 20px;
    }
}
/*****/
.wc_payment_methods li.wc_payment_method label{
    display:inline-block;
    margin-bottom:0;
}
.woocommerce-column--billing-address .woocommerce-column__title,
.woocommerce-column--shipping-address .woocommerce-column__title{
    font-size:20px;
}
