@charset "UTF-8";

/*=============================================
=            CSS Index            =
=============================================

    -> Default styles
    -> Header
    -> Footer
    -> Sidebar
    -> Social Link
    -> Backgrounds
    -> Buttons
    -> Scroll top
    -> Search overlay
    -> Slider
    -> Banner
    -> Feature icon
    -> Sectiuon title
    -> Newsletter
    -> Product
    -> Counter
    -> Progressbar
    -> Quickview
    -> Newsletter
    -> Breadcrumb
    -> Pagination
    -> Cart
    -> Checkout
    -> My account
    -> Login register
    -> FAQ
    -> Compare
    -> Contact
    -> About us
    -> Blog
    -> Shop


/*=====  End of CSS Index  ======*/


/*=============================================
=            Theme default CSS            =
=============================================*/

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

html,
body {
    height: 100%;
}

body {
    line-height: 20px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    visibility: visible;
    font-family: "IBM Plex Sans", sans-serif;
    color: #333333;
    position: relative;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333333;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    margin-top: 0;
}

h1 {
    font-size: 36px;
    line-height: 42px;
}

h2 {
    font-size: 30px;
    line-height: 36px;
}

h3 {
    font-size: 24px;
    line-height: 30px;
}

h4 {
    font-size: 18px;
    line-height: 24px;
}

h5 {
    font-size: 14px;
    line-height: 18px;
}

h6 {
    font-size: 12px;
    line-height: 14px;
}

p:last-child {
    margin-bottom: 0;
}

a,
button {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

a,
button,
img,
input,
span {
    -webkit-transition: all 0.1s ease 0s;
    transition: all 0.1s ease 0s;
}

*:focus {
    outline: none !important;
}

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

a:hover {
    text-decoration: none;
}

button,
input[type=submit] {
    cursor: pointer;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}


/*-- Tab Content & Pane Fix --*/

.tab-content {
    width: 100%;
}

.tab-content .tab-pane {
    display: block;
    height: 0;
    max-width: 100%;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
}

.tab-content .tab-pane.active {
    height: auto;
    visibility: visible;
    opacity: 1;
    overflow: visible;
}

.border-bottom {
    border-bottom: 1px solid #ededed;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 15px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' height='10px' width='15px'%3E%3Ctext x='0' y='10' fill='black'%3E%E2%96%BE%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 95% 50%;
}


/*----------  Sharp border tippyjs theme  ----------*/


/* If `animateFill: true` (default) */

.tippy-tooltip.sharpborder-theme .tippy-backdrop {
    background-color: #3a9943;
    font-weight: 400;
    color: #fff;
}


/* If `animateFill: false` */

.tippy-tooltip.sharpborder-theme {
    font-weight: 400;
    font-size: 12px;
    background-color: #3a9943;
    color: #fff;
    line-height: 12px;
    white-space: nowrap;
    padding: 8px 10px;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.sharpborder-theme .tippy-arrow {
    border-top-color: #3a9943;
}


/*************************
 Bootstrap Custom Container
************************/

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

.row {
    --bs-gutter-x: 30px;
}


/*=====  End of Theme default CSS  ======*/


/*=============================================
=            Header            =
=============================================*/


/*----------  header area  ----------*/

.header-area {
    position: relative;
    z-index: 9;
    /* absolute header style */
}

.header-area.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
}

.header-area.is-sticky .navigation-top {
    display: none;
}

.header-area.is-sticky .navigation-menu-area {
    background: rgba(255, 255, 255, 0.7);
}

.header-area.is-sticky .navigation-menu-area:hover {
    background-color: #ffffff;
}

.header-area--absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area--absolute {
        position: relative;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area--absolute {
        position: relative;
    }
}

@media only screen and (max-width: 767px) {
    .header-area--absolute {
        position: relative;
    }
}

.header-area--absolute.is-sticky--absolute {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    background-color: rgba(241, 241, 239, 0.7);
}

.header-area--absolute.is-sticky--absolute:hover {
    background-color: #f1f1ef;
}

.header-area--absolute.is-sticky--absolute .navigation-top-topbar {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area--absolute.is-sticky--absolute .navigation-top-search-area {
        margin-top: 0 !important;
    }
}

@media only screen and (max-width: 767px) {
    .header-area--absolute.is-sticky--absolute .navigation-top-search-area {
        margin-top: 0 !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area--absolute.is-sticky--absolute .logo {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .header-area--absolute.is-sticky--absolute .logo {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area--absolute.is-sticky--absolute .search-icon {
        display: none !important;
    }
}

@media only screen and (max-width: 767px) {
    .header-area--absolute.is-sticky--absolute .search-icon {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area--absolute.is-sticky--absolute .header-cart-icon {
        display: none !important;
    }
}

@media only screen and (max-width: 767px) {
    .header-area--absolute.is-sticky--absolute .header-cart-icon {
        display: none !important;
    }
}

.header-area--absolute.is-sticky--absolute .main-menu--separate nav>ul>li>a {
    line-height: 70px;
}


/*----------  navigatopn top  ----------*/

.navigation-top {
    background-color: #3a9943;
}


/*----------  navigation top topbar  ----------*/

.navigation-top-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}


/*----------  header top social links  ----------*/

@media only screen and (max-width: 767px) {
    .header-top-social-links {
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
        padding-bottom: 10px;
    }
}


/*----------  headertop dropdown container  ----------*/

.headertop-dropdown-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
    .headertop-dropdown-container {
        padding-top: 10px;
    }
}

@media only screen and (max-width: 479px) {
    .headertop-dropdown-container:first-child .extra-small-mobile-fix {
        left: 0;
    }
}

.headertop-dropdown-container .header-top-single-dropdown {
    position: relative;
}

.headertop-dropdown-container .header-top-single-dropdown a {
    color: #ffffff;
    font-weight: 300;
    font-size: 14px;
}

.headertop-dropdown-container .header-top-single-dropdown a:hover {
    color: #ffdd20;
}

.headertop-dropdown-container .header-top-single-dropdown a i {
    font-size: 11px;
    margin-left: 3px;
}

.headertop-dropdown-container .header-top-single-dropdown__dropdown-menu-items {
    position: absolute;
    left: auto;
    right: -15%;
    top: 165%;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    min-width: 160px;
    z-index: 5;
    display: none;
}

.headertop-dropdown-container .header-top-single-dropdown__dropdown-menu-items.deactive-dropdown-menu {
    display: none;
}

.headertop-dropdown-container .header-top-single-dropdown__dropdown-menu-items.active-dropdown-menu {
    display: block;
}

.headertop-dropdown-container .header-top-single-dropdown__dropdown-menu-items ul li {
    border-bottom: 1px solid #eeeeee;
}

.headertop-dropdown-container .header-top-single-dropdown__dropdown-menu-items ul li:last-child {
    border-bottom: 0;
}

.headertop-dropdown-container .header-top-single-dropdown__dropdown-menu-items ul li a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    color: #666;
    font-weight: 300;
    line-height: 2.2;
    padding: 10px 0;
    display: block;
}

.headertop-dropdown-container .header-top-single-dropdown__dropdown-menu-items ul li a:hover {
    color: #3a9943;
}

.headertop-dropdown-container span.separator {
    margin: 0 15px;
    color: #ffffff;
}


/*----------  navigation top search  ----------*/


/*----------  search bar  ----------*/

.search-bar {
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .search-bar {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
        width: 95%;
    }
}

.search-bar form input {
    width: 100%;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #ffffff;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.2);
    border: 0;
    padding: 0 65px 0 20px;
    height: 48px;
    border-radius: 5px;
}

.search-bar form button {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: 0;
    width: 60px;
    padding: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    margin: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 22px;
    color: #ffffff;
    font-weight: 400;
    line-height: 48px;
}

.search-bar form button:hover {
    color: #ffdd20;
}

.search-bar form ::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

.search-bar form ::-moz-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

.search-bar form :-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

.search-bar form ::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

.search-bar form ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

.search-bar form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ffffff;
}

.search-bar form ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #ffffff;
}


/*----------  customer support text  ----------*/

.customer-support-text {
    float: right;
    position: relative;
    /* -webkit-transform: translateX(50px);
    transform: translateX(50px); */
}


/* @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .customer-support-text {
        -webkit-transform: translateX(70px);
        transform: translateX(70px);
    }
} */


/* @media only screen and (max-width: 767px) {
    .customer-support-text {
        -webkit-transform: none;
        transform: none;
    }
} */

@media only screen and (max-width: 575px) {
    .customer-support-text {
        display: none;
    }
}

.customer-support-text .icon {
    position: absolute;
    left: 0;
    top: 5px;
}

.customer-support-text .text {
    padding-left: 52px;
}

@media only screen and (max-width: 575px) {
    .customer-support-text .text {
        text-align: left;
    }
}

.customer-support-text .text span {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    color: #ffffff;
    font-weight: 300;
    line-height: 18px;
}

.customer-support-text .text p {
    margin: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    color: #ffdd20;
    font-weight: 700;
    line-height: 25px;
}


/*----------  small cart  ----------*/

.header-cart-icon {
    position: relative;
}

.header-cart-icon .small-cart-trigger {
    border: 1px solid rgba(255, 255, 255, 0.17);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 27px;
    color: #ffffff;
    font-weight: 400;
    line-height: 46px;
    padding-left: 8px;
    padding-right: 27px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
}

.header-cart-icon .small-cart-trigger .cart-counter {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    font-style: normal;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 11px;
    color: #333;
    font-weight: 400;
    line-height: 16px;
    background: #fff;
    position: absolute;
    left: 38px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.header-cart-icon .small-cart-trigger:hover,
.header-cart-icon .small-cart-trigger.active {
    color: #333;
    background: #fff;
    border-color: #fff;
}

.header-cart-icon .small-cart-trigger:hover .cart-counter,
.header-cart-icon .small-cart-trigger.active .cart-counter {
    background: #3a9943;
    color: #ffffff;
}

.small-cart {
    position: absolute;
    width: 380px;
    right: 0;
    left: auto;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    margin-top: 26px;
    display: none;
    z-index: 9;
}

@media only screen and (max-width: 479px) {
    .small-cart {
        max-width: 300px;
    }
}

.small-cart-item-wrapper {
    padding: 30px;
    border-bottom: 1px solid #ebebeb;
}

.small-cart-item-wrapper .single-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ebebeb;
    position: relative;
}

.small-cart-item-wrapper .single-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.small-cart-item-wrapper .single-item .image {
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
}

.small-cart-item-wrapper .single-item .remove-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.small-cart-item-wrapper .single-item .remove-icon i {
    font-size: 12px;
}

.small-cart-item-wrapper .single-item .remove-icon:hover {
    color: #3a9943;
}

.small-cart-item-wrapper .single-item .content {
    -ms-flex-preferred-size: calc(100% - 80px);
    flex-basis: calc(100% - 80px);
    padding-left: 10px;
    text-align: left;
}

.small-cart-item-wrapper .single-item .content p {
    margin-bottom: 0;
}

.small-cart-item-wrapper .single-item .content p.cart-name a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    color: #333;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 8px;
}

.small-cart-item-wrapper .single-item .content p.cart-name a:hover {
    color: #3a9943;
}

.small-cart-item-wrapper .single-item .content p.cart-quantity {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #3a9943;
    font-weight: 700;
    line-height: 18px;
}

.small-cart-item-wrapper .single-item .content p.cart-quantity .quantity-mes {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    color: #333;
    font-weight: 300;
    line-height: 18px;
}

.cart-calculation-table {
    padding: 30px;
}

.cart-calculation-table table tbody tr:last-child td:last-child {
    color: #3a9943;
    font-size: 22px;
}

.cart-calculation-table table tbody tr td {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    line-height: 30px;
}

.cart-buttons a {
    display: block;
    margin-bottom: 10px;
}

.cart-buttons a:last-child {
    margin-bottom: 0;
}


/*----------  active and deactive dropdown  ----------*/

.deactive-dropdown-menu {
    display: none;
}

.active-dropdown-menu {
    display: block;
}


/*----------  navigation menu  ----------*/

.navigation-menu-area {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

.main-menu {
    /* separate menu style */
}

.main-menu nav>ul>li {
    display: inline-block;
    position: relative;
    margin-right: 50px;
}

.main-menu nav>ul>li:last-child {
    margin-right: 0;
}

.main-menu nav>ul>li.active>a,
.main-menu nav>ul>li:hover>a {
    color: #3a9943;
    position: relative;
}

.main-menu nav>ul>li.menu-item-has-children>a::after {
    font-family: Ionicons;
    content: "";
    margin-left: 5px;
    float: right;
    font-size: 11px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-weight: 300;
}

.main-menu nav>ul>li>a {
    display: block;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 24px;
    font-family: "Montserrat", sans-serif;
    line-height: 55px;
}

.main-menu nav>ul>li:hover>.sub-menu,
.main-menu nav>ul>li:hover>.mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    z-index: 999;
}

.main-menu--separate nav>ul {
    text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu--separate nav>ul {
        text-align: left;
    }
}

.main-menu--separate nav>ul>li>a {
    line-height: 100px;
}

.main-menu--separate .sub-menu {
    text-align: left;
}

.main-menu--separate .mega-menu {
    text-align: left;
}

.main-menu--separate .mega-menu.four-column {
    left: -300px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .main-menu--separate .mega-menu.four-column {
        left: -300px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu--separate .mega-menu.four-column {
        left: -450px;
    }
}


/*----------  submenu  ----------*/

.sub-menu {
    position: absolute;
    left: -20px;
    top: 100%;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    width: 230px;
    visibility: hidden;
    opacity: 0;
    padding: 15px 0;
}

.sub-menu li {
    position: relative;
}

.sub-menu li a {
    color: #333333;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    padding: 10px 15px;
}

.sub-menu li a:hover {
    color: #3a9943;
}

.sub-menu li.menu-item-has-children>a::after {
    font-family: Ionicons;
    content: "";
    margin-left: 5px;
    float: right;
    font-weight: 300;
    font-size: 11px;
}

.sub-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    z-index: 999;
}

.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    right: auto;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.sub-menu .sub-menu li a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    text-transform: capitalize;
    padding: 7px 15px;
}

.sub-menu .sub-menu li a:hover {
    color: #3a9943;
}

.sub-menu .sub-menu .sub-menu {
    left: auto;
    right: 100%;
}

.sub-menu .sub-menu .sub-menu .sub-menu {
    left: 100%;
    right: auto;
}

.sub-menu .sub-menu .sub-menu .sub-menu {
    left: auto;
    right: 100%;
}


/*----------  mega menu  ----------*/

.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    visibility: hidden;
    opacity: 0;
}

.mega-menu.four-column {
    width: 1100px;
    left: -100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .mega-menu.four-column {
        width: 900px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mega-menu.four-column {
        width: 900px;
        left: -200px;
    }
}

.mega-menu.four-column>li {
    width: 25%;
}

.mega-menu>li>a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px;
}

.mega-menu>li>a:hover {
    color: #3a9943;
}

.mega-menu>li ul li a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 26px;
}

.mega-menu>li ul li a:hover {
    color: #3a9943;
}

.megamenu-banner a img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.megamenu-banner a:hover img {
    opacity: 0.7;
}


/*----------  mobile menu  ----------*/

.mobile-menu .mean-bar {
    position: relative;
    text-align: right;
    /*---- Mean Nav ----*/
}

.mobile-menu .mean-bar:before {
    position: absolute;
    top: 0;
    content: "MENU";
    left: 0;
    font-weight: 500;
    font-size: 16px;
    color: #363f4d;
    display: none;
}

.mobile-menu .mean-bar .meanmenu-reveal span {
    position: relative;
    /*---- Menu Open ----*/
    /*---- Menu Close ----*/
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar {
    height: 1px;
    width: 24px;
    background-color: #333333;
    display: block;
    margin: 5px 0;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::before,
.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::before {
    top: -8px;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::after {
    bottom: -8px;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close {
    height: 1px;
    width: 24px;
    background-color: transparent;
    display: block;
    margin: 5px 0;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::before,
.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mobile-menu .mean-bar .meanmenu-reveal span.mean-menu-text {
    position: absolute !important;
    left: 0;
    top: 1px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
}

.mobile-menu .mean-bar .meanmenu-reveal span.mean-menu-text i {
    margin-right: 5px;
    font-size: 18px;
    display: inline-block;
    vertical-align: top;
    line-height: 19px;
}

.mobile-menu .mean-bar .mean-nav {
    text-align: left;
    background-color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mobile-menu .mean-bar .mean-nav {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-menu .mean-bar .mean-nav {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.mobile-menu .mean-bar .mean-nav>ul {
    border: 1px solid #eeeeee;
    border-top: 0 solid transparent;
    overflow-x: hidden;
}

@media only screen and (max-width: 767px) {
    .mobile-menu .mean-bar .mean-nav>ul {
        max-height: 180px;
        overflow-y: auto;
    }
}

@media only screen and (max-width: 575px) {
    .mobile-menu .mean-bar .mean-nav>ul {
        max-height: 220px;
        overflow-y: auto;
    }
}

.mobile-menu .mean-bar .mean-nav>ul li {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    /*---- Sub Menu & Mega Menu ----*/
}

.mobile-menu .mean-bar .mean-nav>ul li a {
    display: block;
    text-transform: uppercase;
    position: relative;
    border-top: 1px solid #eeeeee;
    padding: 0 40px 0 20px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 44px;
    /*---- Menu Expand For Sub Menu ----*/
}

.mobile-menu .mean-bar .mean-nav>ul li a::after {
    display: none;
}

.mobile-menu .mean-bar .mean-nav>ul li a:hover {
    color: #333333;
    padding-left: 25px;
}

.mobile-menu .mean-bar .mean-nav>ul li a.mean-expand {
    border: 1px solid #eeeeee;
    position: absolute;
    right: -1px;
    top: 0;
    font-size: 20px !important;
    color: #333333;
    line-height: 44px;
    height: 46px;
    width: 40px;
    text-align: center;
    padding: 0;
}

.mobile-menu .mean-bar .mean-nav>ul li a.mean-expand.mean-clicked {
    line-height: 40px;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu,
.mobile-menu .mean-bar .mean-nav>ul li ul {
    position: static;
    background-color: rgba(0, 0, 0, 0.03);
    margin: 0;
    padding: 0 !important;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: none;
    float: left;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    -webkit-transition: none;
    transition: none;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li,
.mobile-menu .mean-bar .mean-nav>ul li ul li {
    padding: 0;
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    border-right: 0 solid transparent;
    width: 100%;
    display: block;
    float: left;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li a {
    font-size: 12px;
    display: block;
    margin-bottom: 0;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li a::before,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li a::before,
.mobile-menu .mean-bar .mean-nav>ul li ul li a::before {
    display: none;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul {
    background-color: rgba(0, 0, 0, 0.04);
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul li a {
    border-top: 1px solid #dddddd;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul li a.mean-expand {
    border: 1px solid #dddddd;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu ul,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul ul,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu ul,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul ul,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu ul,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul ul {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu ul li a,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul ul li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu ul li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul ul li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu ul li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul ul li a {
    border-top: 1px solid #eeeeee;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul ul li a.mean-expand {
    border: 1px solid #eeeeee;
}


/*----------  search icon  ----------*/

.search-icon a i {
    font-size: 22px;
}

.search-icon a:hover {
    color: #F72525;
}


/*=============================================
=            page wrapper light green style            =
=============================================*/

.page-wrapper-light-green .header-area.is-sticky .navigation-menu-area {
    background: rgba(73, 177, 77, 0.7);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-wrapper-light-green .header-area.is-sticky .navigation-menu-area {
        background: #49b14d;
    }
}

@media only screen and (max-width: 767px) {
    .page-wrapper-light-green .header-area.is-sticky .navigation-menu-area {
        background: #49b14d;
    }
}

.page-wrapper-light-green .header-area.is-sticky .navigation-menu-area:hover {
    background-color: #49b14d;
}

.page-wrapper-light-green .navigation-top {
    background-color: #ffffff;
}

.page-wrapper-light-green .navigation-top-topbar {
    border-bottom: 1px solid #ededed;
}

.page-wrapper-light-green .header-top-social-links .follow-text {
    color: #a4a4a4;
}

.page-wrapper-light-green .header-top-social-links .social-link-small li a {
    color: #777777;
}

.page-wrapper-light-green .header-top-social-links .social-link-small li a:hover {
    color: #49b14d;
}

.page-wrapper-light-green .headertop-dropdown-container .header-top-single-dropdown a {
    color: #a4a4a4;
}

.page-wrapper-light-green .headertop-dropdown-container .header-top-single-dropdown a:hover {
    color: #49b14d;
}

.page-wrapper-light-green .headertop-dropdown-container span.separator {
    margin: 0 15px;
    color: #333;
}

.page-wrapper-light-green .search-bar form input {
    background: #f5f5f5;
    color: #a9a9a9;
}

.page-wrapper-light-green .search-bar form ::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.page-wrapper-light-green .search-bar form ::-moz-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.page-wrapper-light-green .search-bar form :-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.page-wrapper-light-green .search-bar form ::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.page-wrapper-light-green .search-bar form ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.page-wrapper-light-green .search-bar form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #a9a9a9;
}

.page-wrapper-light-green .search-bar form ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #a9a9a9;
}

.page-wrapper-light-green .search-bar form button {
    background-color: #49b14d;
    color: #ffffff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.page-wrapper-light-green .search-bar form button:hover {
    background-color: #333;
}

.page-wrapper-light-green .customer-support-text .text span {
    color: #888888;
}

.page-wrapper-light-green .customer-support-text .text p {
    color: #333333;
}

.page-wrapper-light-green .header-cart-icon .small-cart-trigger {
    background-color: #ffdd20;
    color: #333;
}

.page-wrapper-light-green .header-cart-icon .small-cart-trigger:hover,
.page-wrapper-light-green .header-cart-icon .small-cart-trigger.active {
    background-color: #49b14d;
    color: #ffffff;
}

.page-wrapper-light-green .header-cart-icon .small-cart-trigger:hover .cart-counter,
.page-wrapper-light-green .header-cart-icon .small-cart-trigger.active .cart-counter {
    background-color: #ffffff;
    color: #333;
}

.page-wrapper-light-green .cart-buttons a {
    background-color: #49b14d;
}

.page-wrapper-light-green .cart-buttons a:hover {
    background-color: #333;
}

.page-wrapper-light-green .small-cart-item-wrapper .single-item .remove-icon:hover {
    color: #49b14d;
}

.page-wrapper-light-green .small-cart-item-wrapper .single-item .content p.cart-name a:hover {
    color: #49b14d;
}

.page-wrapper-light-green .small-cart-item-wrapper .single-item .content p.cart-quantity {
    color: #49b14d;
}

.page-wrapper-light-green .cart-calculation-table table tbody tr:last-child td:last-child {
    color: #49b14d;
}

.page-wrapper-light-green .navigation-menu-area {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #49b14d;
}

.page-wrapper-light-green .main-menu nav>ul>li>a {
    color: #ffffff;
}

.page-wrapper-light-green .main-menu nav>ul>li.active>a,
.page-wrapper-light-green .main-menu nav>ul>li:hover>a {
    color: #ffdd20;
}

.page-wrapper-light-green .sub-menu li a:hover {
    color: #49b14d;
}

.page-wrapper-light-green .mega-menu li a:hover {
    color: #49b14d;
}

.page-wrapper-light-green .mobile-menu .mean-bar .meanmenu-reveal .menu-bar {
    background-color: #ffffff;
}

.page-wrapper-light-green .mobile-menu .mean-bar .meanmenu-reveal .menu-bar:before,
.page-wrapper-light-green .mobile-menu .mean-bar .meanmenu-reveal .menu-bar:after {
    background-color: #ffffff;
}

.page-wrapper-light-green .mobile-menu .mean-bar .meanmenu-reveal .menu-close:before,
.page-wrapper-light-green .mobile-menu .mean-bar .meanmenu-reveal .menu-close:after {
    background-color: #ffffff;
}

.page-wrapper-light-green .mobile-menu .mean-bar .meanmenu-reveal .mean-menu-text {
    color: #ffffff;
}


/*=====  End of page wrapper light green style  ======*/


/*=============================================
=            page wrapper blue style            =
=============================================*/

.page-wrapper-blue .header-area.is-sticky .navigation-menu-area:hover {
    background-color: #ffffff;
}

.page-wrapper-blue .navigation-top {
    background-color: #ffffff;
}

.page-wrapper-blue .navigation-top-topbar {
    border-bottom: 1px solid #ededed;
}

.page-wrapper-blue .header-top-social-links .follow-text {
    color: #a4a4a4;
}

.page-wrapper-blue .header-top-social-links .social-link-small li a {
    color: #777777;
}

.page-wrapper-blue .header-top-social-links .social-link-small li a:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .headertop-dropdown-container .header-top-single-dropdown a {
    color: #a4a4a4;
}

.page-wrapper-blue .headertop-dropdown-container .header-top-single-dropdown a:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .headertop-dropdown-container span.separator {
    margin: 0 15px;
    color: #333;
}

.page-wrapper-blue .search-bar form input {
    background: #f5f5f5;
    color: #a9a9a9;
}

.page-wrapper-blue .search-bar form ::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.page-wrapper-blue .search-bar form ::-moz-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.page-wrapper-blue .search-bar form :-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.page-wrapper-blue .search-bar form ::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.page-wrapper-blue .search-bar form ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.page-wrapper-blue .search-bar form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #a9a9a9;
}

.page-wrapper-blue .search-bar form ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #a9a9a9;
}

.page-wrapper-blue .search-bar form button {
    color: #333333;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.page-wrapper-blue .search-bar form button:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .customer-support-text .text span {
    color: #888888;
}

.page-wrapper-blue .customer-support-text .text p {
    color: #333333;
}

.page-wrapper-blue .header-cart-icon .small-cart-trigger {
    background-color: #0eb9cb;
    color: #ffffff;
}

.page-wrapper-blue .header-cart-icon .small-cart-trigger:hover,
.page-wrapper-blue .header-cart-icon .small-cart-trigger.active {
    background-color: #ffdd20;
    color: #333333;
}

.page-wrapper-blue .header-cart-icon .small-cart-trigger:hover .cart-counter,
.page-wrapper-blue .header-cart-icon .small-cart-trigger.active .cart-counter {
    background-color: #0eb9cb;
    color: #ffffff;
}

.page-wrapper-blue .cart-buttons a {
    background-color: #0eb9cb;
}

.page-wrapper-blue .cart-buttons a:hover {
    background-color: #333;
}

.page-wrapper-blue .small-cart-item-wrapper .single-item .remove-icon:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .small-cart-item-wrapper .single-item .content p.cart-name a:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .small-cart-item-wrapper .single-item .content p.cart-quantity {
    color: #0eb9cb;
}

.page-wrapper-blue .cart-calculation-table table tbody tr:last-child td:last-child {
    color: #0eb9cb;
}

.page-wrapper-blue .navigation-menu-area {
    background-color: #ffffff;
}

.page-wrapper-blue .main-menu nav>ul>li>a {
    color: #333333;
}

.page-wrapper-blue .main-menu nav>ul>li.active>a,
.page-wrapper-blue .main-menu nav>ul>li:hover>a {
    color: #0eb9cb;
}

.page-wrapper-blue .sub-menu li a:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .mega-menu li a:hover {
    color: #0eb9cb;
}


/*=====  End of page wrapper blue style  ======*/


/*=============================================
=            page wrapper red style            =
=============================================*/

.page-wrapper-red .navigation-top {
    background-color: transparent;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .page-wrapper-red .navigation-top {
        background-color: #ffffff;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-wrapper-red .navigation-top {
        background-color: #ffffff;
    }
}

@media only screen and (max-width: 767px) {
    .page-wrapper-red .navigation-top {
        background-color: #ffffff;
    }
}

.page-wrapper-red .navigation-top-topbar {
    border-bottom: 1px solid #e0e0e0;
}

.page-wrapper-red .header-top-social-links .follow-text {
    color: #666;
}

.page-wrapper-red .header-top-social-links .social-link-small li a {
    color: #777777;
}

.page-wrapper-red .header-top-social-links .social-link-small li a:hover {
    color: #F72525;
}

.page-wrapper-red .headertop-dropdown-container .header-top-single-dropdown a {
    color: #666;
}

.page-wrapper-red .headertop-dropdown-container .header-top-single-dropdown a:hover {
    color: #F72525;
}

.page-wrapper-red .headertop-dropdown-container span.separator {
    margin: 0 15px;
    color: #333;
}

.page-wrapper-red .header-cart-icon .small-cart-trigger {
    background-color: #ffffff;
    color: #333333;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .page-wrapper-red .header-cart-icon .small-cart-trigger {
        border-color: #333;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-wrapper-red .header-cart-icon .small-cart-trigger {
        border-color: #333;
    }
}

@media only screen and (max-width: 767px) {
    .page-wrapper-red .header-cart-icon .small-cart-trigger {
        border-color: #333;
    }
}

.page-wrapper-red .header-cart-icon .small-cart-trigger:hover,
.page-wrapper-red .header-cart-icon .small-cart-trigger.active {
    background-color: #F72525;
    color: white;
    border-color: #F72525;
}

.page-wrapper-red .header-cart-icon .small-cart-trigger:hover .cart-counter,
.page-wrapper-red .header-cart-icon .small-cart-trigger.active .cart-counter {
    background-color: #ffffff;
    color: #333333;
}

.page-wrapper-red .header-cart-icon .small-cart-trigger .cart-counter {
    background-color: #F72525;
    color: #ffffff;
}

.page-wrapper-red .cart-buttons a {
    background-color: #F72525;
}

.page-wrapper-red .cart-buttons a:hover {
    background-color: #333;
}

.page-wrapper-red .small-cart-item-wrapper .single-item .remove-icon:hover {
    color: #F72525;
}

.page-wrapper-red .small-cart-item-wrapper .single-item .content p.cart-name a:hover {
    color: #F72525;
}

.page-wrapper-red .small-cart-item-wrapper .single-item .content p.cart-quantity {
    color: #F72525;
}

.page-wrapper-red .cart-calculation-table table tbody tr:last-child td:last-child {
    color: #F72525;
}

.page-wrapper-red .navigation-menu-area {
    background-color: #ffffff;
}

.page-wrapper-red .main-menu nav>ul>li>a {
    color: #333333;
}

.page-wrapper-red .main-menu nav>ul>li.active>a,
.page-wrapper-red .main-menu nav>ul>li:hover>a {
    color: #F72525;
}

.page-wrapper-red .sub-menu li a:hover {
    color: #F72525;
}

.page-wrapper-red .mega-menu li a:hover {
    color: #F72525;
}


/*=====  End of page wrapper red style  ======*/


/*=====  End of Header  ======*/


/*=============================================
=            footer            =
=============================================*/

.footer-text-block__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 0;
}

.footer-text-block__content {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    line-height: 24px;
}

.footer-widget-title {
    margin-bottom: 25px;
}

.footer-widget-title a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 17px;
    color: #333;
    font-weight: 600;
    line-height: 24px;
}

.footer-widget-title a:hover {
    text-decoration: underline;
}

.montserrat-footer-widget-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 17px;
    color: #333;
    font-weight: 600;
    line-height: 24px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 15px;
}

.footer-navigation nav ul {
    display: block;
    width: 100%;
    /* display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto; */
}

.footer-navigation nav ul li {
    display: inline-block;
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px dotted black;
    ;
}

.footer-navigation nav ul li a {
    display: block;
    line-height: 24px;
    color: rgb(255, 255, 255);
    padding: 3px 0;
    position: relative;
    font-weight: 600;
    font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-navigation nav ul li a {
        line-height: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-navigation nav ul li a {
        line-height: 20px;
    }
}

.footer-navigation nav ul li a:hover {
    color: #000000;
}

.footer-social-icon-block ul li {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 0;
    margin-top: 10px;
}

.footer-social-icon-block ul li:last-child {
    margin-right: 0;
}

.footer-social-icon-block ul li a {
    display: inline-block;
    color: #fff;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 100%;
    font-size: 0;
    border: 0;
    text-align: center;
}

.footer-social-icon-block ul li a:hover {
    opacity: 0.7;
}

.footer-social-icon-block ul li a i {
    font-size: 16px;
}

.footer-social-icon-block ul li a.facebook-icon {
    background: #4867AA;
}

.footer-social-icon-block ul li a.twitter-icon {
    background: #1DA1F2;
}

.footer-social-icon-block ul li a.googleplus-icon {
    background: #DD5144;
}

.footer-social-icon-block ul li a.instagram-icon {
    background: #B23A94;
}

.footer-social-icon-block ul li a.youtube-icon {
    background: #FE0000;
}

.copyright-text-area {
    border-top: 1px solid #ededed;
    padding: 20px 0;
}

.copyright-text p {
    text-transform: capitalize;
    font-weight: 600;
    margin: 0;
    color: rgb(0, 0, 0);
}

.copyright-text p a {
    color: #333;
}

.copyright-text p a:hover {
    color: yellow;
}


/*=====  End of footer  ======*/


/*=============================================
=            light green page style            =
=============================================*/

.page-wrapper-light-green .footer-navigation nav ul li a:hover {
    color: #49b14d;
}

.page-wrapper-light-green .copyright-text p a:hover {
    color: #49b14d;
}


/*=====  End of light green page style  ======*/


/*=============================================
=            blue page style            =
=============================================*/

.page-wrapper-blue .footer-navigation nav ul li a:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .copyright-text p a:hover {
    color: #0eb9cb;
}


/*=====  End of blue page style  ======*/


/*=============================================
=            red page style            =
=============================================*/

.page-wrapper-red .footer-navigation nav ul li a:hover {
    color: #F72525;
}

.page-wrapper-red .copyright-text p a:hover {
    color: #F72525;
}


/*=====  End of blue page style  ======*/


/*=============================================
=            Sidebar            =
=============================================*/

.sidebar-widget {
    background: #f8f8f8;
    padding: 20px;
}

.sidebar-widget>ul {
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 32px;
}

.sidebar-widget>ul li.has-children>ul {
    padding-left: 15px;
}

.sidebar-widget>ul li a {
    text-transform: capitalize;
    line-height: 24px;
    padding: 5px 0;
    display: block;
    position: relative;
    color: #333333;
    font-size: 15px;
}

.sidebar-widget>ul li a:hover,
.sidebar-widget>ul li a.active {
    color: #3a9943;
}

.sidebar-widget-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 22px;
    margin: 15px 0 11px;
    font-family: "Montserrat", sans-serif;
}


/*-- Sidebar Price --*/

.sidebar-price {
    padding-bottom: 34px;
    border-bottom: 1px solid #dcdcdc;
}

.sidebar-price #price-range {
    width: 100%;
    height: 5px;
    margin: 7px 0;
    background-color: #ccc;
    position: relative;
    border-radius: 50px;
}

.sidebar-price #price-range .ui-slider-range {
    position: absolute;
    height: 100%;
    top: 0;
    background-color: #3a9943;
}

.sidebar-price #price-range .ui-slider-handle {
    background-color: #ffffff;
    border: 5px solid #3a9943;
    position: absolute;
    width: 19px;
    height: 19px;
    border-radius: 50px;
    display: block;
    top: -7px;
    -webkit-transition: none;
    transition: none;
    -webkit-box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.sidebar-price #price-range .ui-slider-handle:hover {
    background-color: #3a9943;
}

.sidebar-price .price-amount {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    padding: 0;
    background-color: transparent;
    border: none;
    margin-top: 12px;
}

.sidebar-filter-group {
    padding-bottom: 29px;
    border-bottom: 1px solid #dcdcdc;
}

.sidebar-filter-group a {
    border: 0;
    display: block;
    line-height: 24px;
    padding: 5px 0;
    color: #333;
    text-transform: capitalize;
    position: relative;
    padding-left: 21px;
}

.sidebar-filter-group a:before {
    content: "";
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid #333333;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
}

.sidebar-filter-group a span {
    float: right;
}

.sidebar-filter-group a:hover,
.sidebar-filter-group a.active {
    color: #3a9943;
}

.sidebar-filter-group a:hover:before,
.sidebar-filter-group a.active:before {
    background: #3a9943;
    border-color: #3a9943;
}

.sidebar-filter-group-color {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    padding-bottom: 10px;
}

.sidebar-filter-group-color a {
    border: 0;
    display: block;
    line-height: 24px;
    padding: 5px 0;
    color: #333;
    text-transform: capitalize;
    position: relative;
    padding-left: 21px;
}

.sidebar-filter-group-color a:before {
    content: "";
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid #333333;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
}

.sidebar-filter-group-color a span {
    float: none;
    margin-left: 2px;
}

.sidebar-filter-group-color a:hover,
.sidebar-filter-group-color a.active {
    color: #3a9943;
}

.sidebar-filter-group-color a:hover:before,
.sidebar-filter-group-color a.active:before {
    background: #3a9943;
    border-color: #3a9943;
}


/*----------  tag container  ----------*/

.tag-container li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
}

.tag-container li a {
    border: 1px solid #ebebeb;
    padding: 5px 10px;
    border-radius: 3px;
    color: #555;
}

.tag-container li a:hover {
    background-color: #3a9943;
    border-color: #3a9943;
    color: #ffffff;
}


/*----------  Sidebar search box  ----------*/

.sidebar-search-box {
    border: 1px solid #e0e0e0;
    position: relative;
}

.sidebar-search-box input {
    border: none;
    padding: 10px;
    padding-left: 10px;
    width: 100%;
}

.sidebar-search-box button {
    position: absolute;
    top: 10px;
    right: 0;
    background: none;
    border: none;
}

.sidebar-search-box button:hover {
    color: #3a9943;
}


/*----------  single block  ----------*/

.single-block {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.single-block:first-child {
    padding-top: 0;
}

.single-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.single-block .image {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    margin-right: 5px;
}

.single-block .image a {
    border: 2px solid transparent;
    display: block;
}

.single-block .image a img {
    width: 100%;
}

.single-block .image a:hover {
    border: 2px solid #3a9943;
}

.single-block .content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.single-block .content p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
}

.single-block .content p a:hover {
    color: #3a9943;
}

.single-block .content p span {
    font-size: 12px;
    line-height: 16px;
    color: #999;
    font-weight: 400;
    margin-top: 5px;
    display: block;
}

.single-block.comment-block .image {
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
}

.single-block.comment-block .content p span {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
}

.single-block.comment-block .content p a {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #808080;
}

.single-block.comment-block .content p a:hover {
    color: #3a9943;
}


/*----------  tag container  ----------*/

.tag-container>li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
}

.tag-container>li>a {
    display: block;
    border: 1px solid #ebebeb;
    padding: 5px 10px !important;
    border-radius: 3px;
    color: #555;
}

.tag-container>li>a:hover {
    background-color: #3a9943;
    border-color: #3a9943;
    color: #ffffff !important;
}


/*=====  End of Sidebar  ======*/


/*=============================================
=            social link            =
=============================================*/


/*----------  social icon small  ----------*/

.follow-text {
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 300;
}

.social-link-small {
    display: inline-block;
}

.social-link-small li {
    display: inline-block;
    margin-right: 20px;
}

.social-link-small li:last-child {
    margin-right: 0;
}

.social-link-small li a {
    color: #ffffff;
}

.social-link-small li a:hover {
    color: #ffdd20;
}


/*=====  End of social link  ======*/


/*=============================================
=            Backgrounds            =
=============================================*/


/*----------  hero slider backgrounds  ----------*/

.hero-slider-bg-1 {
    background-image: url("/assets/img/sliders/slider1.webp");
}

.hero-slider-bg-2 {
    background-image: url("/assets/img/sliders/slider2.webp");
}

.hero-slider-bg-3 {
    background-image: url("/assets/img/sliders/slider3.webp");
}

.hero-slider-bg-4 {
    background-image: url("/assets/img/sliders/slider4.webp");
}

.hero-slider-bg-5 {
    background-image: url("/assets/img/sliders/slider5.webp");
}

.hero-slider-bg-6 {
    background-image: url("/assets/img/sliders/slider6.webp");
}

.hero-slider-bg-7 {
    background-image: url("/assets/img/sliders/slider7.webp");
}

.hero-slider-bg-8 {
    background-image: url("/assets/img/sliders/slider8.webp");
}

.hero-slider-bg-9 {
    background-image: url("/assets/img/sliders/slider9.webp");
}

.hero-slider-bg-10 {
    background-image: url("/assets/img/sliders/slider10.webp");
}

.hero-slider-bg-11 {
    background-image: url("/assets/img/sliders/slider11.webp");
}

.hero-slider-bg-12 {
    background-image: url("/assets/img/sliders/slider12.webp");
}

.hero-slider-bg-13 {
    background-image: url("/assets/img/sliders/slider13.webp");
}

.hero-slider-bg-14 {
    background-image: url("/assets/img/sliders/slider14.webp");
}


/*----------  banner backgrounds  ----------*/

.banner-bg-1 {
    background-image: url("/assets/img/banners/banner-big3.webp");
}


/*----------  newsletter backgrounds  ----------*/

.newsletter-bg-1 {
    background-color: #3a9943;
    background-image: url("/assets/img/newsletter/newsletter1.webp");
}

.newsletter-bg-2 {
    background-color: #49b14d;
    background-image: url("/assets/img/newsletter/newsletter2.webp");
}

.newsletter-bg-3 {
    background-color: #F72525;
    background-image: url("/assets/img/newsletter/newsletter3.webp");
}

.newsletter-bg-4 {
    background-color: #0eb9cb;
    background-image: url("/assets/img/newsletter/newsletter4.webp");
}


/*=====  End of Backgrounds  ======*/


/*=============================================
=            Button styles            =
=============================================*/


/*----------  default style  ----------*/

.theme-button {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    background-color: #3a9943;
    padding: 0 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: none;
    /*----------  outline style  ----------*/
}

.theme-button:hover {
    background-color: #333;
    color: #ffffff;
}

.theme-button--outline {
    background-color: #ffffff;
    color: #3a9943;
    border: 1px solid #3a9943;
}

.theme-button--outline:hover {
    background-color: #3a9943;
    color: #ffffff;
}

.product-cart-button {
    line-height: 41px;
    padding: 0 70px;
    border-radius: 5px;
}

@media only screen and (max-width: 479px) {
    .product-cart-button {
        padding: 0 40px;
    }
}

.compare-button a,
.wishlist-button a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    color: #666;
    font-weight: 300;
    line-height: 30px;
}

.compare-button a i,
.wishlist-button a i {
    margin-right: 5px;
}

.compare-button a:hover,
.wishlist-button a:hover {
    color: #3a9943;
}

.contact-button {
    line-height: 40px;
    border-radius: 5px;
}

.list-cart-button {
    line-height: 38px;
    margin-top: 34px;
    background: #f0f0f0;
    color: #333;
    padding: 0 30px;
    border-radius: 5px;
    width: 100%;
}

.list-cart-button:hover {
    background-color: #3a9943;
    color: #ffffff;
}


/*=====  End of Button styles  ======*/


/*=============================================
=            scroll top            =
=============================================*/

.scroll-top {
    background: #3a9943;
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: none;
    text-align: center;
    color: #ffffff;
    font-family: "Ionicons";
    position: fixed;
    right: 30px;
    bottom: 80px;
    z-index: 999;
    border-radius: 50%;
    border: none;
}

.scroll-top:after {
    content: "";
    display: inline;
    font-size: 14px;
}


/*=============================================
=            page wrapper light green style            =
=============================================*/

.page-wrapper-light-green .scroll-top {
    background: #49b14d;
}


/*=====  End of page wrapper light green style  ======*/


/*=============================================
=            page wrapper blue style            =
=============================================*/

.page-wrapper-blue .scroll-top {
    background: #0eb9cb;
}


/*=====  End of page wrapper light green style  ======*/


/*=============================================
=            page wrapper red style            =
=============================================*/

.page-wrapper-red .scroll-top {
    background: #F72525;
}


/*=====  End of page wrapper light red style  ======*/


/*=====  End of scroll top  ======*/


/*=============================================
=            search overlay            =
=============================================*/

.search-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 999999;
    display: none;
    top: 0;
    left: 0;
}

.search-form {
    position: absolute;
    top: 47%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1110px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .search-form {
        width: 700px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-form {
        width: 650px;
    }
}

@media only screen and (max-width: 767px) {
    .search-form {
        width: 500px;
    }
}

@media only screen and (max-width: 767px) {
    .search-form {
        width: 400px;
    }
}

@media only screen and (max-width: 479px) {
    .search-form {
        width: 300px;
    }
}

.search-form form input {
    height: 70px;
    font-size: 24px;
    color: #fff;
    width: 100%;
    font-weight: 400;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #f72525;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding: 0 50px 0 15px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .search-form form input {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-form form input {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .search-form form input {
        font-size: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .search-form form input {
        font-size: 15px;
        height: 50px;
    }
}

.search-form form ::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

.search-form form ::-moz-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

.search-form form :-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

.search-form form ::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

.search-form form ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

.search-form form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ffffff;
}

.search-form form ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #ffffff;
}

.search-form form button {
    background: transparent;
    border: 0;
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 34px;
    color: #fff;
    padding: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    margin: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .search-form form button {
        font-size: 26px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-form form button {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .search-form form button {
        font-size: 26px;
    }
}

@media only screen and (max-width: 479px) {
    .search-form form button {
        font-size: 20px;
    }
}

.search-form form button:hover {
    color: #F72525;
}

.close-search-overlay {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 72px;
}

@media only screen and (max-width: 479px) {
    .close-search-overlay {
        font-size: 50px;
    }
}

.close-search-overlay:hover {
    color: #F72525;
}


/*=====  End of search overlay  ======*/


/*=============================================
=            slider            =
=============================================*/


/*----------  default style  ----------*/

.slick-slide>div>div {
    vertical-align: middle;
}

.ht-slick-slider {
    position: relative;
}

.ht-slick-slider .slick-arrow {
    position: absolute;
    right: 0;
    top: -58px;
    z-index: 2;
    width: 33px;
    height: 33px;
    background: #f2f2f2;
    color: #333;
    border-radius: 5px;
    border: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 16px;
}

.ht-slick-slider .slick-arrow:hover {
    background-color: #3a9943;
    color: #fff;
}

.ht-slick-slider .slick-arrow.slick-prev {
    right: 40px;
}


/*----------  hero slider  ----------*/

.hero-slider-wrapper .slick-active {
    /*-- Hero Content --*/
}

.hero-slider-wrapper .slick-active .hero-slider-content {
    overflow: hidden;
}

.hero-slider-wrapper .slick-active .hero-slider-content>*:nth-child(1) {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.hero-slider-wrapper .slick-active .hero-slider-content>*:nth-child(2) {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.hero-slider-wrapper .slick-active .hero-slider-content>*:nth-child(3) {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.hero-slider-wrapper .slick-active .hero-slider-content>*:nth-child(4) {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.hero-slider-wrapper .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ffffff;
    padding: 0 10px;
    border-radius: 50px;
}

.hero-slider-wrapper .slick-dots li {
    display: inline-block;
}

.hero-slider-wrapper .slick-dots li button {
    font-size: 0;
    background: none;
    border: none;
    padding: 0;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    background-color: #d7d7d7;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hero-slider-wrapper .slick-dots li button:hover {
    background-color: #3a9943;
}

.hero-slider-wrapper .slick-dots li.slick-active button {
    background-color: #3a9943;
}

.hero-slider-wrapper .slick-dots li:last-child button {
    margin-right: 0;
}

.hero-slider-item-wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 570px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-slider-item-wrapper--minimal-height {
    height: 470px;
}

.hero-slider-item-wrapper--fullwidth {
    height: 700px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-slider-item-wrapper--fullwidth {
        background-position-x: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-item-wrapper--fullwidth {
        background-position-x: 25%;
    }
}

.hero-slider-item-wrapper--fullwidth--maxheight {
    height: 860px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .hero-slider-item-wrapper--fullwidth--maxheight {
        height: 650px !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .hero-slider-item-wrapper {
        height: 450px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-slider-item-wrapper {
        height: 450px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-item-wrapper {
        height: 450px;
        background-position-x: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-item-wrapper {
        height: 400px;
        background-position-x: 15%;
    }
}

@media only screen and (max-width: 479px) {
    .hero-slider-item-wrapper {
        height: 350px;
        background-position-x: 30%;
    }
}

.hero-slider-content>* {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.hero-slider-content p.slider-title--small {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 24px;
    color: #666;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 479px) {
    .hero-slider-content p.slider-title--small {
        font-size: 16px;
        line-height: 16px;
    }
}

.hero-slider-content p.slider-title--big-bold {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 60px;
    color: #333;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .hero-slider-content p.slider-title--big-bold {
        font-size: 50px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-slider-content p.slider-title--big-bold {
        font-size: 50px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-content p.slider-title--big-bold {
        font-size: 40px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-content p.slider-title--big-bold {
        font-size: 40px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-slider-content p.slider-title--big-bold {
        font-size: 30px;
        line-height: 30px;
    }
}

.hero-slider-content p.slider-title--big-light {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 60px;
    color: #333;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .hero-slider-content p.slider-title--big-light {
        font-size: 50px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-slider-content p.slider-title--big-light {
        font-size: 50px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-content p.slider-title--big-light {
        font-size: 40px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-content p.slider-title--big-light {
        font-size: 40px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-slider-content p.slider-title--big-light {
        font-size: 30px;
        line-height: 30px;
    }
}

.hero-slider-content .hero-slider-button {
    border-radius: 5px;
    padding: 0 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-content .hero-slider-button {
        padding: 0 15px;
        font-size: 14px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-content .hero-slider-button {
        padding: 0 15px;
        font-size: 14px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-slider-content .hero-slider-button {
        padding: 0 15px;
        font-size: 12px;
        line-height: 40px;
    }
}


/*----------  bog post slider  ----------*/

.blog-post-slider-wrapper .slick-list {
    margin: 0 -10px;
}

.blog-post-slider-wrapper .slick-slide>div {
    padding: 0 10px;
}

.blog-post-slider-wrapper .slider-single-post {
    border: 1px solid #f5f5f5;
}

.blog-post-slider-wrapper .slider-single-post__image a {
    display: block;
    width: 100%;
    position: relative;
}

.blog-post-slider-wrapper .slider-single-post__image a:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    font-family: fontAwesome;
    color: #ffffff;
    background-color: #3a9943;
    width: 52px;
    height: 52px;
    line-height: 52px;
    border: 1px solid #3a9943;
    text-align: center;
    font-size: 23px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.blog-post-slider-wrapper .slider-single-post__image a img {
    width: 100%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.blog-post-slider-wrapper .slider-single-post__image a:hover img {
    opacity: 0.7;
}

.blog-post-slider-wrapper .slider-single-post__image a:hover:after {
    visibility: visible;
    opacity: 1;
}

.blog-post-slider-wrapper .slider-single-post__content {
    padding: 12px 20px 15px 20px;
}

.blog-post-slider-wrapper .slider-single-post__content .post-title {
    margin-bottom: 0;
}

.blog-post-slider-wrapper .slider-single-post__content .post-title a {
    display: block;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 20px;
}

.blog-post-slider-wrapper .slider-single-post__content .post-title a:hover {
    color: #3a9943;
}

.blog-post-slider-wrapper .slider-single-post__content .post-meta .author-name {
    display: inline-block;
    margin: 0;
    color: #999999;
    font-size: 13px;
    position: relative;
    margin-right: 14px;
}

.blog-post-slider-wrapper .slider-single-post__content .post-meta .author-name span {
    color: #333;
}

.blog-post-slider-wrapper .slider-single-post__content .post-meta .author-name:after {
    content: "";
    width: 3px;
    height: 3px;
    background: #999999;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    right: -10px;
    margin-top: -1.5px;
}

.blog-post-slider-wrapper .slider-single-post__content .post-meta .post-date {
    display: inline-block;
    color: #999999;
    font-size: 13px;
}


/*----------  footer blog post slider  ----------*/

.footer-blog-post-slider-wrapper .slick-slide>div:last-child {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.single-footer-blog-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.single-footer-blog-post__image {
    -ms-flex-preferred-size: 110px;
    flex-basis: 110px;
}

.single-footer-blog-post__image a {
    display: block;
    width: 100%;
}

.single-footer-blog-post__image a img {
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-footer-blog-post__image a:hover img {
    opacity: 0.7;
}

.single-footer-blog-post__content {
    -ms-flex-preferred-size: calc(100% - 110px);
    flex-basis: calc(100% - 110px);
    padding-left: 10px;
}

.single-footer-blog-post__content .blog-post-title a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 400;
    line-height: 20px;
}

.single-footer-blog-post__content .blog-post-title a:hover {
    color: #F72525;
}

.single-footer-blog-post__content .blog-post-meta .author-name {
    display: inline-block;
    margin: 0;
    color: #999999;
    font-size: 12px;
    line-height: 17px;
    position: relative;
    margin-right: 14px;
    font-weight: 300;
}

.single-footer-blog-post__content .blog-post-meta .author-name span {
    color: #333;
}

.single-footer-blog-post__content .blog-post-meta .author-name:after {
    content: "";
    width: 3px;
    height: 3px;
    background: #999999;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    right: -10px;
    margin-top: -1.5px;
}

.single-footer-blog-post__content .blog-post-meta .post-date {
    display: inline-block;
    color: #999999;
    font-size: 12px;
    line-height: 17px;
}


/*----------  brand logo slider  ----------*/

.brand-logo-slider-wrapper {
    border-top: 1px solid #ededed;
    padding: 34px 0;
}

.brand-logo-slider-wrapper--double-border {
    border-bottom: 1px solid #ededed;
}

.single-brand-logo a {
    display: block;
    width: 100%;
    text-align: center;
}

.single-brand-logo a img {
    margin: 0 auto;
}

.single-brand-logo a:hover img {
    opacity: 0.7;
}


/*----------  instagram image slider  ----------*/

.instagram-image-slider-wrapper {
    margin-top: -10px;
}

.instagram-image-slider-wrapper .slick-list {
    margin: 0 -5px;
}

.instagram-image-slider-wrapper .slick-slide>div {
    margin: 0 5px;
    margin-top: 10px;
}

.instagram-image-slider-wrapper .single-instagram-image a {
    display: block;
    width: 100%;
    position: relative;
}

.instagram-image-slider-wrapper .single-instagram-image a img {
    width: 100%;
}

.instagram-image-slider-wrapper .single-instagram-image a:hover:before {
    visibility: visible;
    opacity: 0.7;
}

.instagram-image-slider-wrapper .single-instagram-image a:hover:after {
    visibility: visible;
    opacity: 1;
}

.instagram-image-slider-wrapper .single-instagram-image a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3a9943;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.instagram-image-slider-wrapper .single-instagram-image a:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    font-family: IonIcons;
    color: #ffffff;
    font-size: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}


/*----------  category slider one ----------*/

.category-area .single-category-item {
    display: inline-block;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.category-area .single-category-item .single-category-item__image {
    width: 100%;
    position: relative;
}

.category-area .single-category-item .single-category-item__image a {
    display: inline-block;
    width: 100%;
}

.category-area .single-category-item .single-category-item__image a img {
    width: 100%;
}

.category-area .single-category-item .single-category-item__image__content {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    background: #001e03ab;
    padding: 12px;
}

.category-area .single-category-item .single-category-item__image__content h5 {
    color: white;
    margin-bottom: 0;
    line-height: 1;
}

.category-slider-wrapper-one .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.category-slider-wrapper-one .slick-slide>div {
    margin: 0 10px;
}

.category-slider-wrapper-one .single-category-item:hover .single-category-item__image a img {
    opacity: 0.7;
}

.category-slider-wrapper-one .single-category-item__image {
    position: relative;
}

.category-slider-wrapper-one .single-category-item__image a {
    display: block;
    width: 100%;
}

.category-slider-wrapper-one .single-category-item__image a img {
    width: 100%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.category-slider-wrapper-one .single-category-item__image__content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
}

.category-slider-wrapper-one .single-category-item__image__content .category-title {
    margin-bottom: 0;
}

.category-slider-wrapper-one .single-category-item__image__content .category-title a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 17px;
    color: #343434;
    font-weight: 600;
    line-height: 22px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.category-slider-wrapper-one .single-category-item__image__content .category-title a:hover {
    color: #3a9943;
}

.category-slider-wrapper-one .single-category-item__image__content .quantity {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #868686;
    font-weight: 300;
    line-height: 20px;
}


/*----------  category slider two ----------*/

.category-slider-wrapper-two .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.category-slider-wrapper-two .slick-slide>div {
    margin: 0 10px;
}

.category-slider-wrapper-two .single-category-item {
    padding: 20px;
    border: 1px solid #f0f0f0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 575px) {
    .category-slider-wrapper-two .single-category-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media only screen and (max-width: 479px) {
    .category-slider-wrapper-two .single-category-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.category-slider-wrapper-two .single-category-item:hover .single-category-item__image a img {
    opacity: 0.7;
}

.category-slider-wrapper-two .single-category-item__image {
    -ms-flex-preferred-size: 150px;
    flex-basis: 150px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .category-slider-wrapper-two .single-category-item__image {
        -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .category-slider-wrapper-two .single-category-item__image {
        -ms-flex-preferred-size: 70px;
        flex-basis: 70px;
    }
}

@media only screen and (max-width: 575px) {
    .category-slider-wrapper-two .single-category-item__image {
        -ms-flex-preferred-size: 70px;
        flex-basis: 70px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .category-slider-wrapper-two .single-category-item__image {
        -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
        margin-bottom: 0;
    }
}

.category-slider-wrapper-two .single-category-item__image a {
    display: block;
    width: 100%;
}

.category-slider-wrapper-two .single-category-item__image a img {
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.category-slider-wrapper-two .single-category-item__content {
    -ms-flex-preferred-size: calc(100% - 150px);
    flex-basis: calc(100% - 150px);
    padding-left: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .category-slider-wrapper-two .single-category-item__content {
        -ms-flex-preferred-size: calc(100% - 100px);
        flex-basis: calc(100% - 100px);
    }
}

@media only screen and (max-width: 767px) {
    .category-slider-wrapper-two .single-category-item__content {
        -ms-flex-preferred-size: calc(100% - 70px);
        flex-basis: calc(100% - 70px);
    }
}

@media only screen and (max-width: 575px) {
    .category-slider-wrapper-two .single-category-item__content {
        -ms-flex-preferred-size: calc(100% - 70px);
        flex-basis: calc(100% - 70px);
        padding-left: 0;
    }
}

@media only screen and (max-width: 479px) {
    .category-slider-wrapper-two .single-category-item__content {
        -ms-flex-preferred-size: calc(100% - 100px);
        flex-basis: calc(100% - 100px);
        padding-left: 20px;
    }
}

.category-slider-wrapper-two .single-category-item__content .category-item-title {
    margin-bottom: 5px;
}

.category-slider-wrapper-two .single-category-item__content .category-item-title a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 21px;
}

.category-slider-wrapper-two .single-category-item__content .category-item-title a:hover {
    color: #49b14d;
}

.category-slider-wrapper-two .single-category-item__content .category-list-item {
    margin-bottom: 10px;
}

.category-slider-wrapper-two .single-category-item__content .category-list-item li a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 20px;
}

.category-slider-wrapper-two .single-category-item__content .category-list-item li a:hover {
    color: #49b14d;
}

.category-slider-wrapper-two .single-category-item__content .category-link {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #49b14d;
    font-weight: 300;
    line-height: 20px;
}

.category-slider-wrapper-two .single-category-item__content .category-link:hover {
    text-decoration: underline;
}


/*----------  widget product slider  ----------*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-widget-slider .slick-list {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-widget-slider .slick-slide {
        margin: 0 10px;
    }
}

.single-widget-slider .slick-slide>div {
    margin-bottom: 20px;
}

.single-widget-slider .slick-slide>div:last-child {
    margin-bottom: 0;
}


/*----------  single row slider  ----------*/

.product-single-row-slider-wrapper--border-bottom {
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 40px;
}

.product-single-row-slider-wrapper .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.product-single-row-slider-wrapper .slick-slide {
    margin: 0 10px;
}

.product-single-row-slider-wrapper .slick-slide.slick-active {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
}


/*----------  double row slider  ----------*/

.product-double-row-slider-wrapper .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.product-double-row-slider-wrapper .slick-slide {
    margin: 0 10px;
}

.product-double-row-slider-wrapper .slick-slide.slick-active {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
}

.product-double-row-slider-wrapper .slick-slide>div:last-child {
    margin-top: 20px;
}


/*----------  banner double row slider area  ----------*/

.banner-double-row-slider-area .col-custom-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}

@media only screen and (max-width: 767px) {
    .banner-double-row-slider-area .col-custom-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.banner-double-row-slider-area .col-custom-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
}

@media only screen and (max-width: 767px) {
    .banner-double-row-slider-area .col-custom-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/*----------  double slider area  ----------*/

.product-single-row-double-slider-wrapper .slick-slide>div {
    margin: 0 10px;
}

.product-single-row-double-slider-wrapper .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.double-slider-single-item {
    border: 1px solid #f0f0f0;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 575px) {
    .double-slider-single-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .double-slider-single-item .double-slider-single-item__inner-slider {
        width: 100%;
    }
    .double-slider-single-item .double-slider-single-item__content {
        width: 100%;
        padding-left: 0;
    }
}

.double-slider-single-item__inner-slider {
    display: inline-block;
    width: 270px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .double-slider-single-item__inner-slider {
        width: 200px;
    }
}

.double-slider-single-item__content {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    width: calc(100% - 290px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .double-slider-single-item__content {
        width: calc(100% - 220px);
    }
}

.double-slider-single-item:hover .hover-icons {
    visibility: visible;
    opacity: 1;
    right: 15px;
}

.small-image-slider-wrapper {
    padding: 0 20px;
    margin-top: 10px;
}

.small-image-slider-wrapper:hover .slick-arrow {
    visibility: visible;
    opacity: 1;
}

.small-image-slider-wrapper .slick-current>div {
    border: 1px solid #3a9943;
}

.small-image-slider-wrapper .slick-arrow {
    background: none;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    visibility: hidden;
    opacity: 0;
}

.small-image-slider-wrapper .slick-arrow:hover {
    background: none !important;
    color: #49b14d;
}

.small-image-slider-wrapper .slick-arrow.slick-next {
    right: -25px;
    left: auto;
}

.small-image-slider-wrapper .slick-arrow.slick-prev {
    left: -25px;
    right: auto;
}

.small-image-slider-wrapper .slick-list {
    margin-left: -5px;
    margin-right: -5px;
}

.small-image-slider-wrapper .slick-slide>div {
    margin: 0 5px;
}

.small-image-slider-wrapper--quickview {
    padding: 0 30px;
    margin-top: 20px;
}

.small-image-slider-wrapper--quickview .slick-arrow {
    visibility: visible;
    opacity: 1;
    font-size: 30px;
}

.small-image-slider-wrapper--quickview .slick-arrow.slick-prev {
    left: -40px;
}

.small-image-slider-wrapper--quickview .slick-arrow.slick-next {
    right: -40px;
}

.small-image-slider-wrapper--quickview .slick-slide>div {
    margin: 0 10px;
}

@media only screen and (max-width: 767px) {
    .small-image-slider-wrapper--side-style .small-image-slider {
        padding: 0 30px;
    }
}

.small-image-slider-wrapper--side-style .slick-slide>div {
    margin: 5px 0;
}

@media only screen and (max-width: 767px) {
    .small-image-slider-wrapper--side-style .slick-slide>div {
        margin: 0 5px;
    }
}

.small-image-slider-wrapper--side-style .slick-arrow {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.small-image-slider-wrapper--side-style .slick-arrow.slick-prev {
    top: -30px;
    left: 50%;
    right: auto;
    bottom: auto;
}

.small-image-slider-wrapper--side-style .slick-arrow.slick-next {
    bottom: -30px;
    top: auto;
    left: 50%;
    right: auto;
}

.big-image-slider-wrapper {
    cursor: pointer;
    position: relative;
}

.big-image-slider-wrapper--change-cursor {
    cursor: crosshair !important;
}

.big-image-slider-wrapper--gallery-mode {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.big-image-slider-wrapper--gallery-mode .big-image-slider-single-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    border: 1px solid #ddd;
}

.big-image-slider-wrapper--sticky-mode {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.big-image-slider-wrapper--sticky-mode .big-image-slider-single-item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    border: 1px solid #ddd;
}

.big-image-slider-wrapper--slider-mode .big-image-box-slider {
    padding-left: 50px;
    padding-right: 50px;
}

.big-image-slider-wrapper--slider-mode .slick-arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.big-image-slider-wrapper--slider-mode .slick-arrow.slick-next {
    right: 0;
    left: auto;
}

.big-image-slider-wrapper--slider-mode .slick-arrow.slick-prev {
    left: 0;
    right: auto;
}

.big-image-slider-wrapper--slider-mode .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.big-image-slider-wrapper--slider-mode .slick-slide>div {
    margin: 0 10px;
}

.small-image-slider-single-item {
    cursor: pointer;
}

.small-image-slider-single-item img {
    width: 100%;
}


/*=============================================
=            light green page style            =
=============================================*/

.page-wrapper-light-green .hero-slider-button {
    background-color: #49b14d;
}

.page-wrapper-light-green .hero-slider-button:hover {
    background-color: #333;
}

.page-wrapper-light-green .hero-slider-wrapper .slick-dots li.slick-active button {
    background-color: #49b14d;
}

.page-wrapper-light-green .hero-slider-wrapper .slick-dots li button:hover {
    background-color: #49b14d;
}

.page-wrapper-light-green .ht-slick-slider .slick-arrow:hover {
    background-color: #49b14d;
}

.page-wrapper-light-green .ht-slick-slider .slick-arrow.slick-prev {
    right: 40px;
}

.page-wrapper-light-green .blog-post-slider-wrapper .slider-single-post__image a:after {
    background-color: #49b14d;
    border: 1px solid #49b14d;
}

.page-wrapper-light-green .blog-post-slider-wrapper .slider-single-post__content .post-title a:hover {
    color: #49b14d;
}

.page-wrapper-light-green .instagram-image-slider-wrapper .single-instagram-image a:before {
    background-color: #49b14d;
}

.page-wrapper-light-green .small-image-slider-wrapper .slick-current>div {
    border: 1px solid #49b14d;
}

.page-wrapper-light-green .small-image-slider-wrapper .slick-arrow:hover {
    color: #49b14d;
}


/*=====  End of light green page style  ======*/


/*=============================================
=           blue page style            =
=============================================*/

.page-wrapper-blue .hero-slider-button {
    background-color: #0eb9cb;
}

.page-wrapper-blue .hero-slider-button:hover {
    background-color: #333;
}

.page-wrapper-blue .hero-slider-wrapper .slick-dots li.slick-active button {
    background-color: #0eb9cb;
}

.page-wrapper-blue .hero-slider-wrapper .slick-dots li button:hover {
    background-color: #0eb9cb;
}

.page-wrapper-blue .ht-slick-slider .slick-arrow:hover {
    background-color: #0eb9cb;
}

.page-wrapper-blue .ht-slick-slider .slick-arrow.slick-prev {
    right: 40px;
}

.page-wrapper-blue .blog-post-slider-wrapper .slider-single-post__image a:after {
    background-color: #0eb9cb;
    border: 1px solid #0eb9cb;
}

.page-wrapper-blue .blog-post-slider-wrapper .slider-single-post__content .post-title a:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .instagram-image-slider-wrapper .single-instagram-image a:before {
    background-color: #0eb9cb;
}

.page-wrapper-blue .small-image-slider-wrapper .slick-current>div {
    border: 1px solid #0eb9cb;
}

.page-wrapper-blue .small-image-slider-wrapper .slick-arrow:hover {
    color: #0eb9cb;
}


/*=====  End of blue page style  ======*/


/*=============================================
=           red page style            =
=============================================*/

.page-wrapper-red .hero-slider-button {
    background-color: #333;
}

.page-wrapper-red .hero-slider-button:hover {
    background-color: #F72525;
}

.page-wrapper-red .hero-slider-wrapper .slick-dots li.slick-active button {
    background-color: #333;
}

.page-wrapper-red .hero-slider-wrapper .slick-dots li button:hover {
    background-color: #333;
}

.page-wrapper-red .ht-slick-slider .slick-arrow:hover {
    background-color: #F72525;
}

.page-wrapper-red .ht-slick-slider .slick-arrow.slick-prev {
    right: 40px;
}

.page-wrapper-red .category-slider-wrapper-two .single-category-item__content .category-item-title a:hover {
    color: #F72525;
}

.page-wrapper-red .category-slider-wrapper-two .category-list-item li a:hover {
    color: #F72525;
}

.page-wrapper-red .category-slider-wrapper-two .category-link {
    color: #F72525;
}

.page-wrapper-red .small-image-slider-wrapper .slick-current>div {
    border: 1px solid #F72525;
}

.page-wrapper-red .small-image-slider-wrapper .slick-arrow:hover {
    color: #F72525;
}


/*=====  End of blue page style  ======*/


/*=====  End of slider  ======*/


/*=============================================
=            banner            =
=============================================*/


/*----------  single split banner  ----------*/

.single-split-banner__image {
    position: relative;
}

.single-split-banner__image a {
    display: block;
    width: 100%;
}

.single-split-banner__image a img {
    -webkit-transition: 0.6s;
    transition: 0.6s;
    width: 100%;
}

.single-split-banner__image a:hover img {
    opacity: 0.7;
}

.single-split-banner__image__content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-left: 40px;
}

.single-split-banner__image__content p {
    margin-bottom: 0;
}

.single-split-banner__image__content p.split-banner-title--light {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
    color: #666;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-split-banner__image__content p.split-banner-title--light {
        font-size: 16px;
        line-height: 16px;
    }
}

@media only screen and (max-width: 479px) {
    .single-split-banner__image__content p.split-banner-title--light {
        font-size: 16px;
        line-height: 16px;
    }
}

.single-split-banner__image__content p.split-banner-title--bold {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 28px;
    color: #333;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-split-banner__image__content p.split-banner-title--bold {
        font-size: 22px;
        line-height: 22px;
    }
}

@media only screen and (max-width: 479px) {
    .single-split-banner__image__content p.split-banner-title--bold {
        font-size: 22px;
        line-height: 22px;
    }
}

.single-split-banner__image__content p.split-banner-title--bold--small {
    font-size: 22px;
    line-height: 22px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-split-banner__image__content p.split-banner-title--bold--small {
        font-size: 19px;
        line-height: 19px;
    }
}

@media only screen and (max-width: 479px) {
    .single-split-banner__image__content p.split-banner-title--bold--small {
        font-size: 19px;
        line-height: 19px;
    }
}

.single-split-banner__image__content p.split-banner-title--price {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    color: #666;
    font-weight: 400;
    line-height: 18px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-split-banner__image__content p.split-banner-title--price {
        font-size: 15px;
        line-height: 15px;
    }
}

@media only screen and (max-width: 479px) {
    .single-split-banner__image__content p.split-banner-title--price {
        font-size: 15px;
        line-height: 15px;
    }
}

.single-split-banner__image__content p.split-banner-title--price .amount {
    margin-top: 5px;
    display: block;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 24px;
    color: #3a9943;
    font-weight: 600;
    line-height: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-split-banner__image__content p.split-banner-title--price .amount {
        font-size: 18px;
        line-height: 18px;
    }
}

@media only screen and (max-width: 479px) {
    .single-split-banner__image__content p.split-banner-title--price .amount {
        font-size: 18px;
        line-height: 18px;
    }
}


/*----------  full banner  ----------*/

.full-banner__content h5 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #3a9943;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.full-banner__content h4 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 35px;
    color: #333;
    font-weight: 400;
    line-height: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .full-banner__content h4 {
        font-size: 30px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .full-banner__content h4 {
        font-size: 30px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .full-banner__content h4 {
        font-size: 30px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .full-banner__content h4 {
        font-size: 22px;
        line-height: 22px;
    }
}

.full-banner__content h3 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 60px;
    color: #333;
    font-weight: 500;
    line-height: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .full-banner__content h3 {
        font-size: 50px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .full-banner__content h3 {
        font-size: 45px;
        line-height: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .full-banner__content h3 {
        font-size: 45px;
        line-height: 45px;
    }
}

@media only screen and (max-width: 479px) {
    .full-banner__content h3 {
        font-size: 35px;
        line-height: 35px;
    }
}

.full-banner__content p {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #666;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 40px;
}

.full-banner__content .banner-button {
    border-radius: 5px;
    padding: 0 20px;
}

@media only screen and (max-width: 479px) {
    .full-banner__content .banner-button {
        font-size: 12px;
        line-height: 40px;
        padding: 0 15px;
    }
}

.full-banner__image a {
    display: block;
    width: 100%;
}

.full-banner__image a img {
    -webkit-transition: 0.6s;
    transition: 0.6s;
    width: 100%;
}

.full-banner__image a:hover img {
    opacity: 0.7;
}


/*----------  full banner two  ----------*/

.full-banner-two__content {
    background-color: #49b14d;
    padding: 0 45px;
    padding-right: 65px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .full-banner-two__content {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-right: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .full-banner-two__content {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-right: 40px;
    }
}

.full-banner-two__content__wrapper h3 {
    font-size: 52px;
    line-height: 52px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .full-banner-two__content__wrapper h3 {
        font-size: 40px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .full-banner-two__content__wrapper h3 {
        font-size: 30px;
        line-height: 30px;
    }
}

.full-banner-two__content__wrapper h4 {
    font-size: 52px;
    line-height: 52px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .full-banner-two__content__wrapper h4 {
        font-size: 40px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .full-banner-two__content__wrapper h4 {
        font-size: 30px;
        line-height: 30px;
    }
}

.full-banner-two__content__wrapper p {
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 30px;
}

.full-banner-two__content__wrapper .banner-two-button {
    background-color: #ffffff;
    color: #333333;
    border-radius: 5px;
}

.full-banner-two__content__wrapper .banner-two-button:hover {
    background-color: #ffdd20;
}

@media only screen and (max-width: 479px) {
    .full-banner-two__content__wrapper .banner-two-button {
        font-size: 12px;
        line-height: 40px;
        padding: 0 15px;
    }
}

.full-banner-two__image a {
    display: block;
    width: 100%;
}

.full-banner-two__image a img {
    width: 100%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.full-banner-two__image a:hover img {
    opacity: 0.7;
}


/*----------  full banner background  ----------*/

.full-banner-bg-wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    padding: 80px 0;
    padding-left: 70px;
    padding-top: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .full-banner-bg-wrapper {
        background-position-x: 20%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .full-banner-bg-wrapper {
        background-position-x: 15%;
    }
}

@media only screen and (max-width: 767px) {
    .full-banner-bg-wrapper {
        background-position-x: 15%;
        padding-left: 50px;
    }
}

@media only screen and (max-width: 479px) {
    .full-banner-bg-wrapper {
        background-position-x: 30%;
        padding-left: 30px;
    }
}

.full-banner-bg-wrapper__content {
    max-width: 40%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .full-banner-bg-wrapper__content {
        max-width: 50%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .full-banner-bg-wrapper__content {
        max-width: 60%;
    }
}

@media only screen and (max-width: 767px) {
    .full-banner-bg-wrapper__content {
        max-width: 80%;
    }
}

@media only screen and (max-width: 479px) {
    .full-banner-bg-wrapper__content {
        max-width: 100%;
    }
}

.full-banner-bg-wrapper__content h3 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 70px;
    color: #333;
    font-weight: 500;
    line-height: 70px;
    letter-spacing: -1px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .full-banner-bg-wrapper__content h3 {
        font-size: 60px;
        line-height: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .full-banner-bg-wrapper__content h3 {
        font-size: 55px;
        line-height: 55px;
    }
}

@media only screen and (max-width: 767px) {
    .full-banner-bg-wrapper__content h3 {
        font-size: 55px;
        line-height: 55px;
    }
}

@media only screen and (max-width: 575px) {
    .full-banner-bg-wrapper__content h3 {
        font-size: 45px;
        line-height: 45px;
    }
}

@media only screen and (max-width: 479px) {
    .full-banner-bg-wrapper__content h3 {
        font-size: 35px;
        line-height: 35px;
    }
}

.full-banner-bg-wrapper__content h4 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 40px;
    color: #333;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 575px) {
    .full-banner-bg-wrapper__content h4 {
        font-size: 30px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .full-banner-bg-wrapper__content h4 {
        font-size: 25px;
        line-height: 25px;
    }
}

.full-banner-bg-wrapper__content p {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
    color: #666;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 35px;
}

@media only screen and (max-width: 479px) {
    .full-banner-bg-wrapper__content p {
        font-size: 18px;
        line-height: 22px;
    }
}

.full-banner-bg-wrapper__content .banner-bg-button {
    background-color: #333;
    color: #fff;
    border-radius: 5px;
}

.full-banner-bg-wrapper__content .banner-bg-button:hover {
    background-color: #F72525;
}

@media only screen and (max-width: 479px) {
    .full-banner-bg-wrapper__content .banner-bg-button {
        font-size: 12px;
        line-height: 40px;
        padding: 0 15px;
    }
}


/*----------  slider banner  ----------*/

.slider-banner a {
    display: block;
    width: 100%;
}

.slider-banner a img {
    width: 100%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.slider-banner a:hover img {
    opacity: 0.7;
}

.page-sidebar-banner a {
    display: block;
    width: 100%;
}

.page-sidebar-banner a img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.page-sidebar-banner a:hover img {
    opacity: 0.7;
}


/*=====  End of banner  ======*/


/*=============================================
=            light green page style            =
=============================================*/

.page-wrapper-light-green .single-split-banner__image__content p.split-banner-title--price .amount {
    color: #49b14d;
}


/*=====  End of light green page style  ======*/


/*=============================================
=            red page style            =
=============================================*/

.page-wrapper-red .single-split-banner__image__content p.split-banner-title--price .amount {
    color: #333333;
}


/*=====  End of red page style  ======*/


/*=============================================
=            blue page style            =
=============================================*/

.page-wrapper-blue .single-split-banner__image__content p.split-banner-title--price .amount {
    color: #0eb9cb;
}


/*=====  End of red page style  ======*/


/*=============================================
=            feature icon            =
=============================================*/

.icon-feature-wrapper {
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    padding: 30px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .icon-feature-wrapper {
        margin-top: -15px;
    }
}

@media only screen and (max-width: 767px) {
    .icon-feature-wrapper {
        margin-top: -15px;
    }
}

@media only screen and (max-width: 479px) {
    .icon-feature-wrapper .col-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.single-icon-feature {
    position: relative;
    padding: 10px 0;
    padding-left: 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-icon-feature {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .single-icon-feature {
        margin-top: 15px;
    }
}

.single-icon-feature--product-details {
    padding-left: 50px;
}

.single-icon-feature__icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

.single-icon-feature__content p {
    margin-bottom: 0;
}

.single-icon-feature__content p.feature-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #3a9943;
    font-weight: 600;
    line-height: 18px;
    font-family: "Montserrat", sans-serif;
}

.single-icon-feature__content p.feature-text {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 20px;
}


/*=====  End of feature icon  ======*/


/*=============================================
=            light green page style            =
=============================================*/

.page-wrapper-light-green .single-icon-feature__content p {
    margin-bottom: 0;
}

.page-wrapper-light-green .single-icon-feature__content p.feature-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #49b14d;
    font-weight: 600;
    line-height: 18px;
}


/*=====  End of light green page style  ======*/


/*=============================================
=            blue page style            =
=============================================*/

.page-wrapper-blue .single-icon-feature__content p {
    margin-bottom: 0;
}

.page-wrapper-blue .single-icon-feature__content p.feature-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #0eb9cb;
    font-weight: 600;
    line-height: 18px;
}


/*=====  End of blue page style  ======*/


/*=============================================
=            section title            =
=============================================*/

.section-title h2 {
    position: relative;
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 10px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 24px;
    color: #333;
    font-weight: 600;
    line-height: 27px;
    font-family: "Montserrat", sans-serif;
}

.section-title h2:after {
    content: "";
    background: #3a9943;
    width: 66px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.section-title--medium h2 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
    color: #333;
    font-weight: 600;
    line-height: 26px;
}


/*=====  End of section title  ======*/


/*=============================================
=            Light green page style            =
=============================================*/

.page-wrapper-light-green .section-title h2:after {
    background: #49b14d;
}


/*=====  End of Light green page style  ======*/


/*=============================================
=            red page style            =
=============================================*/

.page-wrapper-red .section-title h2:after {
    background: #F72525;
}


/*=====  End of red page style  ======*/


/*=============================================
=            blue page style            =
=============================================*/

.page-wrapper-blue .section-title h2:after {
    background: #0eb9cb;
}


/*=====  End of blue page style  ======*/


/*=============================================
=            newsletter            =
=============================================*/


/*----------  newsletter section  ----------*/

.newsletter-wrapper {
    background-repeat: no-repeat;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

@media only screen and (max-width: 479px) {
    .newsletter-wrapper {
        padding: 40px 20px;
    }
}

.newsletter-wrapper__text {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter-wrapper__text {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter-wrapper__text {
        width: 100%;
        margin-bottom: 20px;
    }
}

.newsletter-wrapper__text h5 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .newsletter-wrapper__text h5 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter-wrapper__text h5 {
        font-size: 22px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 575px) {
    .newsletter-wrapper__text h5 {
        font-size: 18px;
        line-height: 24px;
    }
}

.newsletter-wrapper__text p {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
    .newsletter-wrapper__text p {
        font-size: 14px;
        line-height: 20px;
    }
}

.newsletter-wrapper__form {
    position: relative;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter-wrapper__form {
        width: 80%;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter-wrapper__form {
        width: 80%;
    }
}

@media only screen and (max-width: 575px) {
    .newsletter-wrapper__form {
        width: 90%;
    }
}

@media only screen and (max-width: 479px) {
    .newsletter-wrapper__form {
        width: 100%;
    }
}

.newsletter-wrapper__form form {
    position: relative;
}

.newsletter-wrapper__form form input[type=email] {
    display: inline-block;
    vertical-align: top;
    padding: 10px 15px;
    padding-right: 125px;
    line-height: 30px;
    height: 48px;
    color: #a9a9a9;
    font-size: 14px;
    width: 100%;
    border: 0;
    background: #fff;
    border-radius: 5px;
    text-align: left;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media only screen and (max-width: 479px) {
    .newsletter-wrapper__form form input[type=email] {
        font-size: 12px;
        padding-right: 100px;
    }
}

.newsletter-wrapper__form form ::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.newsletter-wrapper__form form ::-moz-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.newsletter-wrapper__form form :-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.newsletter-wrapper__form form ::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.newsletter-wrapper__form form ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

.newsletter-wrapper__form form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #a9a9a9;
}

.newsletter-wrapper__form form ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #a9a9a9;
}

.newsletter-wrapper__form form button {
    line-height: 48px;
    border: none;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0 18px;
    font-size: 16px;
    max-width: 120px;
    color: #333;
    background: #ffdd20;
    font-weight: 700;
    position: absolute;
    text-transform: capitalize;
    right: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media only screen and (max-width: 479px) {
    .newsletter-wrapper__form form button {
        max-width: 80px;
        font-size: 12px;
        padding: 0 10px;
    }
}

.newsletter-wrapper__form form button:hover {
    color: #3a9943;
}

.newsletter-wrapper__form .mailchimp-alerts {
    color: #ffffff;
}


/*----------  newsletter popup  ----------*/

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .newsletter-popup-area {
        display: none;
    }
}

.newsletter-popup-area:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: 0.8;
    z-index: 99;
    visibility: visible;
}

.newsletter-popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 50px 20px;
    z-index: 999;
    width: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .newsletter-popup-content {
        width: 70%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .newsletter-popup-content {
        width: 80%;
    }
}

.newsletter-popup-content .close-newsletter-popup {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 15px;
    background-color: #333;
    color: #ffffff;
}

.newsletter-popup-content .close-newsletter-popup:hover {
    background-color: #3a9943;
}

.newsletter-popup-content h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0 0 15px;
    font-family: "Montserrat", sans-serif;
}

.newsletter-popup-content p {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    color: #666;
    font-weight: 400;
    line-height: 21px;
}

.newsletter-popup-content .subscription-form form input {
    background: #EBEBEB none repeat scroll 0% 0%;
    border: medium none;
    height: 40px;
    width: 65%;
    margin: 20px auto;
    padding: 0 15px;
    font-size: 15px;
    display: block;
}

.newsletter-popup-content .subscription-form form button {
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #333;
    margin-bottom: 20px;
}

.newsletter-popup-content .subscription-form form button:hover {
    background-color: #3a9943;
    color: #ffffff;
}


/*=====  End of newsletter  ======*/


/*=============================================
=            light green page style            =
=============================================*/

.page-wrapper-light-green .newsletter-wrapper__form form button:hover {
    color: #49b14d;
}


/*=====  End of light green page style  ======*/


/*=============================================
=            red page style            =
=============================================*/

.page-wrapper-red .newsletter-wrapper__form form button {
    background-color: #F72525;
    color: #ffffff;
}

.page-wrapper-red .newsletter-wrapper__form form button:hover {
    background-color: #333333;
}


/*=====  End of red page style  ======*/


/*=============================================
=            blue page style            =
=============================================*/

.page-wrapper-blue .newsletter-wrapper__form form button:hover {
    color: #0eb9cb;
}


/*=====  End of blue page style  ======*/


/*=============================================
=            product            =
=============================================*/


/*----------  default styles  ----------*/

.product-title {
    margin-bottom: 5px;
}

.product-title a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    color: #333;
    font-weight: 700;
    line-height: 20px;
    font-family: "Montserrat", sans-serif;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.product-title a:hover {
    color: #3a9943;
}

.rating {
    margin-bottom: 10px;
}

.rating i {
    font-size: 17px;
    color: #E0E0E0;
}

.rating i.active {
    color: #FFDD20;
}

.product-price {
    margin-bottom: 0;
}

.product-price .discounted-price {
    margin-right: 10px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #3a9943;
    font-weight: 700;
    line-height: 22px;
}

.product-price .main-price {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #3a9943;
    font-weight: 700;
    line-height: 22px;
}

.product-price .main-price.discounted {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    color: #868686;
    font-weight: 300;
    line-height: 18px;
    text-decoration: line-through;
}

.product-price--medium .discounted-price {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    color: #3a9943;
    font-weight: 700;
    line-height: 25px;
}

.product-price--medium .main-price {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    color: #3a9943;
    font-weight: 700;
    line-height: 25px;
}

.product-price--medium .main-price.discounted {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    color: #868686;
    font-weight: 300;
    line-height: 21px;
}

.product-price--big .discounted-price {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    color: #3a9943;
    font-weight: 700;
    line-height: 45px;
}

@media only screen and (max-width: 479px) {
    .product-price--big .discounted-price {
        font-size: 26px;
        line-height: 38px;
    }
}

.product-price--big .main-price {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    color: #3a9943;
    font-weight: 700;
    line-height: 45px;
}

@media only screen and (max-width: 479px) {
    .product-price--big .main-price {
        font-size: 26px;
        line-height: 38px;
    }
}

.product-price--big .main-price.discounted {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 25px;
    color: #868686;
    font-weight: 300;
    line-height: 30px;
}

@media only screen and (max-width: 479px) {
    .product-price--big .main-price.discounted {
        font-size: 20px;
        line-height: 30px;
    }
}

.product-short-desc {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 20px;
}

.discount-label {
    position: absolute;
    top: 20px;
    left: 20px;
    right: auto;
    background-repeat: no-repeat;
    background-position: left center;
    color: #ffffff;
    width: 60px;
    height: 25px;
    padding-left: 10px;
    line-height: 21px;
    font-size: 12px;
    font-weight: 600;
}

.discount-label--green {
    background-image: url("/assets/img/icons/green-discount-label.webp");
}

.discount-label--red {
    background-image: url("/assets/img/icons/red-discount-label.webp");
}

.discount-label--blue {
    background-image: url("/assets/img/icons/blue-discount-label.webp");
}

.discount-label--static {
    position: static;
    display: inline-block;
}

.hover-icons {
    position: absolute;
    bottom: 15px;
    right: 0;
    padding: 5px;
    background: #ffffff;
    border-radius: 25px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.hover-icons ul li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0;
    font-size: 16px;
    color: #333;
    background: #fff;
    font-weight: 400;
    text-align: center;
    border-radius: 100%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.hover-icons ul li a:hover,
.hover-icons ul li a.active {
    background: #3a9943;
    color: #ffffff;
}

.cart-icon {
    display: inline-block;
    position: absolute;
    bottom: 35px;
    right: 15px;
}

.cart-icon--double-slider {
    right: -20px;
}

@media only screen and (max-width: 767px) {
    .cart-icon--double-slider {
        right: -25px;
    }
}

@media only screen and (max-width: 575px) {
    .cart-icon--double-slider {
        right: 0;
    }
}

.cart-icon a {
    display: block;
    text-align: center;
    border-radius: 100%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    background: #f2f2f2;
    color: #333;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.cart-icon a:hover,
.cart-icon a.active {
    background-color: #3a9943;
    color: #ffffff;
}


/*----------  widget product  ----------*/

.single-widget-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.single-widget-product__image {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
}

.single-widget-product__image a {
    display: block;
    width: 100%;
}

.single-widget-product__image a img {
    width: 100%;
}

.single-widget-product__content {
    -ms-flex-preferred-size: calc(100% - 100px);
    flex-basis: calc(100% - 100px);
    padding-left: 20px;
}


/*----------  product single row slider  ----------*/

.single-slider-product {
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.single-slider-product__image {
    position: relative;
}

.single-slider-product__image>a {
    display: block;
    width: 100%;
}

.single-slider-product__image>a img {
    width: 100%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.single-slider-product__image>a img:nth-child(1) {
    visibility: visible;
    opacity: 1;
}

.single-slider-product__image>a img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
}

.single-slider-product__content {
    background: transparent;
    text-align: left;
    overflow: hidden;
    position: relative;
    padding: 17px 20px 16px 20px;
    border: 1px solid #bbb8b8;
    border-top: 0;
}

.single-slider-product:hover .single-slider-product__image>a img:nth-child(2) {
    visibility: visible;
    opacity: 1;
}

.single-slider-product:hover .hover-icons {
    visibility: visible;
    opacity: 1;
    right: 15px;
}

.single-slider-product:hover .single-slider-product__content {
    background: #3a9943;
    border: 1px solid #05480c;
    border-top: none;
}

.single-slider-product:hover .single-slider-product__content .product-title a {
    color: white;
}


/*----------  product details  ----------*/

.product-detail-content {
    border: 1px solid #ebebeb;
    padding: 20px;
}

.tags .tag-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 20px;
}

.tags .tag-list {
    display: inline-block;
}

.tags .tag-list li {
    display: inline-block;
}

.tags .tag-list li a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #343434;
    font-weight: 300;
    line-height: 20px;
}

.tags .tag-list li a:hover {
    color: #3a9943;
}

.product-details-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 24px;
    color: #333333;
    font-weight: 300;
    line-height: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product-details-title {
        font-size: 22px;
        line-height: 26px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-details-title {
        font-size: 22px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .product-details-title {
        font-size: 22px;
        line-height: 26px;
    }
}

.product-info-block .single-info .title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    color: #666;
    font-weight: 300;
    line-height: 24px;
}

.product-info-block .single-info .value {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    color: #3a9943;
    font-weight: 300;
    line-height: 24px;
}

.product-info-block .single-info .value a {
    font-weight: 700;
}

.product-info-block .single-info .value a:hover {
    text-decoration: underline;
    color: #3a9943;
}

.product-short-desc {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 20px;
    padding: 23px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.quantity .quantity-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    line-height: 48px;
}

.pro-qty {
    display: inline-block;
    position: relative;
    width: 100px;
    border: 1px solid #ddd;
    height: 40px;
}

.pro-qty input {
    padding-right: 25px;
    width: 100%;
    border: none;
    height: 100%;
    padding-left: 20px;
}

.pro-qty a {
    width: 20px;
    height: 20px;
    position: absolute;
    font-weight: normal;
    line-height: 20px;
    text-align: center;
    font-size: 18px;
}

.pro-qty a:hover {
    color: #3a9943;
}

.pro-qty a.inc {
    top: 0;
    right: 0;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.pro-qty a.dec {
    bottom: 0;
    right: 0;
    border-left: 1px solid #ddd;
    padding-top: 2px;
}

.size {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    line-height: 24px;
}

.size span.title {
    font-weight: 500;
}

.size .nice-select {
    width: 100px;
    border: 1px solid #ddd;
    margin-top: 5px;
    float: none;
}

.color {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    line-height: 24px;
}

.color span.title {
    font-weight: 500;
}

.color span.color-block {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
    margin-top: 10px;
}

.color span.color-choice-1 {
    background-color: #B09603;
}

.color span.color-choice-2 {
    background-color: #C8BDBB;
}

.color span.color-choice-3 {
    background-color: #225170;
}

.color span.active {
    border: 2px solid #3a9943;
    width: 32px;
    height: 32px;
}

.group-product-form .table-content table {
    background: #fff none repeat scroll 0 0;
    border-color: #e5e5e5;
    border-radius: 0;
    border-style: solid;
    border-width: 1px 0 0 1px;
    text-align: center;
    width: 100%;
}

.group-product-form .table-content table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    width: 33.33%;
}

.group-product-form .table-content table td.product-name {
    font-weight: 500;
}

.group-product-form .table-content table td.product-name a {
    font-size: 14px;
}

.group-product-form .table-content table td.product-name a:hover {
    color: #3a9943;
}

.group-product-form .table-content table td p span {
    display: block;
    margin-top: 10px;
}


/*----------  produvt details feature wrapper  ----------*/

.product-details-feature-wrapper {
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    padding: 20px 0;
}

@media only screen and (max-width: 575px) {
    .product-details-feature-wrapper {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
}

.social-share-buttons h3 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.social-share-buttons ul {
    margin-bottom: 15px;
}

.social-share-buttons ul li {
    display: inline-block;
    margin-right: 5px;
}

@media only screen and (max-width: 767px) {
    .social-share-buttons ul li {
        margin-bottom: 5px;
    }
}

.social-share-buttons ul li a {
    display: block;
    border: 1px solid #ddd;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .social-share-buttons ul li a {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .social-share-buttons ul li a {
        margin-bottom: 5px;
    }
}

.social-share-buttons ul li a i.fa-twitter {
    color: #1DA1F2;
}

.social-share-buttons ul li a i.fa-facebook {
    color: #4867AA;
}

.social-share-buttons ul li a i.fa-google-plus {
    color: #DD5144;
}

.social-share-buttons ul li a i.fa-pinterest {
    color: #BD081B;
}

.social-share-buttons ul li:hover a {
    color: #fff;
}

.social-share-buttons ul li:hover a i.fa {
    color: #fff;
}

.social-share-buttons ul li:hover a.twitter {
    background-color: #1DA1F2;
}

.social-share-buttons ul li:hover a.facebook {
    background-color: #4867AA;
}

.social-share-buttons ul li:hover a.google-plus {
    background-color: #DD5144;
}

.social-share-buttons ul li:hover a.pinterest {
    background-color: #BD081B;
}

.review-links a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    color: #9e9e9e;
    font-weight: 300;
    line-height: 13px;
}

.review-links .separator {
    margin: 0 10px;
    font-weight: 300;
}


/*----------  product description tab  ----------*/

@media only screen and (max-width: 479px) {
    .product-description-review-container nav .nav-tabs {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media only screen and (max-width: 479px) and (max-width: 479px) {
    .product-description-review-container nav .nav-tabs .nav-link {
        border-right: 1px solid #ebebeb !important;
    }
}

@media only screen and (max-width: 479px) and (max-width: 479px) {
    .product-description-review-container nav .nav-tabs .nav-link:last-child {
        border-right: none !important;
    }
}

.product-description-review-container nav .nav-tabs a.nav-link {
    font-size: 20px;
    color: #a9a9a9;
    text-transform: capitalize;
    border-radius: 0;
    border: none !important;
    margin: 0;
    position: relative;
    font-weight: 600;
    line-height: 30px;
    padding: 13px 0;
    background: transparent;
    margin-right: 50px;
}

.product-description-review-container nav .nav-tabs a.nav-link.active {
    color: #333;
    border-bottom: 2px solid #3a9943 !important;
}

.product-description-review-container nav .nav-tabs a:hover {
    color: #333;
}

.product-description-review-container nav .nav-tabs a:last-child {
    margin-right: 0;
}

.product-description-review-container .tab-content .tab-pane.active {
    padding: 20px 30px;
}

.product-description-review-container .tab-content .tab-pane .product-description p {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    color: #666;
    font-weight: 300;
    line-height: 24px;
}


/*-- Single Product Rating --*/

.product-ratting-wrap {
    overflow: hidden;
}

.pro-avg-ratting {
    margin-bottom: 20px;
    float: left;
    width: 100%;
}

.pro-avg-ratting h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin: 0 0 7px;
}

.pro-avg-ratting h4 span {
    color: #333333;
    font-size: 12px;
    font-weight: 400;
    line-height: 10px;
}

.pro-avg-ratting>span {
    display: block;
    font-size: 12px;
    line-height: 10px;
}

.ratting-list {
    margin-bottom: 30px;
    float: left;
    width: 100%;
}

.ratting-list .sin-list {
    margin-right: 30px;
}

.ratting-list .sin-list:last-child {
    margin-right: 0;
}

.ratting-list .sin-list i {
    color: #333333;
    font-size: 12px;
}

.ratting-list .sin-list span {
    color: #666666;
}

.rattings-wrapper {
    margin-bottom: 40px;
    float: left;
    width: 100%;
}

.sin-rattings {
    margin-bottom: 40px;
}

.sin-rattings:last-child {
    margin-bottom: 0;
}

.sin-rattings .ratting-author {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.sin-rattings .ratting-author h3 {
    float: left;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 18px;
    margin-right: 15px;
}

@media only screen and (max-width: 575px) {
    .sin-rattings .ratting-author .ratting-star {
        float: left;
        width: 100%;
        margin-top: 5px;
    }
}

.sin-rattings .ratting-author .ratting-star i,
.sin-rattings .ratting-author .ratting-star span {
    color: #333333;
    font-size: 12px;
    line-height: 18px;
    float: left;
}

.sin-rattings .ratting-author .ratting-star span {
    margin-left: 5px;
}

.sin-rattings p {
    color: #666666;
    font-size: 15px;
    line-height: 24px;
}


/*-- Ratting Form Wrap --*/

.ratting-form-wrapper {
    float: left;
    width: 100%;
}

.ratting-form-wrapper h3 {
    font-size: 16px;
    margin: 0 0 30px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 16px;
}


/*-- Ratting Form --*/

.ratting-form h5 {
    float: left;
    font-size: 14px;
    line-height: 18px;
    margin-right: 10px;
}

.ratting-form .ratting-star i {
    font-size: 14px;
    float: left;
    line-height: 18px;
    display: block;
    margin-right: 3px;
}

.ratting-form .ratting-star i:last-child {
    margin: 0;
}

.ratting-form label {
    display: block;
    font-size: 14px;
    color: #666666;
    margin-bottom: 3px;
}

.ratting-form input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #dddddd;
    font-size: 13px;
    line-height: 24px;
    padding: 8px 15px;
    color: #666666;
}

.ratting-form input[type=submit] {
    width: auto;
    padding: 8px 30px;
    border-radius: 3px;
    border-color: #333333;
    background-color: #333333;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
}

.ratting-form input[type=submit]:hover {
    border-color: #3a9943;
    background-color: #3a9943;
    color: #ffffff;
}

.ratting-form textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #dddddd;
    font-size: 13px;
    line-height: 24px;
    padding: 8px 15px;
    color: #666666;
    height: 80px;
    resize: none;
}


/*----------  list view product  ----------*/

.single-slider-product--list-view {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 19px;
    border: 1px solid #f0f0f0;
}

@media only screen and (max-width: 575px) {
    .single-slider-product--list-view {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.single-slider-product--list-view__image {
    -ms-flex-preferred-size: 250px;
    flex-basis: 250px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-slider-product--list-view__image {
        -ms-flex-preferred-size: 200px;
        flex-basis: 200px;
    }
}

.single-slider-product--list-view__content {
    -ms-flex-preferred-size: calc(100% - 250px);
    flex-basis: calc(100% - 250px);
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-slider-product--list-view__content {
        -ms-flex-preferred-size: calc(100% - 200px);
        flex-basis: calc(100% - 200px);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-slider-product--list-view__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .single-slider-product--list-view__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.single-slider-product--list-view__content__details {
    padding: 0 20px;
    -ms-flex-preferred-size: 65%;
    flex-basis: 65%;
    border-right: 1px solid #f0f0f0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-slider-product--list-view__content__details {
        border-right: 0;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .single-slider-product--list-view__content__details {
        border-right: 0;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        padding-right: 0;
    }
}

@media only screen and (max-width: 575px) {
    .single-slider-product--list-view__content__details {
        padding-left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-slider-product--list-view__content__details {
        -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
    }
}

.single-slider-product--list-view__content__details .product-title {
    margin-top: 15px;
    margin-bottom: 15px;
}

.single-slider-product--list-view__content__details .product-title a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    color: #333;
    font-weight: 400;
    line-height: 24px;
    font-family: "Montserrat", sans-serif;
}

.single-slider-product--list-view__content__details .product-title a:hover {
    color: #3a9943;
}

.single-slider-product--list-view__content__details .short-desc {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 20px;
}

.single-slider-product--list-view__content__actions {
    padding: 15px 0 0 20px;
    -ms-flex-preferred-size: 35%;
    flex-basis: 35%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-slider-product--list-view__content__actions {
        -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-slider-product--list-view__content__actions {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .single-slider-product--list-view__content__actions {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .single-slider-product--list-view__content__actions {
        padding-left: 0;
    }
}

.single-slider-product--list-view__content__actions .availability .availability-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 20px;
}

.single-slider-product--list-view__content__actions .availability .availability-value {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #3a9943;
    font-weight: 300;
    line-height: 20px;
}

.single-slider-product--list-view__content__actions .product-price .discounted-price {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 24px;
    color: #3a9943;
    font-weight: 700;
    line-height: 34px;
}

.single-slider-product--list-view__content__actions .product-price .main-price {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 24px;
    color: #3a9943;
    font-weight: 700;
    line-height: 34px;
}

.single-slider-product--list-view__content__actions .product-price .main-price.discounted {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    color: #868686;
    font-weight: 300;
    line-height: 25px;
}

.single-slider-product--list-view__content__actions .hover-icons {
    visibility: visible;
    opacity: 1;
    position: static;
}

.single-slider-product--list-view__content__actions .hover-icons ul {
    text-align: center;
}

.single-slider-product--list-view__content__actions .hover-icons ul li {
    display: inline-block;
}


/*=====  End of product  ======*/


/*=============================================
=            light green page style            =
=============================================*/

.page-wrapper-light-green .product-title a:hover {
    color: #49b14d;
}

.page-wrapper-light-green .product-price .discounted-price {
    color: #49b14d;
}

.page-wrapper-light-green .product-price .main-price {
    color: #49b14d;
}

.page-wrapper-light-green .product-price .main-price.discounted {
    color: #868686;
}

.page-wrapper-light-green .product-price--medium .discounted-price {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    color: #49b14d;
    font-weight: 700;
    line-height: 25px;
}

.page-wrapper-light-green .product-price--medium .main-price {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    color: #49b14d;
    font-weight: 700;
    line-height: 25px;
}

.page-wrapper-light-green .product-price--medium .main-price.discounted {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    color: #868686;
    font-weight: 300;
    line-height: 21px;
}

.page-wrapper-light-green .hover-icons ul li a:hover,
.page-wrapper-light-green .hover-icons ul li a.active {
    background-color: #49b14d;
}

.page-wrapper-light-green .cart-icon a:hover,
.page-wrapper-light-green .cart-icon a.active {
    background-color: #49b14d;
}

.page-wrapper-light-green .tags .tag-list li a:hover {
    color: #49b14d;
}

.page-wrapper-light-green .product-info-block .single-info .value {
    color: #49b14d;
}

.page-wrapper-light-green .product-info-block .single-info .value a:hover {
    color: #49b14d;
}

.page-wrapper-light-green .pro-qty a:hover {
    color: #49b14d;
}

.page-wrapper-light-green .product-cart-button {
    background-color: #49b14d;
}

.page-wrapper-light-green .product-cart-button:hover {
    background-color: #333;
}

.page-wrapper-light-green .compare-button a:hover,
.page-wrapper-light-green .wishlist-button a:hover {
    color: #49b14d;
}


/*=====  End of light green page style  ======*/


/*=============================================
=            red page style            =
=============================================*/

.page-wrapper-red .product-title a:hover {
    color: #F72525;
}

.page-wrapper-red .product-price .discounted-price {
    color: #F72525;
}

.page-wrapper-red .product-price .main-price {
    color: #F72525;
}

.page-wrapper-red .product-price .main-price.discounted {
    color: #868686;
}

.page-wrapper-red .hover-icons ul li a:hover,
.page-wrapper-red .hover-icons ul li a.active {
    background-color: #F72525;
}

.page-wrapper-red .cart-icon a:hover,
.page-wrapper-red .cart-icon a.active {
    background-color: #F72525;
}

.page-wrapper-red .tags .tag-list li a:hover {
    color: #F72525;
}

.page-wrapper-red .product-info-block .single-info .value {
    color: #F72525;
}

.page-wrapper-red .product-info-block .single-info .value a:hover {
    color: #F72525;
}

.page-wrapper-red .pro-qty a:hover {
    color: #F72525;
}

.page-wrapper-red .product-cart-button {
    background-color: #F72525;
}

.page-wrapper-red .product-cart-button:hover {
    background-color: #333;
}

.page-wrapper-red .compare-button a:hover,
.page-wrapper-red .wishlist-button a:hover {
    color: #F72525;
}


/*=====  End of blue page style  ======*/


/*=============================================
=            blue page style            =
=============================================*/

.page-wrapper-blue .product-title a:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .product-price .discounted-price {
    color: #0eb9cb;
}

.page-wrapper-blue .product-price .main-price {
    color: #0eb9cb;
}

.page-wrapper-blue .product-price .main-price.discounted {
    color: #868686;
}

.page-wrapper-blue .hover-icons ul li a:hover,
.page-wrapper-blue .hover-icons ul li a.active {
    background-color: #0eb9cb;
}

.page-wrapper-blue .cart-icon a:hover,
.page-wrapper-blue .cart-icon a.active {
    background-color: #0eb9cb;
}

.page-wrapper-blue .tags .tag-list li a:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .product-info-block .single-info .value {
    color: #0eb9cb;
}

.page-wrapper-blue .product-info-block .single-info .value a:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .pro-qty a:hover {
    color: #0eb9cb;
}

.page-wrapper-blue .product-cart-button {
    background-color: #0eb9cb;
}

.page-wrapper-blue .product-cart-button:hover {
    background-color: #333;
}

.page-wrapper-blue .compare-button a:hover,
.page-wrapper-blue .wishlist-button a:hover {
    color: #0eb9cb;
}


/*=====  End of blue page style  ======*/


/*=============================================
=            counter            =
=============================================*/

.counter-deal {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-80%);
    transform: translateY(-80%);
    right: 127px;
    display: inline-block;
    background-color: #3a9943;
    padding: 0 20px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 17px;
    color: #ffffff;
    font-weight: 700;
    line-height: 36px;
    border-radius: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-deal {
        -webkit-transform: translateY(-160%);
        transform: translateY(-160%);
    }
}

@media only screen and (max-width: 767px) {
    .counter-deal {
        position: static;
        -webkit-transform: none;
        transform: none;
        margin-bottom: 30px;
    }
}

.counter-deal .deal-countdown {
    display: inline-block;
    margin-left: 15px;
}

.counter-deal .deal-countdown .single-countdown {
    display: inline-block;
}

.counter-deal .deal-countdown .single-countdown__text {
    margin: 0 5px;
}


/*=====  End of counter  ======*/


/*=============================================
=            light green page style            =
=============================================*/

.page-wrapper-light-green .counter-deal {
    background-color: #49b14d;
}


/*=====  End of blue page style  ======*/


/*=============================================
=            blue page style            =
=============================================*/

.page-wrapper-blue .counter-deal {
    background-color: #0eb9cb;
}


/*=====  End of blue page style  ======*/


/*=============================================
=            red page style            =
=============================================*/

.page-wrapper-red .counter-deal {
    background-color: #F72525;
}


/*=====  End of blue page style  ======*/


/*=============================================
=            progressbar            =
=============================================*/

.product-availability__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 20px;
}

.product-availability .progress {
    height: 10px;
}

.product-availability .progress .progress-bar.bg-warning {
    background-color: #ffdd20 !important;
}


/*=====  End of progressbar  ======*/


/*=============================================
=            quickview            =
=============================================*/

.quick-view-modal-container {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.quick-view-modal-container.show {
    visibility: visible;
    opacity: 1;
    z-index: 99999;
}

.quick-view-modal-container .modal-dialog {
    max-width: 80%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quick-view-modal-container .modal-dialog {
        max-width: 90%;
    }
}

@media only screen and (max-width: 767px) {
    .quick-view-modal-container .modal-dialog {
        max-width: 90%;
    }
}

@media only screen and (max-width: 575px) {
    .quick-view-modal-container .modal-dialog {
        max-width: 100%;
    }
    #hidden-sm {
        display: none;
    }
}

.quick-view-modal-container .modal-header {
    border: none;
    padding-bottom: 0;
}

.quick-view-modal-container .modal-header button {
    z-index: 999;
}

.quick-view-modal-container .modal-body {
    padding: 30px 50px 70px 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quick-view-modal-container .modal-body {
        padding: 30px 30px 70px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .quick-view-modal-container .modal-body {
        padding: 30px 30px 70px 30px;
    }
}

@media only screen and (max-width: 479px) {
    .quick-view-modal-container .modal-body {
        padding: 30px 15px 70px 15px;
    }
}

.quick-view-modal-container .modal-content {
    border-radius: 0;
    max-height: 850px;
    overflow: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .quick-view-modal-container .modal-content {
        max-height: 500px;
        overflow: auto;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .quick-view-modal-container .modal-content {
        max-height: 500px;
        overflow: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quick-view-modal-container .modal-content {
        max-height: 500px;
        overflow: auto;
    }
}

@media only screen and (max-width: 767px) {
    .quick-view-modal-container .modal-content {
        max-height: 500px;
        overflow: auto;
    }
}


/*=====  End of quickview  ======*/


/*=============================================
=            breadcrumb            =
=============================================*/

.breadcrumb-content ul li {
    display: inline-block;
    margin-right: 20px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    color: #333;
    font-weight: 400;
    line-height: 25px;
}

.breadcrumb-content ul li.has-child {
    position: relative;
}

.breadcrumb-content ul li.has-child:before {
    content: "";
    padding: 0;
    color: #666;
    display: inline-block;
    vertical-align: top;
    font-family: "Ionicons";
    font-size: 12px;
    position: absolute;
    right: -15px;
}

.breadcrumb-content ul li:last-child {
    margin-right: 0;
}

.breadcrumb-content ul li a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    color: #666;
    font-weight: 400;
    line-height: 25px;
}


/*=====  End of breadcrumb  ======*/


/*=============================================
=            pagination            =
=============================================*/

.pagination-section {
    border: 1px solid #ededed;
    padding: 5px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .pagination-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.pagination-section .pagination {
    display: inline-block;
    padding: 10px 0;
}

.pagination-section .pagination li {
    display: inline-block;
}

.pagination-section .pagination li a {
    color: #333;
    font-size: 14px;
    padding: 0;
    font-weight: 400;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    border: 0;
    border-radius: 4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.pagination-section .pagination li a:hover {
    background: #3a9943;
    color: #fff;
}

.pagination-section .pagination li.active a {
    color: #fff;
    font-size: 14px;
    padding: 0;
    font-weight: 400;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #3a9943;
    border: 0;
    border-radius: 4px;
}

.pagination-section .pagination-text {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 38px;
}


/*=====  End of pagination  ======*/


/*=============================================
=           Cart            =
=============================================*/

.cart-table {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
}

.cart-table .table {
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .cart-table .table {
        border-top: 8px solid #f2f2f2;
    }
}

.cart-table .table thead {
    background-color: #f2f2f2;
}

@media only screen and (max-width: 767px) {
    .cart-table .table thead {
        display: none;
    }
}

.cart-table .table thead tr th {
    text-align: center;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #333333;
    padding: 12px 20px;
}

.cart-table .table tbody tr td {
    text-align: center;
    border: none;
    padding: 25px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #f2f2f2;
}

@media only screen and (max-width: 767px) {
    .cart-table .table tbody tr td {
        display: block;
        width: 100%;
        max-width: none;
        padding: 15px;
        text-align: left;
    }
}

.cart-table th.pro-thumbnail,
.cart-table td.pro-thumbnail {
    max-width: 160px;
    min-width: 120px;
    width: 160px;
}

@media only screen and (max-width: 767px) {
    .cart-table th.pro-thumbnail a,
    .cart-table td.pro-thumbnail a {
        width: 160px;
    }
}

.cart-table th.pro-title,
.cart-table td.pro-title {
    min-width: 200px;
}

.cart-table td.pro-thumbnail a {
    display: block;
}

.cart-table td.pro-thumbnail a img {
    width: 100%;
    background-color: #f6f7f8;
}

.cart-table td.pro-title a {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

.cart-table td.pro-title a:hover {
    color: #3a9943;
}

.cart-table td.pro-price span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
}

.cart-table td.pro-quantity {
    /*----------  Additional cart quantity style will be placed here  ----------*/
}

.cart-table td.pro-subtotal span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
}

.cart-table td.pro-addtocart button {
    width: 140px;
    border-radius: 0;
    height: 36px;
    border: 1px solid #3a9943;
    line-height: 24px;
    padding: 5px 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: #333333;
    background-color: #3a9943;
}

.cart-table td.pro-remove a {
    display: block;
    font-weight: 500;
    color: #333333;
}

.cart-table td.pro-remove a i {
    font-size: 15px;
}

.cart-table td.pro-remove a:hover {
    color: #ff0000;
}

@media only screen and (max-width: 767px) {
    .cart-table td.pro-remove a {
        width: 60px;
        text-align: center;
    }
}


/*-- Calculate Shipping --*/

.calculate-shipping {
    margin-bottom: 23px;
}

.calculate-shipping h4 {
    font-size: 20px;
    line-height: 23px;
    text-decoration: underline;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}

.calculate-shipping form .nice-select {
    width: 100%;
    border-radius: 0;
    height: 36px;
    border: 1px solid #999999;
    line-height: 24px;
    padding: 5px 20px;
    background-color: transparent;
}

.calculate-shipping form .nice-select::after {
    border-color: #333333;
}

.calculate-shipping form .nice-select .current {
    display: block;
    line-height: 24px;
    font-size: 14px;
    color: #333333;
}

.calculate-shipping form .nice-select .list {
    width: 100%;
}

.calculate-shipping form input {
    width: 100%;
    border-radius: 0;
    height: 36px;
    border: 1px solid #999999;
    line-height: 24px;
    padding: 5px 20px;
    color: #333333;
    background-color: transparent;
}

.calculate-shipping form input[type=submit] {
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #333333;
    border-color: #333333;
    width: 140px;
    border-radius: 3px;
}

.calculate-shipping form input[type=submit]:hover {
    background-color: #3a9943;
    border-color: #3a9943;
}


/*-- Discount Coupon --*/

.discount-coupon h4 {
    font-size: 20px;
    line-height: 23px;
    text-decoration: underline;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}

.discount-coupon form input {
    width: 100%;
    border-radius: 0;
    height: 36px;
    border: 1px solid #999999;
    line-height: 24px;
    padding: 5px 20px;
    color: #333333;
    background-color: transparent;
}

.discount-coupon form input[type=submit] {
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #333333;
    border-color: #333333;
    width: 140px;
    border-radius: 3px;
}

.discount-coupon form input[type=submit]:hover {
    background-color: #3a9943;
    border-color: #3a9943;
}


/*-- Cart Summary --*/

.cart-summary {
    float: right;
    max-width: 410px;
    width: 100%;
    margin-left: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart-summary {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .cart-summary {
        margin-left: 0;
    }
}

.cart-summary .cart-summary-wrap {
    background-color: #f2f2f2;
    padding: 45px 50px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 575px) {
    .cart-summary .cart-summary-wrap {
        padding: 25px 30px;
    }
}

.cart-summary .cart-summary-wrap h4 {
    font-size: 20px;
    line-height: 23px;
    text-decoration: underline;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}

.cart-summary .cart-summary-wrap p {
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: #333333;
}

.cart-summary .cart-summary-wrap p span {
    float: right;
}

.cart-summary .cart-summary-wrap h2 {
    border-top: 1px solid #999999;
    padding-top: 9px;
    font-size: 18px;
    line-height: 23px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.cart-summary .cart-summary-wrap h2 span {
    float: right;
}

.cart-summary .cart-summary-button {
    overflow: hidden;
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart-summary .cart-summary-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .cart-summary .cart-summary-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.cart-summary .cart-summary-button button {
    margin-top: 10px;
    width: 140px;
    border-radius: 0;
    height: 36px;
    border: 1px solid #999999;
    line-height: 24px;
    padding: 5px 20px;
    color: #333333;
    background-color: transparent;
    margin-left: 20px;
    float: right;
}

.cart-summary .cart-summary-button button:last-child {
    margin-left: 0;
}

.cart-summary .cart-summary-button button:hover {
    background-color: #3a9943;
    border-color: #3a9943;
    color: #ffffff;
}

.cart-summary .cart-summary-button button.checkout-btn {
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #333333;
    border-color: #333333;
    border-radius: 3px;
}

.cart-summary .cart-summary-button button.checkout-btn:hover {
    background-color: #3a9943;
    border-color: #3a9943;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart-summary .cart-summary-button button {
        margin-left: 0;
        margin-right: 20px;
    }
    .cart-summary .cart-summary-button button:last-child {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .cart-summary .cart-summary-button button {
        margin-left: 0;
        margin-right: 10px;
    }
    .cart-summary .cart-summary-button button:last-child {
        margin-right: 0;
    }
}

@media only screen and (max-width: 575px) {
    .cart-summary .cart-summary-button button {
        width: 130px;
    }
}


/*=====  End of Cart  ======*/


/*=============================================
=            Checkout            =
=============================================*/


/*-- Checkout Title --*/

.checkout-title {
    font-size: 20px;
    line-height: 23px;
    text-decoration: underline;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}


/*-- Checkout Form --*/

.checkout-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.checkout-form .nice-select {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #999999;
    border-radius: 0;
    line-height: 23px;
    padding: 10px 20px;
    font-size: 14px;
    height: 45px;
    color: #333333;
    margin-bottom: 15px;
}

.checkout-form .nice-select::after {
    width: 6px;
    height: 6px;
    border-width: 1px;
    right: 20px;
    border-color: #333333;
}

.checkout-form .nice-select .current {
    color: #333333;
    display: block;
    line-height: 23px;
}

.checkout-form .nice-select .list {
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #999999;
    border-radius: 0;
    line-height: 23px;
    padding: 10px 20px;
    font-size: 14px;
    color: #333333;
    margin-bottom: 15px;
}

.checkout-form input[type=checkbox] {
    width: auto;
}

.checkout-form .check-box {
    float: left;
    margin-right: 70px;
}

.checkout-form .check-box:last-child {
    margin-right: 0;
}

.checkout-form .check-box input[type=checkbox] {
    display: none;
}

.checkout-form .check-box input[type=checkbox]+label {
    position: relative;
    padding-left: 30px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

.checkout-form .check-box input[type=checkbox]+label::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #999999;
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.checkout-form .check-box input[type=checkbox]+label::after {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    content: "";
    font-family: Fontawesome;
    font-size: 12px;
    line-height: 20px;
    opacity: 0;
    color: #333333;
    width: 20px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.checkout-form .check-box input[type=checkbox]:checked+label::before {
    border: 2px solid #333333;
}

.checkout-form .check-box input[type=checkbox]:checked+label::after {
    opacity: 1;
}


/*-- Shipping Form --*/

#shipping-form {
    display: none;
}


/*-- Checkout Cart Total --*/

.checkout-cart-total {
    background-color: #f2f2f2;
    padding: 45px;
}

@media only screen and (max-width: 575px) {
    .checkout-cart-total {
        padding: 30px;
    }
}

.checkout-cart-total h4 {
    -ms-flex-preferred-size: 18px;
    flex-basis: 18px;
    line-height: 23px;
    font-weight: 700;
}

.checkout-cart-total h4:first-child {
    margin-top: 0;
    margin-bottom: 25px;
}

.checkout-cart-total h4:last-child {
    margin-top: 15px;
    margin-bottom: 0;
}

.checkout-cart-total h4 span {
    float: right;
    display: block;
}

.checkout-cart-total ul {
    border-bottom: 1px solid #999999;
}

.checkout-cart-total ul li {
    color: #333333;
    font-size: 14px;
    line-height: 23px;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.checkout-cart-total ul li span {
    color: #333333;
    float: right;
}

.checkout-cart-total p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 600;
    color: #505050;
    padding: 10px 0;
    border-bottom: 1px solid #999999;
    margin: 0;
}

.checkout-cart-total p span {
    float: right;
}


/*-- Checkout Payment Method --*/

.checkout-payment-method {
    background-color: #f2f2f2;
    padding: 45px;
}

@media only screen and (max-width: 575px) {
    .checkout-payment-method {
        padding: 30px;
    }
}


/*-- Single Payment Method --*/

.single-method {
    margin-bottom: 20px;
}

.single-method:last-child {
    margin-bottom: 0;
}

.single-method input[type=radio] {
    display: none;
}

.single-method input[type=radio]+label {
    position: relative;
    padding-left: 30px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

.single-method input[type=radio]+label::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #999999;
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-method input[type=radio]+label::after {
    position: absolute;
    left: 5px;
    top: 5px;
    display: block;
    content: "";
    opacity: 0;
    background-color: #333333;
    width: 10px;
    text-align: center;
    height: 10px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-method input[type=radio]:checked+label::before {
    border: 2px solid #333333;
}

.single-method input[type=radio]:checked+label::after {
    opacity: 1;
}

.single-method input[type=checkbox] {
    display: none;
}

.single-method input[type=checkbox]+label {
    position: relative;
    padding-left: 30px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

.single-method input[type=checkbox]+label::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    display: block;
    border: 2px solid #999999;
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-method input[type=checkbox]+label::after {
    position: absolute;
    left: 4px;
    top: 4px;
    display: block;
    content: "";
    opacity: 0;
    background-color: #333333;
    width: 8px;
    text-align: center;
    height: 8px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-method input[type=checkbox]:checked+label::before {
    border: 2px solid #333333;
}

.single-method input[type=checkbox]:checked+label::after {
    opacity: 1;
}

.single-method p {
    display: none;
    margin-top: 8px;
    font-size: 14px;
    color: #333333;
    line-height: 23px;
}


/*-- Place Order --*/

.place-order {
    margin-top: 40px;
    width: 140px;
    border-radius: 3px;
    height: 36px;
    border: none;
    line-height: 24px;
    padding: 6px 20px;
    float: left;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #333333;
}

.place-order:hover {
    background-color: #3a9943;
}


/*=====  End of Checkout  ======*/


/*=============================================
=           My Account            =
=============================================*/

.myaccount-tab-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #ffffff;
}

.myaccount-tab-menu a {
    border: 1px solid #eeeeee;
    border-bottom: none;
    color: #333333;
    font-weight: 500;
    font-size: 12px;
    display: block;
    padding: 15px 15px 13px;
    text-transform: uppercase;
}

.myaccount-tab-menu a:last-child {
    border-bottom: 1px solid #eeeeee;
}

.myaccount-tab-menu a:hover,
.myaccount-tab-menu a.active {
    background-color: #3a9943;
    color: #ffffff;
}

.myaccount-tab-menu a i {
    font-size: 14px;
    text-align: center;
    width: 25px;
}


/*-- My Account Content -*/

.myaccount-content {
    background-color: #ffffff;
    font-size: 14px;
    border: 1px solid #eeeeee;
    padding: 30px;
}

@media only screen and (max-width: 575px) {
    .myaccount-content {
        padding: 20px 15px;
    }
}

.myaccount-content h3 {
    border-bottom: 1px dashed #eeeeee;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.myaccount-content .welcome a {
    color: #000000;
}

.myaccount-content .welcome a:hover {
    color: #3a9943;
}

.myaccount-content .welcome strong {
    font-weight: 600;
}

.myaccount-content a.edit-address-btn {
    background: none;
    border: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #333333;
    border-color: #333333;
    padding: 10px 20px;
    border-radius: 3px;
}

.myaccount-content a.edit-address-btn i {
    padding-right: 5px;
}

.myaccount-content a.edit-address-btn:hover {
    background-color: #3a9943;
}

.myaccount-content button.save-change-btn {
    background: none;
    border: none;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #333333;
    border-color: #333333;
    width: 140px;
    padding: 10px 0;
    border-radius: 3px;
}

.myaccount-content button.save-change-btn:hover {
    background-color: #3a9943;
}


/*-- My Account Table -*/

.myaccount-table {
    white-space: nowrap;
    font-size: 15px;
}

.myaccount-table table th,
.myaccount-table .table th {
    padding: 10px;
}

.myaccount-table table td,
.myaccount-table .table td {
    padding: 20px 10px;
    vertical-align: middle;
}

.myaccount-table table td a:hover,
.myaccount-table .table td a:hover {
    color: #3a9943;
}

.saved-message {
    border-top: 3px solid #3a9943;
    border-radius: 5px 5px 0 0;
    font-weight: 600;
    font-size: 13px;
    padding: 20px;
}


/*-- My Account Details Form -*/

.account-details-form h4 {
    margin: 0;
}

.account-details-form input {
    display: block;
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 0;
    line-height: 24px;
    padding: 11px 25px;
    color: #656565;
}


/*=====  End of My Account  ======*/


/*=============================================
=            Login Register            =
=============================================*/


/*-- Login Title --*/

.login-title {
    font-size: 20px;
    line-height: 23px;
    text-decoration: underline;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}


/*-- Login Form --*/

.login-form {
    background-color: #ffffff;
    padding: 30px;
    -webkit-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .login-form {
        padding: 15px;
    }
}

.login-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.login-form .nice-select {
    width: 100%;
    background-color: transparent;
    border: 1px solid #999999;
    border-radius: 0;
    line-height: 23px;
    padding: 10px 20px;
    font-size: 14px;
    height: 45px;
    color: #333333;
    margin-bottom: 15px;
}

.login-form .nice-select::after {
    width: 6px;
    height: 6px;
    border-width: 1px;
    right: 20px;
    border-color: #333333;
}

.login-form .nice-select .current {
    color: #333333;
    display: block;
    line-height: 23px;
}

.login-form .nice-select .list {
    width: 100%;
}

.login-form input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #999999;
    border-radius: 0;
    line-height: 23px;
    padding: 10px 20px;
    font-size: 14px;
    color: #333333;
    margin-bottom: 15px;
}

.login-form input[type=checkbox] {
    width: auto;
}

.login-form .check-box {
    float: left;
    margin-right: 70px;
}

.login-form .check-box:last-child {
    margin-right: 0;
}

.login-form .check-box input[type=checkbox] {
    display: none;
}

.login-form .check-box input[type=checkbox]+label {
    position: relative;
    padding-left: 30px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

.login-form .check-box input[type=checkbox]+label::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #999999;
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.login-form .check-box input[type=checkbox]+label::after {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    content: "";
    font-family: Fontawesome;
    font-size: 12px;
    line-height: 20px;
    opacity: 0;
    color: #333333;
    width: 20px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.login-form .check-box input[type=checkbox]:checked+label::before {
    border: 2px solid #333333;
}

.login-form .check-box input[type=checkbox]:checked+label::after {
    opacity: 1;
}


/*-- Place Order --*/

.register-button {
    display: block;
    margin-top: 40px;
    width: 140px;
    height: 36px;
    border: none;
    line-height: 24px;
    padding: 6px 20px;
    float: left;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #333333;
    border-radius: 3px;
}

.register-button:hover {
    background-color: #3a9943;
}


/*=====  End of Login Register  ======*/


/*=============================================
=           FAQ            =
=============================================*/

.faq-wrapper .panel.panel-default {
    border: 1px solid #ebebeb;
    margin-bottom: 20px;
}

.faq-wrapper .card,
.faq-wrapper .card-header {
    border-radius: 0;
}

.faq-wrapper .card {
    margin-bottom: 15px;
}

.faq-wrapper .card:last-child {
    margin-bottom: 0;
}

.faq-wrapper .card-header {
    padding: 0;
    border-bottom: 0;
    background-color: #e9e9e9;
}

.faq-wrapper .card-header h5 button {
    width: 100%;
    text-align: left;
    color: #333;
    font-weight: 500;
    padding: 10px 20px;
    position: relative;
    overflow-wrap: break-word;
    white-space: normal;
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq-wrapper .card-header h5 button span {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.faq-wrapper .card-header h5 button span i.fa {
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    display: none;
}

.faq-wrapper .card-header h5 button:hover,
.faq-wrapper .card-header h5 button:focus {
    text-decoration: none;
}

.faq-wrapper .card-header h5 button[aria-expanded=true] {
    background-color: #3a9943;
    color: #ffffff;
    border-radius: 0;
}

.faq-wrapper .card-header h5 button[aria-expanded=true] span i.fa.fa-chevron-down {
    visibility: visible;
    opacity: 1;
    display: inline;
}

.faq-wrapper .card-header h5 button[aria-expanded=false] span i.fa.fa-chevron-up {
    visibility: visible;
    opacity: 1;
    display: inline;
}

.faq-wrapper .card-body p {
    font-size: 14px;
    line-height: 24px;
}


/*=====  End of FAQ  ======*/


/*=============================================
=           Compare            =
=============================================*/


/*-- Compare Table --*/

.compare-table {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
}

.compare-table .table tbody tr:first-child {
    border-top: 1px solid #eeeeee;
}

.compare-table .table tbody tr td {
    text-align: center;
    border: none;
    padding: 25px 30px;
    vertical-align: middle;
    border-bottom: 1px solid #eeeeee;
    border-left: 1px solid #eeeeee;
}

.compare-table .table tbody tr td:last-child {
    border-right: 1px solid #eeeeee;
}

.compare-table .table tbody tr td.first-column {
    min-width: 180px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0;
    line-height: 1;
}

.compare-table .table tbody tr td.product-image-title {
    padding-top: 50px;
}

.compare-table .table tbody tr td.product-image-title .image {
    clear: both;
    width: 100%;
    margin-bottom: 40px;
}

.compare-table .table tbody tr td.product-image-title .image img {
    max-width: 100%;
}

.compare-table .table tbody tr td.product-image-title .category {
    font-size: 13px;
    line-height: 15px;
    color: #333333;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}

.compare-table .table tbody tr td.product-image-title .category:hover {
    color: #3a9943;
}

.compare-table .table tbody tr td.product-image-title .title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 20px;
    margin-bottom: 10px;
}

.compare-table .table tbody tr td.product-image-title .title:hover {
    color: #3a9943;
}

.compare-table .table tbody tr td.pro-desc p {
    text-align: left;
    margin: 0;
}

.compare-table .table tbody tr td.pro-price {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

.compare-table .table tbody tr td.pro-color {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

.compare-table .table tbody tr td.pro-stock {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

.compare-table .table tbody tr td.pro-addtocart .add-to-cart {
    position: relative;
    background-color: #333333;
    color: #ffffff;
    border-radius: 3px;
    display: inline-block;
    width: 170px;
    padding: 10px 25px 10px 25px;
}

.compare-table .table tbody tr td.pro-addtocart .add-to-cart i.fa {
    padding-right: 10px;
}

.compare-table .table tbody tr td.pro-addtocart .add-to-cart span {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 21px;
    overflow: hidden;
    text-align: center;
}

.compare-table .table tbody tr td.pro-addtocart .add-to-cart:hover {
    background-color: #3a9943;
}

.compare-table .table tbody tr td.pro-remove button {
    border: none;
    background-color: transparent;
    padding: 0;
}

.compare-table .table tbody tr td.pro-remove button i {
    font-size: 20px;
}

.compare-table .table tbody tr td.pro-remove button:hover {
    color: red;
}

.compare-table .table tbody tr td.pro-ratting i {
    color: #333333;
    font-size: 14px;
}


/*=====  End of Compare  ======*/


/*=============================================
=           Contact             =
=============================================*/

#google-map {
    height: 400px;
}

@media only screen and (max-width: 767px) {
    #google-map {
        height: 300px;
    }
}

@media only screen and (max-width: 575px) {
    #google-map {
        height: 250px;
    }
}

@media only screen and (max-width: 479px) {
    #google-map {
        height: 200px;
    }
}

h3.contact-page-title {
    font-size: 32px;
    line-height: 32px;
    color: #333333;
    font-weight: 500;
    margin-bottom: 25px;
}

@media only screen and (max-width: 575px) {
    h3.contact-page-title {
        font-size: 25px;
    }
}

.single-contact-block {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

@media only screen and (max-width: 575px) {
    .single-contact-block {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

.single-contact-block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.single-contact-block h4 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
    color: #222222;
}

@media only screen and (max-width: 575px) {
    .single-contact-block h4 {
        font-size: 20px;
    }
}

.single-contact-block h4 img {
    margin: 5px 20px 20px 0;
}

.single-contact-block p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 29px;
    color: #666666;
}

span.required {
    color: red;
}


/*----------  contact form  ----------*/

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 15px;
    line-height: 29px;
    font-weight: 400;
    color: #888888;
    margin-bottom: 0;
}

.contact-form input {
    background-color: #ffffff;
    width: 100%;
    height: 50px;
    line-height: 50px;
    outline: none;
    border: 1px solid #e0e0e0;
    padding-left: 20px;
}

.contact-form textarea {
    background-color: #ffffff;
    width: 100%;
    outline: none;
    border: 1px solid #e0e0e0;
    padding-left: 20px;
    line-height: 50px;
    height: 200px;
}


/*----------  contact page side content  ----------*/

.contact-page-side-content {
    background-color: #F2F2F2;
    padding: 30px;
}


/*=====  End of Contact   ======*/


/*=============================================
=            About            =
=============================================*/


/*-- About Image --*/

.about-image img {
    width: 100%;
}


/*-- About Content --*/

.about-content h1 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 23px;
}

.about-content h1 span {
    color: #3a9943;
}

@media only screen and (max-width: 767px) {
    .about-content h1 {
        font-size: 24px;
        line-height: 30px;
    }
}

.about-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.about-content p {
    font-size: 14px;
    line-height: 24px;
}


/*-- About Mission Vission Goal --*/

.about-mission-vission-goal h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 13px;
}

.about-mission-vission-goal p {
    font-size: 14px;
    line-height: 24px;
}


/*-- About Section Title --*/

.about-section-title h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 23px;
}

@media only screen and (max-width: 767px) {
    .about-section-title h3 {
        font-size: 18px;
        line-height: 24px;
    }
}

.about-section-title p {
    font-size: 14px;
    line-height: 24px;
    max-width: 600px;
}


/*-- About Feature --*/

.about-feature h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    line-height: 23px;
    max-width: 265px;
}

@media only screen and (max-width: 767px) {
    .about-feature p {
        max-width: 350px;
    }
}


/*-- About Feature Banner --*/

.about-feature-banner .banner {
    margin-left: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-feature-banner .banner {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about-feature-banner .banner {
        margin-left: 0;
    }
}


/*-- Feature Content --*/

.feature-content h2 {
    font-size: 30px;
    max-width: 470px;
    margin-bottom: 0;
}

.feature-content h2 span {
    font-weight: 700;
}

.feature-content h1 {
    font-size: 36px;
    max-width: 470px;
}

.feature-content h1 span {
    font-weight: 700;
}

.feature-content p {
    line-height: 23px;
    max-width: 520px;
    margin-bottom: 0;
    margin-top: 30px;
}


/*-- Feature Image --*/

.feature-image {
    position: relative;
    z-index: 2;
}

.feature-image::before {
    position: absolute;
    right: 0;
    bottom: -40px;
    content: "";
    width: 380px;
    height: 360px;
    background-color: #ffffff;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feature-image::before {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .feature-image::before {
        display: none;
    }
}

.feature-image img {
    width: 100%;
    margin-left: -40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feature-image img {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .feature-image img {
        margin-left: 0;
    }
}

.about-feature {
    margin-bottom: -30px;
}


/*=====  End of About  ======*/


/*=============================================
=            Blog            =
=============================================*/


/*----------  slider blog post  ----------*/

.blog-post-slider-container {
    padding: 30px 0;
}

.blog-post-slider-container .col {
    -webkit-box-shadow: 1px 0 0 0 #ebebeb;
    box-shadow: 1px 0 0 0 #ebebeb;
}

.blog-post-slider-container .single-blog-post {
    text-align: center;
}

.blog-post-slider-container .single-blog-post .image {
    margin-bottom: 10px;
}

.blog-post-slider-container .single-blog-post .image a {
    display: block;
}

.blog-post-slider-container .single-blog-post .image a img {
    width: 100%;
}

.blog-post-slider-container .single-blog-post .content h3 {
    margin-bottom: 10px;
}

.blog-post-slider-container .single-blog-post .content h3 a {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.blog-post-slider-container .single-blog-post .content p {
    margin-bottom: 10px;
}

.blog-post-slider-container .single-blog-post .content p span {
    color: #abaaaa;
    font-size: 13px;
    font-weight: 400;
}

.blog-post-slider-container .single-blog-post .content p span i.icon {
    color: #3a9943;
    font-size: 15px;
}

.blog-post-slider-container .single-blog-post .content p span.post-comments {
    margin-right: 15px;
}

.blog-post-slider-container .single-blog-post .content p span.post-author a {
    color: #3a9943;
}

.blog-post-slider-container .single-blog-post .content p span.post-author a:hover {
    color: #333333;
}

.blog-post-slider-container .single-blog-post .content p.post-excerpt {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}

.blog-post-slider-container .single-blog-post .content a.alula-button {
    background: #f2f2f2;
    line-height: 12px;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 3px;
    color: #363f4d;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}

.blog-post-slider-container .single-blog-post .content a.alula-button:hover {
    background-color: #3a9943;
    color: #ffffff;
}

.single-blog-post {
    background-color: #ffffff;
}

.single-blog-post.gallery-type-post {
    display: block;
}

.single-blog-post.gallery-type-post .single-blog-post-media:hover .slick-arrow {
    visibility: visible;
    opacity: 0.6;
}

.single-blog-post.gallery-type-post .single-blog-post-media:hover .slick-arrow:hover {
    opacity: 1;
}

.single-blog-post.gallery-type-post .single-blog-post-media:hover .slick-next {
    right: 10px;
}

.single-blog-post.gallery-type-post .single-blog-post-media:hover .slick-prev {
    left: 10px;
}

.single-blog-post.gallery-type-post .slick-arrow {
    position: absolute;
    top: 50%;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #323232;
    color: #ffffff;
    line-height: 40px;
    z-index: 9;
    margin-top: -20px;
    visibility: hidden;
    opacity: 0;
    text-align: center;
}

.single-blog-post.gallery-type-post .slick-next {
    right: 30px;
    left: auto;
}

.single-blog-post.gallery-type-post .slick-prev {
    left: 30px;
    right: auto;
}

.single-blog-post .single-blog-post-media {
    position: relative;
}

.single-blog-post .single-blog-post-media .image a {
    display: block;
    width: 100%;
}

.single-blog-post .single-blog-post-media .image a img {
    width: 100%;
}

.single-blog-post .single-blog-post-media .blog-categories {
    position: absolute;
    bottom: 20px;
    left: 10px;
}

.single-blog-post .single-blog-post-media .blog-categories ul li {
    display: inline-block;
}

.single-blog-post .single-blog-post-media .blog-categories ul li a {
    display: block;
    background-color: #ffffff;
    padding: 5px 10px;
    text-transform: capitalize;
    margin-right: 5px;
    border-radius: 3px;
}

.single-blog-post .single-blog-post-media .blog-categories ul li a:hover {
    background-color: #3a9943;
    color: #ffffff;
}

.single-blog-post .single-blog-post-media .video {
    overflow: hidden;
}

.single-blog-post .single-blog-post-media .video iframe {
    width: 100%;
}

@media only screen and (max-width: 479px) {
    .single-blog-post .single-blog-post-media .video iframe {
        height: 200px;
    }
}

.single-blog-post .single-blog-post-content .post-audio {
    overflow: hidden;
}

.single-blog-post .single-blog-post-content .post-audio iframe {
    width: 100%;
}

.single-blog-post .single-blog-post-content h3.post-title {
    font-size: 22px;
    line-height: 30px;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 500;
}

.single-blog-post .single-blog-post-content h3.post-title a:hover {
    color: #3a9943;
}

@media only screen and (max-width: 575px) {
    .single-blog-post .single-blog-post-content h3.post-title {
        font-size: 25px;
    }
}

.single-blog-post .single-blog-post-content h3.post-title.sticky {
    position: relative;
    padding-left: 25px;
}

.single-blog-post .single-blog-post-content h3.post-title.sticky:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    font-family: fontAwesome;
    font-size: 25px;
}

.single-blog-post .single-blog-post-content .post-meta {
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.single-blog-post .single-blog-post-content .post-meta p span {
    color: #999999;
}

.single-blog-post .single-blog-post-content .post-meta p span i.fa {
    margin-right: 5px;
}

.single-blog-post .single-blog-post-content .post-meta p a {
    font-weight: 400;
    color: #808080;
}

.single-blog-post .single-blog-post-content .post-meta p a:hover {
    color: #3a9943;
}

.single-blog-post .single-blog-post-content .post-meta p span.separator {
    padding: 0 5px;
}

.single-blog-post .single-blog-post-content p.post-excerpt {
    font-size: 14px;
    line-height: 29px;
}

.single-blog-post .single-blog-post-content a.blog-readmore-btn {
    background: #f2f2f2;
    line-height: 12px;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 3px;
    color: #363f4d;
    font-weight: 500;
    font-size: 12px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 25px;
}

.single-blog-post .single-blog-post-content a.blog-readmore-btn:hover {
    background-color: #3a9943;
    color: #ffffff;
}

.blog-single-post-container {
    background-color: #ffffff;
    border: 1px solid #efefef;
    padding: 25px;
}

.blog-single-post-container h3.post-title {
    font-size: 34px;
    line-height: 46px;
    color: #333333;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

@media only screen and (max-width: 479px) {
    .blog-single-post-container h3.post-title {
        font-size: 25px;
        line-height: 35px;
    }
}

.blog-single-post-container .post-meta {
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.blog-single-post-container .post-meta p span {
    color: #999999;
}

.blog-single-post-container .post-meta p a {
    font-weight: 400;
    color: #323232;
}

.blog-single-post-container .post-meta p a:hover {
    color: #3a9943;
}

.blog-single-post-container .post-meta p span.separator {
    padding: 0 5px;
}

.blog-single-post-container .single-blog-post-media {
    position: relative;
    margin-bottom: 50px;
}

.blog-single-post-container .single-blog-post-media .image img {
    width: 100%;
}

.blog-single-post-container .single-blog-post-media .blog-image-gallery .single-image img {
    width: 100%;
}

.blog-single-post-container .single-blog-post-media .blog-categories {
    position: absolute;
    bottom: 20px;
    left: 10px;
}

.blog-single-post-container .single-blog-post-media .blog-categories ul li {
    display: inline-block;
}

.blog-single-post-container .single-blog-post-media .blog-categories ul li a {
    display: block;
    background-color: #ffffff;
    padding: 5px 10px;
    text-transform: capitalize;
    margin-right: 5px;
    border-radius: 3px;
}

.blog-single-post-container .single-blog-post-media .blog-categories ul li a:hover {
    background-color: #3a9943;
    color: #ffffff;
}

.blog-single-post-container .single-blog-post-media .video {
    overflow: hidden;
}

.blog-single-post-container .single-blog-post-media .video iframe {
    width: 100%;
    height: 500px;
}

@media only screen and (max-width: 767px) {
    .blog-single-post-container .single-blog-post-media .video iframe {
        height: 400px;
    }
}

@media only screen and (max-width: 479px) {
    .blog-single-post-container .single-blog-post-media .video iframe {
        height: 250px;
    }
}

.blog-single-post-container .post-audio {
    overflow: hidden;
}

.blog-single-post-container .post-audio iframe {
    width: 100%;
    height: 100px;
}

.blog-single-post-container .post-content p {
    font-size: 15px;
    line-height: 29px;
}

.blog-single-post-container .post-content blockquote {
    background: #f6f6f6;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #3a9943;
    font-size: 14px;
    font-style: italic;
    line-height: 26px;
    margin: 40px 0 40px 40px;
    padding: 30px 45px;
}

@media only screen and (max-width: 479px) {
    .blog-single-post-container .post-content blockquote {
        margin-left: 10px;
        padding: 15px 20px;
    }
}

.blog-single-post-container .tag-area {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.blog-single-post-container .tag-area span {
    color: #999999;
}

.blog-single-post-container .tag-area ul {
    display: inline-block;
}

.blog-single-post-container .tag-area ul li {
    display: inline-block;
}

.blog-single-post-container .tag-area ul li a {
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    color: #333333;
}

.blog-single-post-container .tag-area ul li a:hover {
    color: #3a9943;
}

.blog-single-post-container .social-share-buttons {
    text-align: center;
}

.blog-single-post-container .social-share-buttons h3 {
    background: none;
    color: #8c8c8c;
    font-size: 12px;
    line-height: 26px;
    margin: 0 20px;
    text-transform: uppercase;
    width: auto;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-single-post-container .social-share-buttons ul li {
    display: inline-block;
}

.blog-single-post-container .social-share-buttons ul li a {
    background: #f7f7f7;
    border-radius: 100%;
    color: #353535;
    display: inline-block;
    font-size: 12px;
    height: 32px;
    line-height: 32px;
    margin-right: 10px;
    text-align: center;
    width: 32px;
}

.blog-single-post-container .social-share-buttons ul li a:hover {
    border-color: transparent;
}

.blog-single-post-container .related-post-container h3.related-post-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #333333;
}

.blog-single-post-container .related-post-container .single-related-post .image {
    margin-bottom: 15px;
}

.blog-single-post-container .related-post-container .single-related-post .image a {
    display: block;
    width: 100%;
}

.blog-single-post-container .related-post-container .single-related-post .image a img {
    width: 100%;
}

.blog-single-post-container .related-post-container .single-related-post .content h3.related-post-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 23px;
}

.blog-single-post-container .related-post-container .single-related-post .content h3.related-post-title a:hover {
    color: #3a9943;
}

.blog-single-post-container .related-post-container .single-related-post .content h3.related-post-title span {
    display: block;
    font-size: 13px;
    line-height: 24px;
    color: #999999;
    font-weight: 400;
    margin-top: 5px;
}


/*----------  single blog post media  ----------*/

.single-blog-post-media {
    position: relative;
}

.single-blog-post-media:hover .slick-arrow {
    visibility: visible;
    opacity: 0.6;
}

.single-blog-post-media:hover .slick-arrow:hover {
    opacity: 1;
}

.single-blog-post-media:hover .slick-next {
    right: 10px;
}

.single-blog-post-media:hover .slick-prev {
    left: 10px;
}

.single-blog-post-media .slick-arrow {
    position: absolute;
    top: 50%;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #323232;
    color: #ffffff;
    line-height: 40px;
    z-index: 9;
    margin-top: -20px;
    visibility: hidden;
    opacity: 0;
}

.single-blog-post-media .slick-next {
    right: 30px;
    left: auto;
}

.single-blog-post-media .slick-prev {
    left: 30px;
    right: auto;
}


/*----------  comment container  ----------*/

h3.comment-counter {
    margin-bottom: 20px;
    font-weight: 500;
}

.comment-container .single-comment {
    position: relative;
    border: 1px solid #e0e0e0;
    margin: 0 0 30px;
    padding: 30px;
    width: 100%;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.comment-container .single-comment.reply-comment {
    margin-left: 10%;
    width: 90%;
}

.comment-container .single-comment:last-child {
    margin-bottom: 0;
}

.comment-container .single-comment span.reply-btn {
    position: absolute;
    top: 30px;
    right: 30px;
}

.comment-container .single-comment span.reply-btn a {
    display: inline-block;
    border: 1px solid #3a9943;
    color: #3a9943;
    padding: 5px 15px;
    font-weight: 500;
    border-radius: 50px;
    font-size: 13px;
}

.comment-container .single-comment span.reply-btn a:hover {
    background-color: #3a9943;
    color: #ffffff;
}

.comment-container .single-comment .image {
    -ms-flex-preferred-size: 50px;
    flex-basis: 50px;
}

.comment-container .single-comment .content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-left: 20px;
}

.comment-container .single-comment .content h3 {
    font-size: 15px;
    line-height: 29px;
    color: #999999;
    font-weight: 700;
    font-style: italic;
}

.comment-container .single-comment .content h3 span.comment-time {
    font-size: 14px;
    line-height: 29px;
    color: #999999;
    font-weight: 400;
    display: block;
}

.comment-container .single-comment .content p.comment-text {
    color: #999999;
    font-size: 15px;
    line-height: 24px;
}


/*----------  comment form  ----------*/

.comment-form-container h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 25px;
}

.comment-form-container p {
    font-size: 12px;
    line-height: 23px;
    color: #999999;
}


/*----------  comment form  ----------*/

.comment-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 29px;
    color: #999999;
    font-weight: 500;
}

.comment-form textarea {
    border: 1px solid #e0e0e0;
    height: 130px;
    width: 100%;
    -webkit-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.comment-form input {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    height: 50px;
    line-height: 48px;
    width: 100%;
    padding: 0 15px;
    vertical-align: middle;
}

.comment-form .fl-btn {
    border: none;
    text-transform: uppercase;
    background: #f2f2f2;
    line-height: 12px;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 3px;
    color: #363f4d;
    font-weight: 500;
    font-size: 12px;
    background-color: #333333;
    color: #ffffff;
}

.comment-form .fl-btn:hover {
    background-color: #3a9943;
    color: #ffffff;
}


/*=====  End of Blog  ======*/


/*=============================================
=            shop            =
=============================================*/


/*----------  shop header  ----------*/

.shop-header {
    border: 1px solid #ededed;
    padding: 5px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .shop-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.shop-header__left__message {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 46px;
    float: left;
}

@media only screen and (max-width: 479px) {
    .shop-header__left__message {
        padding-left: 10px;
    }
}

.shop-header__right {
    padding-left: 10px;
}

.shop-header__right .single-select-block .select-title {
    margin-right: 10px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 400;
    line-height: 30px;
}

.shop-header__right .single-select-block select {
    border: none;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 400;
    line-height: 30px;
    padding-left: 10px;
}

.grid-icons {
    float: left;
}

.grid-icons button {
    background: none;
    border: none;
    height: 46px;
    width: 40px;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    float: left;
}

@media only screen and (max-width: 767px) {
    .grid-icons button {
        height: 40px;
    }
}

.grid-icons button.three-column {
    background-image: url("/assets/img/icons/grid.webp");
}

.grid-icons button.three-column:hover,
.grid-icons button.three-column.active {
    background-image: url("/assets/img/icons/grid-hover.webp");
}

.grid-icons button.four-column {
    background-image: url("/assets/img/icons/grid-4.webp");
}

.grid-icons button.four-column:hover,
.grid-icons button.four-column.active {
    background-image: url("/assets/img/icons/grid-4-hover.webp");
}

.grid-icons button.list-view {
    background-image: url("/assets/img/icons/list.webp");
}

.grid-icons button.list-view:hover,
.grid-icons button.list-view.active {
    background-image: url("/assets/img/icons/list-hover.webp");
}

.shop-product-wrap.grid .list-view-product {
    display: none;
}

.shop-product-wrap.list [class*=col],
.shop-product-wrap.list [class*=col-] {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
}

.shop-product-wrap.list .grid-view-product {
    display: none;
}


/*=====  End of shop  ======*/