/*=============================================
=            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            =
=============================================*/
/*-- Google Font --*/
@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans:300,400,500,600,700|Montserrat:400,600,700');

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

html,
body {
    height: 100%;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;

    position: relative;

    visibility: visible;

    color: #333;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;

    margin-top: 0;

    color: #333;
}

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 {
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    text-decoration: none;

    color: inherit;
}

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

*:focus {
    outline: none !important;
}

a:focus {
    text-decoration: none;

    color: inherit;
    outline: none;
}

a:hover {
    text-decoration: none;
}

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

ul {
    margin: 0;
    padding: 0;

    list-style: outside none none;
}

/*-- Tab Content & Pane Fix --*/
.tab-content {
    width: 100%;
}

.tab-content .tab-pane {
    display: block;
    visibility: hidden;
    overflow: hidden;

    max-width: 100%;
    height: 0;

    opacity: 0;
}

.tab-content .tab-pane.active {
    visibility: visible;
    overflow: visible;

    height: auto;

    opacity: 1;
}

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

select {
    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%;

    -webkit-appearance: none;
    -moz-appearance: none;
}

/*----------  Sharp border tippyjs theme  ----------*/
/* If `animateFill: true` (default) */
.tippy-tooltip.sharpborder-theme .tippy-backdrop {
    font-weight: 400;

    color: #fff;
    background-color: #3a9943;
}

/* If `animateFill: false` */
.tippy-tooltip.sharpborder-theme {
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;

    padding: 8px 10px;

    white-space: nowrap;

    color: #fff;
    background-color: #3a9943;
}

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

/*=====  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, .7);
}

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

.header-area--absolute {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;

    width: 100%;
}

@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, .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, .17);
}

/*----------  header top social links  ----------*/
@media only screen and (max-width: 767px) {
    .header-top-social-links {
        padding-bottom: 10px;

        border-bottom: 1px solid rgba(255, 255, 255, .17);
    }
}

/*----------  headertop dropdown container  ----------*/
.headertop-dropdown-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: end;
    -webkit-justify-content: flex-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 {
    font-size: 14px;
    font-weight: 300;

    color: #fff;
}

.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;
    z-index: 5;
    top: 165%;
    right: -15%;
    left: auto;

    display: none;

    min-width: 160px;
    padding: 0 20px;

    background-color: #fff;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .1);
}

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

.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;
    font-weight: 300;
    line-height: 2.2;

    display: block;

    padding: 10px 0;

    color: #666;
}

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

/*----------  navigation top search  ----------*/
/*----------  search bar  ----------*/
.search-bar {
    position: relative;
}

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

        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }
}

.search-bar form input {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;

    width: 100%;
    height: 48px;
    padding: 0 65px 0 20px;

    color: #fff;
    border: 0;
    border-radius: 5px;
    background: rgba(255, 255, 255, .2);
}

.search-bar form button {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 48px;

    position: absolute;
    top: 0;
    right: 0;

    width: 60px;
    margin: 0;
    padding: 0;

    color: #fff;
    border: 0;
    background: transparent;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

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

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

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

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

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

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

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

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

/*----------  customer support text  ----------*/
.customer-support-text {
    position: relative;

    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
}

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

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

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

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

.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;
    font-weight: 300;
    line-height: 18px;

    color: #fff;
}

.customer-support-text .text p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;

    margin: 0;

    color: #ffdd20;
}

/*----------  small cart  ----------*/
.header-cart-icon {
    position: relative;
}

.header-cart-icon .small-cart-trigger {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 46px;

    position: relative;

    display: inline-block;

    padding-right: 27px;
    padding-left: 8px;

    color: #fff;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 5px;
}

.header-cart-icon .small-cart-trigger .cart-counter {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    font-style: normal;
    line-height: 16px;

    position: absolute;
    top: 50%;
    left: 38px;

    width: 16px;
    height: 16px;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;

    color: #333;
    border-radius: 100%;
    background: #fff;
}

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

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

.small-cart {
    position: absolute;
    z-index: 9;
    right: 0;
    left: auto;

    display: none;

    width: 380px;
    margin-top: 26px;

    background-color: #fff;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .1);
}

@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 {
    position: relative;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 30px;
    padding-bottom: 30px;

    border-bottom: 1px solid #ebebeb;
}

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

    border-bottom: 0;
}

.small-cart-item-wrapper .single-item .image {
    -webkit-flex-basis: 80px;
    -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 {
    padding-left: 10px;

    text-align: left;

    -webkit-flex-basis: calc(100% - 80px);
    -ms-flex-preferred-size: calc(100% - 80px);
    flex-basis: calc(100% - 80px);
}

.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;
    font-weight: 300;
    line-height: 20px;

    margin-bottom: 8px;

    color: #333;
}

.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;
    font-weight: 700;
    line-height: 18px;

    color: #3a9943;
}

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

    color: #333;
}

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

.cart-calculation-table table tbody tr:last-child td:last-child {
    font-size: 22px;

    color: #3a9943;
}

.cart-calculation-table table tbody tr td {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;

    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;

    color: #333;
    border-top: 0;
}

.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 {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .08);
}

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

.main-menu nav > ul > li {
    position: relative;

    display: inline-block;

    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 {
    position: relative;

    color: #3a9943;
}

.main-menu nav > ul > li.menu-item-has-children > a::after {
    font-family: Ionicons;
    font-size: 11px;
    font-weight: 300;

    float: right;

    margin-left: 5px;

    content: '\f3d0';
    -webkit-transition: .3s;
    transition: .3s;
}

.main-menu nav > ul > li > a {
    font-family: 'IBM Plex Sans', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    line-height: 55px;

    display: block;

    color: #333;
}

.main-menu nav > ul > li:hover > .sub-menu,
.main-menu nav > ul > li:hover > .mega-menu {
    z-index: 999;

    visibility: visible;

    margin-top: 0;

    opacity: 1;
}

.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;
    top: 100%;
    left: -20px;

    visibility: hidden;

    width: 230px;
    padding: 15px 0;

    opacity: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .1);
}

.sub-menu li {
    position: relative;
}

.sub-menu li a {
    font-size: 14px;
    font-weight: 600;

    display: block;

    padding: 10px 15px;

    text-transform: uppercase;

    color: #333;
}

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

.sub-menu li.menu-item-has-children > a::after {
    font-family: Ionicons;
    font-size: 11px;
    font-weight: 300;

    float: right;

    margin-left: 5px;

    content: '\f3d1';
}

.sub-menu li:hover > .sub-menu {
    z-index: 999;

    visibility: visible;

    margin-top: 0;

    opacity: 1;
}

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

    visibility: hidden;

    opacity: 0;
}

.sub-menu .sub-menu li a {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;

    padding: 7px 15px;

    text-transform: capitalize;

    color: #666;
}

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

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

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

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

/*----------  mega menu  ----------*/
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;

    visibility: hidden;

    width: 100%;

    opacity: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .1);
}

.mega-menu.four-column {
    left: -100px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    width: 1100px;
    padding: 30px;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@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 {
        left: -200px;

        width: 900px;
    }
}

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

.mega-menu > li > a {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;

    margin-bottom: 10px;

    text-transform: uppercase;

    color: #333;
    color: #333;
}

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

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

    color: #666;
}

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

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

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

/*----------  mobile menu  ----------*/
.mobile-menu .mean-bar {
    position: relative;

    text-align: right;
    /*---- Mean Nav ----*/
}

.mobile-menu .mean-bar:before {
    font-size: 16px;
    font-weight: 500;

    position: absolute;
    top: 0;
    left: 0;

    display: none;

    content: 'MENU';

    color: #363f4d;
}

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

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar {
    display: block;

    width: 24px;
    height: 1px;
    margin: 5px 0;

    background-color: #333;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::before,
.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::after {
    position: absolute;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';

    background-color: #333;
}

.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 {
    display: block;

    width: 24px;
    height: 1px;
    margin: 5px 0;

    background-color: transparent;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::before,
.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::after {
    position: absolute;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';

    background-color: #333;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::before {
    top: 0;

    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::after {
    bottom: 0;

    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mobile-menu .mean-bar .meanmenu-reveal span.mean-menu-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;

    position: absolute !important;
    top: 1px;
    left: 0;

    color: #333;
}

.mobile-menu .mean-bar .meanmenu-reveal span.mean-menu-text i {
    font-size: 18px;
    line-height: 19px;

    display: inline-block;

    margin-right: 5px;

    vertical-align: top;
}

.mobile-menu .mean-bar .mean-nav {
    text-align: left;

    background-color: #fff;
}

@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 {
    overflow-x: hidden;

    border: 1px solid #eee;
    border-top: 0 solid transparent;
}

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

        max-height: 180px;
    }
}

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

        max-height: 220px;
    }
}

.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 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 44px;

    position: relative;

    display: block;

    padding: 0 40px 0 20px;

    text-transform: uppercase;

    color: #333;
    border-top: 1px solid #eee;
    /*---- 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 {
    padding-left: 25px;

    color: #333;
}

.mobile-menu .mean-bar .mean-nav > ul li a.mean-expand {
    font-size: 20px !important;
    line-height: 44px;

    position: absolute;
    top: 0;
    right: -1px;

    width: 40px;
    height: 46px;
    padding: 0;

    text-align: center;

    color: #333;
    border: 1px solid #eee;
}

.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;
    z-index: 1;

    display: none;
    visibility: visible;
    float: left;

    width: 100%;
    margin: 0;
    padding: 0 !important;

    -webkit-transition: none;
    transition: none;

    opacity: 1;
    background-color: rgba(0, 0, 0, .03);
    -webkit-box-shadow: none;
    box-shadow: 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 {
    display: block;
    float: left;

    width: 100%;
    margin: 0;
    padding: 0;

    border-right: 0 solid transparent;

    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

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

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

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

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

/*----------  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, .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: #fff;
}

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

.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 {
    color: #a9a9a9;
    background: #f5f5f5;
}

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

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

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

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

.page-wrapper-light-green .search-bar form ::placeholder {
    opacity: 1;
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    /* 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 {
    color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #49b14d;
}

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

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

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

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

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

.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 {
    color: #333;
    background-color: #fff;
}

.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 {
    background-color: #49b14d;
    -webkit-box-shadow: none;
    box-shadow: none;
}

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

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

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

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

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

/*=====  End of page wrapper light green style  ======*/
/*=============================================
=            page wrapper blue style            =
=============================================*/
.page-wrapper-blue .header-area.is-sticky .navigation-menu-area:hover {
    background-color: #fff;
}

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

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

.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 {
    color: #a9a9a9;
    background: #f5f5f5;
}

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

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

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

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

.page-wrapper-blue .search-bar form ::placeholder {
    opacity: 1;
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    /* 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: #333;
    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: #888;
}

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

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

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

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

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

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

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

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

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

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

.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 {
    color: #333;
    background-color: #fff;
}

@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 {
    color: white;
    border-color: #f72525;
    background-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 {
    color: #333;
    background-color: #fff;
}

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

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

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

.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;
    font-weight: 600;
    line-height: 24px;

    margin-bottom: 0;

    color: #333;
}

.footer-text-block__content {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;

    color: #666;
}

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

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

    color: #333;
}

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

.montserrat-footer-widget-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;

    margin-bottom: 15px;

    color: #333;
}

.footer-navigation nav ul {
    display: grid;

    grid-template-columns: auto auto;
}

.footer-navigation nav ul li {
    display: list-item;
}

.footer-navigation nav ul li a {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;

    position: relative;

    display: block;

    padding: 3px 0;

    color: #666;
}

@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: #3a9943;
}

.footer-social-icon-block ul li {
    display: inline-block;

    margin-top: 10px;
    margin-right: 7px;
    margin-bottom: 0;
}

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

.footer-social-icon-block ul li a {
    font-size: 0;
    line-height: 34px;

    display: inline-block;

    width: 34px;
    height: 34px;

    text-align: center;

    color: #fff;
    border: 0;
    border-radius: 100%;
}

.footer-social-icon-block ul li a:hover {
    opacity: .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 {
    padding: 20px 0;

    border-top: 1px solid #ededed;
}

.copyright-text p {
    font-weight: 400;

    margin: 0;

    text-transform: capitalize;

    color: #999;
}

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

.copyright-text p a:hover {
    color: #3a9943;
}

/*=====  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 {
    padding: 20px;

    background: #f8f8f8;
}

.sidebar-widget > ul {
    padding-bottom: 32px;

    border-bottom: 1px solid #dcdcdc;
}

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

.sidebar-widget > ul li a {
    font-size: 15px;
    line-height: 24px;

    position: relative;

    display: block;

    padding: 5px 0;

    text-transform: capitalize;

    color: #333;
}

.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-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;

    margin: 15px 0 11px;

    color: #333;
}

/*-- Sidebar Price --*/
.sidebar-price {
    padding-bottom: 34px;

    border-bottom: 1px solid #dcdcdc;
}

.sidebar-price #price-range {
    position: relative;

    width: 100%;
    height: 5px;
    margin: 7px 0;

    border-radius: 50px;
    background-color: #ccc;
}

.sidebar-price #price-range .ui-slider-range {
    position: absolute;
    top: 0;

    height: 100%;

    background-color: #3a9943;
}

.sidebar-price #price-range .ui-slider-handle {
    position: absolute;
    top: -7px;

    display: block;

    width: 19px;
    height: 19px;

    cursor: pointer;
    -webkit-transition: none;
    transition: none;

    border: 5px solid #3a9943;
    border-radius: 50px;
    background-color: #fff;
    -webkit-box-shadow: 2px 4px 4px rgba(0, 0, 0, .15);
    box-shadow: 2px 4px 4px rgba(0, 0, 0, .15);
}

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

.sidebar-price .price-amount {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;

    margin-top: 12px;
    padding: 0;

    color: #333;
    border: none;
    background-color: transparent;
}

.sidebar-filter-group {
    padding-bottom: 29px;

    border-bottom: 1px solid #dcdcdc;
}

.sidebar-filter-group a {
    line-height: 24px;

    position: relative;

    display: block;

    padding: 5px 0;
    padding-left: 21px;

    text-transform: capitalize;

    color: #333;
    border: 0;
}

.sidebar-filter-group a:before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 12px;
    height: 12px;
    margin-top: -6px;

    content: '';

    border: 1px solid #333;
    background: transparent;
}

.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 {
    border-color: #3a9943;
    background: #3a9943;
}

.sidebar-filter-group-color {
    display: grid;

    padding-bottom: 10px;

    grid-template-columns: auto auto;
}

.sidebar-filter-group-color a {
    line-height: 24px;

    position: relative;

    display: block;

    padding: 5px 0;
    padding-left: 21px;

    text-transform: capitalize;

    color: #333;
    border: 0;
}

.sidebar-filter-group-color a:before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 12px;
    height: 12px;
    margin-top: -6px;

    content: '';

    border: 1px solid #333;
    background: transparent;
}

.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 {
    border-color: #3a9943;
    background: #3a9943;
}

/*----------  tag container  ----------*/
.tag-container li {
    display: inline-block;

    margin-right: 5px;
    margin-bottom: 10px;
}

.tag-container li a {
    padding: 5px 10px;

    color: #555;
    border: 1px solid #ebebeb;
    border-radius: 3px;
}

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

/*----------  Sidebar search box  ----------*/
.sidebar-search-box {
    position: relative;

    border: 1px solid #e0e0e0;
}

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

    border: none;
}

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

    border: none;
    background: none;
}

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

/*----------  single block  ----------*/
.single-block {
    padding: 15px 0;

    border-bottom: 1px solid #ddd;
}

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

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

    border-bottom: 0;
}

.single-block .image {
    margin-right: 5px;

    -webkit-flex-basis: 100px;
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
}

.single-block .image a {
    display: block;

    border: 2px solid transparent;
}

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

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

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

.single-block .content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;

    margin-bottom: 0;

    color: #333;
}

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

.single-block .content p span {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;

    display: block;

    margin-top: 5px;

    color: #999;
}

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

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

    color: #666;
}

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

    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;

    padding: 5px 10px !important;

    color: #555;
    border: 1px solid #ebebeb;
    border-radius: 3px;
}

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

/*=====  End of Sidebar  ======*/
/*=============================================
=            social link            =
=============================================*/
/*----------  social icon small  ----------*/
.follow-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;

    color: #fff;
}

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

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

/*=====  End of social link  ======*/
/*=============================================
=            Backgrounds            =
=============================================*/
/*----------  hero slider backgrounds  ----------*/
.hero-slider-bg-1 {
    background-image: url('../img/sliders/slider1.jpg');
}

.hero-slider-bg-2 {
    background-image: url('../img/sliders/slider2.jpg');
}

.hero-slider-bg-3 {
    background-image: url('../img/sliders/slider3.jpg');
}

.hero-slider-bg-4 {
    background-image: url('../img/sliders/slider4.jpg');
}

.hero-slider-bg-5 {
    background-image: url('../img/sliders/slider5.jpg');
}

.hero-slider-bg-6 {
    background-image: url('../img/sliders/slider6.jpg');
}

.hero-slider-bg-7 {
    background-image: url('../img/sliders/slider7.jpg');
}

.hero-slider-bg-8 {
    background-image: url('../img/sliders/slider8.jpg');
}

.hero-slider-bg-9 {
    background-image: url('../img/sliders/slider9.jpg');
}

.hero-slider-bg-10 {
    background-image: url('../img/sliders/slider10.jpg');
}

.hero-slider-bg-11 {
    background-image: url('../img/sliders/slider11.jpg');
}

.hero-slider-bg-12 {
    background-image: url('../img/sliders/slider12.jpg');
}

.hero-slider-bg-13 {
    background-image: url('../img/sliders/slider13.jpg');
}

.hero-slider-bg-14 {
    background-image: url('../img/sliders/slider14.jpg');
}

/*----------  banner backgrounds  ----------*/
.banner-bg-1 {
    background-image: url('../img/banners/banner-big3.jpg');
}

/*----------  newsletter backgrounds  ----------*/
.newsletter-bg-1 {
    background-color: #3a9943;
    background-image: url('../img/newsletter/newsletter1.jpg');
}

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

.newsletter-bg-3 {
    background-color: #f72525;
    background-image: url('../img/newsletter/newsletter3.jpg');
}

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

/*=====  End of Backgrounds  ======*/
/*=============================================
=            Button styles            =
=============================================*/
/*----------  default style  ----------*/
.theme-button {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 50px;

    padding: 0 30px;

    -webkit-transition: .3s;
    transition: .3s;
    text-align: center;

    color: #fff;
    border: none;
    background-color: #3a9943;
    /*----------  outline style  ----------*/
}

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

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

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

.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;
    font-weight: 300;
    line-height: 30px;

    color: #666;
}

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

    width: 100%;
    margin-top: 34px;
    padding: 0 30px;

    color: #333;
    border-radius: 5px;
    background: #f0f0f0;
}

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

/*=====  End of Button styles  ======*/
/*=============================================
=            scroll top            =
=============================================*/
.scroll-top {
    font-family: 'Ionicons';
    line-height: 42px;

    position: fixed;
    z-index: 999;
    right: 30px;
    bottom: 80px;

    display: none;

    width: 42px;
    height: 42px;

    text-align: center;

    color: #fff;
    border: none;
    border-radius: 50%;
    background: #3a9943;
}

.scroll-top:after {
    font-size: 14px;

    display: inline;

    content: '\f3d8';
}

/*=============================================
  =            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;
    z-index: 999999;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, .75);
}

.search-form {
    position: absolute;
    top: 47%;
    left: 50%;

    width: 1110px;

    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@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 {
    font-size: 24px;
    font-weight: 400;

    position: relative;

    width: 100%;
    height: 70px;
    padding: 0 50px 0 15px;

    color: #fff;
    border: 0;
    border-bottom: 1px solid #f72525;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

@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 {
    opacity: 1;
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    /* Firefox */
}

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

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

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

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

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

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

.search-form form button {
    font-size: 34px;
    line-height: 50px;

    position: absolute;
    top: 50%;
    right: 0;

    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);

    color: #fff;
    border: 0;
    background: transparent;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

@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 {
    font-size: 72px;

    position: absolute;
    top: 20px;
    right: 30px;

    color: #fff;
}

@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 {
    font-size: 16px;

    position: absolute;
    z-index: 2;
    top: -58px;
    right: 0;

    width: 33px;
    height: 33px;

    -webkit-transition: .3s;
    transition: .3s;

    color: #333;
    border: none;
    border-radius: 5px;
    background: #f2f2f2;
}

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

.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: .5s;
    animation-delay: .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%;

    padding: 0 10px;

    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);

    border-radius: 50px;
    background-color: #fff;
}

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

.hero-slider-wrapper .slick-dots li button {
    font-size: 0;

    width: 10px;
    height: 10px;
    margin-right: 10px;
    padding: 0;

    -webkit-transition: .3s;
    transition: .3s;

    border: none;
    border-radius: 50%;
    background: none;
    background-color: #d7d7d7;
}

.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 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    height: 570px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    -webkit-box-align: center;
    -webkit-align-items: 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;
    font-weight: 400;
    line-height: 24px;

    margin-bottom: 5px;

    color: #666;
}

@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;
    font-weight: 600;
    line-height: 60px;

    margin-bottom: 5px;

    color: #333;
}

@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;
    font-weight: 400;
    line-height: 60px;

    margin-bottom: 35px;

    color: #333;
}

@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 {
    padding: 0 25px;

    border-radius: 5px;
}

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

        padding: 0 15px;
    }
}

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

        padding: 0 15px;
    }
}

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

        padding: 0 15px;
    }
}

/*----------  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 {
    position: relative;

    display: block;

    width: 100%;
}

.blog-post-slider-wrapper .slider-single-post__image a:after {
    font-family: fontAwesome;
    font-size: 23px;
    line-height: 52px;

    position: absolute;
    top: 50%;
    left: 50%;

    visibility: hidden;

    width: 52px;
    height: 52px;

    content: '\f03e';
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;

    opacity: 0;
    color: #fff;
    border: 1px solid #3a9943;
    background-color: #3a9943;
}

.blog-post-slider-wrapper .slider-single-post__image a img {
    width: 100%;

    -webkit-transition: .6s;
    transition: .6s;
}

.blog-post-slider-wrapper .slider-single-post__image a:hover img {
    opacity: .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 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;

    display: block;

    margin-bottom: 20px;

    color: #333;
}

.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 {
    font-size: 13px;

    position: relative;

    display: inline-block;

    margin: 0;
    margin-right: 14px;

    color: #999;
}

.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 {
    position: absolute;
    top: 50%;
    right: -10px;

    width: 3px;
    height: 3px;
    margin-top: -1.5px;

    content: '';

    border-radius: 100%;
    background: #999;
}

.blog-post-slider-wrapper .slider-single-post__content .post-meta .post-date {
    font-size: 13px;

    display: inline-block;

    color: #999;
}

/*----------  footer blog post slider  ----------*/
.footer-blog-post-slider-wrapper .slick-slide > div:last-child {
    margin-top: 20px;
    padding-top: 20px;

    border-top: 1px solid #f0f0f0;
}

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

.single-footer-blog-post__image {
    -webkit-flex-basis: 110px;
    -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: .3s;
    transition: .3s;
}

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

.single-footer-blog-post__content {
    padding-left: 10px;

    -webkit-flex-basis: calc(100% - 110px);
    -ms-flex-preferred-size: calc(100% - 110px);
    flex-basis: calc(100% - 110px);
}

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

    color: #333;
}

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

.single-footer-blog-post__content .blog-post-meta .author-name {
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;

    position: relative;

    display: inline-block;

    margin: 0;
    margin-right: 14px;

    color: #999;
}

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

.single-footer-blog-post__content .blog-post-meta .author-name:after {
    position: absolute;
    top: 50%;
    right: -10px;

    width: 3px;
    height: 3px;
    margin-top: -1.5px;

    content: '';

    border-radius: 100%;
    background: #999;
}

.single-footer-blog-post__content .blog-post-meta .post-date {
    font-size: 12px;
    line-height: 17px;

    display: inline-block;

    color: #999;
}

/*----------  brand logo slider  ----------*/
.brand-logo-slider-wrapper {
    padding: 34px 0;

    border-top: 1px solid #ededed;
}

.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: .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 {
    position: relative;

    display: block;

    width: 100%;
}

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

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

    opacity: .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;

    visibility: hidden;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: .3s;
    transition: .3s;

    opacity: 0;
    background-color: #3a9943;
}

.instagram-image-slider-wrapper .single-instagram-image a:after {
    font-family: IonIcons;
    font-size: 24px;

    position: absolute;
    top: 50%;
    left: 50%;

    visibility: hidden;

    content: '\f350';
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    opacity: 0;
    color: #fff;
}

/*----------  category slider one ----------*/
.category-slider-wrapper-one .slick-list {
    margin-right: -10px;
    margin-left: -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: .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: .6s;
    transition: .6s;
}

.category-slider-wrapper-one .single-category-item__image__content {
    position: absolute;
    bottom: 20px;
    left: 50%;

    width: 80%;

    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    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;
    font-weight: 600;
    line-height: 22px;

    -webkit-transition: .3s;
    transition: .3s;

    color: #343434;
}

.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;
    font-weight: 300;
    line-height: 20px;

    color: #868686;
}

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

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

.category-slider-wrapper-two .single-category-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    padding: 20px;

    border: 1px solid #f0f0f0;
}

@media only screen and (max-width: 575px) {
    .category-slider-wrapper-two .single-category-item {
        flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
    }
}

@media only screen and (max-width: 479px) {
    .category-slider-wrapper-two .single-category-item {
        flex-direction: row;

        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
    }
}

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

.category-slider-wrapper-two .single-category-item__image {
    -webkit-flex-basis: 150px;
    -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 {
        -webkit-flex-basis: 100px;
        -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    }
}

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

@media only screen and (max-width: 575px) {
    .category-slider-wrapper-two .single-category-item__image {
        margin-bottom: 20px;

        -webkit-flex-basis: 70px;
        -ms-flex-preferred-size: 70px;
        flex-basis: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .category-slider-wrapper-two .single-category-item__image {
        margin-bottom: 0;

        -webkit-flex-basis: 100px;
        -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    }
}

.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: .3s;
    transition: .3s;
}

.category-slider-wrapper-two .single-category-item__content {
    padding-left: 20px;

    -webkit-flex-basis: calc(100% - 150px);
    -ms-flex-preferred-size: calc(100% - 150px);
    flex-basis: calc(100% - 150px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .category-slider-wrapper-two .single-category-item__content {
        -webkit-flex-basis: calc(100% - 100px);
        -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 {
        -webkit-flex-basis: calc(100% - 70px);
        -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 {
        padding-left: 0;

        -webkit-flex-basis: calc(100% - 70px);
        -ms-flex-preferred-size: calc(100% - 70px);
        flex-basis: calc(100% - 70px);
    }
}

@media only screen and (max-width: 479px) {
    .category-slider-wrapper-two .single-category-item__content {
        padding-left: 20px;

        -webkit-flex-basis: calc(100% - 100px);
        -ms-flex-preferred-size: calc(100% - 100px);
        flex-basis: calc(100% - 100px);
    }
}

.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;
    font-weight: 600;
    line-height: 21px;

    color: #333;
}

.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;
    font-weight: 300;
    line-height: 20px;

    color: #666;
}

.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;
    font-weight: 300;
    line-height: 20px;

    color: #49b14d;
}

.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-right: -10px;
        margin-left: -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 {
    padding-bottom: 40px;

    border-bottom: 1px solid #ededed;
}

.product-single-row-slider-wrapper .slick-list {
    margin-right: -10px;
    margin-left: -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: .6s;
    animation-duration: .6s;
}

/*----------  double row slider  ----------*/
.product-double-row-slider-wrapper .slick-list {
    margin-right: -10px;
    margin-left: -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: .6s;
    animation-duration: .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 {
    max-width: 40%;

    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
}

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

        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.banner-double-row-slider-area .col-custom-7 {
    max-width: 60%;

    -webkit-box-flex: 0;
    -webkit-flex: 0 0 60%;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
}

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

        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 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-right: -10px;
    margin-left: -10px;
}

.double-slider-single-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    padding: 20px;

    border: 1px solid #f0f0f0;
}

@media only screen and (max-width: 575px) {
    .double-slider-single-item {
        flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-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;

    width: calc(100% - 290px);
    padding-left: 20px;
}

@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 {
    right: 15px;

    visibility: visible;

    opacity: 1;
}

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

.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 {
    top: 50%;

    visibility: hidden;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);

    opacity: 0;
    background: none;
}

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

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

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

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

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

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

.small-image-slider-wrapper--quickview .slick-arrow {
    font-size: 30px;

    visibility: visible;

    opacity: 1;
}

.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%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

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

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

.big-image-slider-wrapper {
    position: relative;

    cursor: pointer;
}

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

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

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.big-image-slider-wrapper--gallery-mode .big-image-slider-single-item {
    border: 1px solid #ddd;

    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

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

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.big-image-slider-wrapper--sticky-mode .big-image-slider-single-item {
    border: 1px solid #ddd;

    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

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

.big-image-slider-wrapper--slider-mode .slick-arrow {
    top: 50%;

    -webkit-transform: translateY(-50%);
    -ms-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 {
    right: auto;
    left: 0;
}

.big-image-slider-wrapper--slider-mode .slick-list {
    margin-right: -10px;
    margin-left: -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 {
    border: 1px solid #49b14d;
    background-color: #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 {
    border: 1px solid #0eb9cb;
    background-color: #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 {
    width: 100%;

    -webkit-transition: .6s;
    transition: .6s;
}

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

.single-split-banner__image__content {
    position: absolute;
    top: 50%;

    padding-left: 40px;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.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;
    font-weight: 300;
    line-height: 20px;

    margin-bottom: 5px;

    color: #666;
}

@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;
    font-weight: 600;
    line-height: 28px;

    margin-bottom: 15px;

    color: #333;
}

@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;
    font-weight: 400;
    line-height: 18px;

    color: #666;
}

@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 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;

    display: block;

    margin-top: 5px;

    color: #3a9943;
}

@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;
    font-weight: 400;
    line-height: 20px;

    margin-bottom: 15px;

    text-transform: uppercase;

    color: #3a9943;
}

.full-banner__content h4 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 35px;

    color: #333;
}

@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;
    font-weight: 500;
    line-height: 60px;

    color: #333;
}

@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;
    font-weight: 300;
    line-height: 20px;

    margin-bottom: 40px;

    color: #666;
}

.full-banner__content .banner-button {
    padding: 0 20px;

    border-radius: 5px;
}

@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 {
    width: 100%;

    -webkit-transition: .6s;
    transition: .6s;
}

.full-banner__image a:hover img {
    opacity: .7;
}

/*----------  full banner two  ----------*/
.full-banner-two__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;

    height: 100%;
    padding: 0 45px;
    padding-right: 65px;

    background-color: #49b14d;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: 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-right: 40px;
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .full-banner-two__content {
        padding-top: 40px;
        padding-right: 40px;
        padding-bottom: 40px;
    }
}

.full-banner-two__content__wrapper h3 {
    font-size: 52px;
    font-weight: 500;
    line-height: 52px;

    margin-bottom: 5px;

    letter-spacing: -1px;

    color: #fff;
}

@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;
    font-weight: 400;
    line-height: 52px;

    margin-bottom: 20px;

    letter-spacing: -1px;

    color: #fff;
}

@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;
    font-weight: 400;
    line-height: 24px;

    margin-bottom: 30px;

    color: #fff;
}

.full-banner-two__content__wrapper .banner-two-button {
    color: #333;
    border-radius: 5px;
    background-color: #fff;
}

.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: .6s;
    transition: .6s;
}

.full-banner-two__image a:hover img {
    opacity: .7;
}

/*----------  full banner background  ----------*/
.full-banner-bg-wrapper {
    padding: 80px 0;
    padding-top: 70px;
    padding-left: 70px;

    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

@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 {
        padding-left: 50px;

        background-position-x: 15%;
    }
}

@media only screen and (max-width: 479px) {
    .full-banner-bg-wrapper {
        padding-left: 30px;

        background-position-x: 30%;
    }
}

.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;
    font-weight: 500;
    line-height: 70px;

    letter-spacing: -1px;

    color: #333;
}

@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;
    font-weight: 400;
    line-height: 40px;

    margin-bottom: 30px;

    color: #333;
}

@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;
    font-weight: 300;
    line-height: 24px;

    margin-bottom: 35px;

    color: #666;
}

@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 {
    color: #fff;
    border-radius: 5px;
    background-color: #333;
}

.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: .6s;
    transition: .6s;
}

.slider-banner a:hover img {
    opacity: .7;
}

.page-sidebar-banner a {
    display: block;

    width: 100%;
}

.page-sidebar-banner a img {
    -webkit-transition: .3s;
    transition: .3s;
}

.page-sidebar-banner a:hover img {
    opacity: .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: #333;
}

/*=====  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 {
    padding: 30px 0;

    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

@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 {
        max-width: 100%;

        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 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%;
    left: 0;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-icon-feature__content p {
    margin-bottom: 0;
}

.single-icon-feature__content p.feature-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;

    color: #3a9943;
}

.single-icon-feature__content p.feature-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;

    color: #666;
}

/*=====  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;
    font-weight: 600;
    line-height: 18px;

    color: #49b14d;
}

/*=====  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;
    font-weight: 600;
    line-height: 18px;

    color: #0eb9cb;
}

/*=====  End of blue page style  ======*/
/*=============================================
=            section title            =
=============================================*/
.section-title h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 27px;

    position: relative;

    margin: 0;
    padding-bottom: 10px;

    text-transform: capitalize;

    color: #333;
}

.section-title h2:after {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 66px;
    height: 2px;

    content: '';

    background: #3a9943;
}

.section-title--medium h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;

    color: #333;
}

/*=====  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 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    padding: 40px;

    background-repeat: no-repeat;
    background-position: center;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter-wrapper {
        flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter-wrapper {
        flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

@media only screen and (max-width: 479px) {
    .newsletter-wrapper {
        padding: 40px 20px;
    }
}

.newsletter-wrapper__text {
    -webkit-flex-basis: 50%;
    -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-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;

    margin-bottom: 8px;

    color: #fff;
}

@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;
    font-weight: 400;
    line-height: 22px;

    margin-bottom: 0;

    color: #fff;
}

@media only screen and (max-width: 575px) {
    .newsletter-wrapper__text p {
        font-size: 14px;
        line-height: 20px;
    }
}

.newsletter-wrapper__form {
    position: relative;

    -webkit-flex-basis: 50%;
    -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'] {
    font-size: 14px;
    line-height: 30px;

    display: inline-block;

    width: 100%;
    height: 48px;
    padding: 10px 15px;
    padding-right: 125px;

    text-align: left;
    vertical-align: top;

    color: #a9a9a9;
    border: 0;
    border-radius: 5px;
    background: #fff;
    -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 {
    opacity: 1;
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    /* Firefox */
}

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

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

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

.newsletter-wrapper__form form ::placeholder {
    opacity: 1;
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    /* 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 {
    font-size: 16px;
    font-weight: 700;
    line-height: 48px;

    position: absolute;
    top: 50%;
    right: -1px;

    max-width: 120px;
    padding: 0 18px;

    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-transform: capitalize;

    color: #333;
    border: none;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #ffdd20;
}

@media only screen and (max-width: 479px) {
    .newsletter-wrapper__form form button {
        font-size: 12px;

        max-width: 80px;
        padding: 0 10px;
    }
}

.newsletter-wrapper__form form button:hover {
    color: #3a9943;
}

.newsletter-wrapper__form .mailchimp-alerts {
    color: #fff;
}

/*----------  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 {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;

    visibility: visible;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .8;
    background-color: #333;
}

.newsletter-popup-content {
    position: fixed;
    z-index: 999;
    top: 50%;
    left: 50%;

    width: 50%;
    padding: 50px 20px;

    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    background: #fff;
}

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

    color: #fff;
    background-color: #333;
}

.newsletter-popup-content .close-newsletter-popup:hover {
    background-color: #3a9943;
}

.newsletter-popup-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;

    margin: 0 0 15px;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: #000;
}

.newsletter-popup-content p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;

    color: #666;
}

.newsletter-popup-content .subscription-form form input {
    font-size: 15px;

    display: block;

    width: 65%;
    height: 40px;
    margin: 20px auto;
    padding: 0 15px;

    border: medium none;
    background: #ebebeb none repeat scroll 0 0;
}

.newsletter-popup-content .subscription-form form button {
    margin-bottom: 20px;

    color: #333;
    border-radius: 5px;
    background-color: #f0f0f0;
}

.newsletter-popup-content .subscription-form form button:hover {
    color: #fff;
    background-color: #3a9943;
}

/*=====  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 {
    color: #fff;
    background-color: #f72525;
}

.page-wrapper-red .newsletter-wrapper__form form button:hover {
    background-color: #333;
}

/*=====  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-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;

    -webkit-transition: .3s;
    transition: .3s;

    color: #333;
}

.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 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;

    margin-right: 10px;

    color: #3a9943;
}

.product-price .main-price {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;

    color: #3a9943;
}

.product-price .main-price.discounted {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;

    text-decoration: line-through;

    color: #868686;
}

.product-price--medium .discounted-price {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;

    color: #3a9943;
}

.product-price--medium .main-price {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;

    color: #3a9943;
}

.product-price--medium .main-price.discounted {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 21px;

    color: #868686;
}

.product-price--big .discounted-price {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 45px;

    color: #3a9943;
}

@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;
    font-weight: 700;
    line-height: 45px;

    color: #3a9943;
}

@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;
    font-weight: 300;
    line-height: 30px;

    color: #868686;
}

@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;
    font-weight: 300;
    line-height: 20px;

    color: #666;
}

.discount-label {
    font-size: 12px;
    font-weight: 600;
    line-height: 21px;

    position: absolute;
    top: 20px;
    right: auto;
    left: 20px;

    width: 60px;
    height: 25px;
    padding-left: 10px;

    color: #fff;
    background-repeat: no-repeat;
    background-position: left center;
}

.discount-label--green {
    background-image: url('../img/icons/green-discount-label.png');
}

.discount-label--red {
    background-image: url('../img/icons/red-discount-label.png');
}

.discount-label--blue {
    background-image: url('../img/icons/blue-discount-label.png');
}

.discount-label--static {
    position: static;

    display: inline-block;
}

.hover-icons {
    position: absolute;
    right: 0;
    bottom: 15px;

    visibility: hidden;

    padding: 5px;

    -webkit-transition: .6s;
    transition: .6s;

    opacity: 0;
    border-radius: 25px;
    background: #fff;
}

.hover-icons ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;

    width: 36px;
    height: 36px;
    padding: 0;

    -webkit-transition: .6s;
    transition: .6s;
    text-align: center;

    color: #333;
    border-radius: 100%;
    background: #fff;
}

.hover-icons ul li a:hover,
.hover-icons ul li a.active {
    color: #fff;
    background: #3a9943;
}

.cart-icon {
    position: absolute;
    right: 15px;
    bottom: 35px;

    display: inline-block;
}

.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 {
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;

    display: block;

    width: 36px;
    height: 36px;
    padding: 0;

    -webkit-transition: .6s;
    transition: .6s;
    text-align: center;

    color: #333;
    border-radius: 100%;
    background: #f2f2f2;
}

.cart-icon a:hover,
.cart-icon a.active {
    color: #fff;
    background-color: #3a9943;
}

/*----------  widget product  ----------*/
.single-widget-product {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.single-widget-product__image {
    -webkit-flex-basis: 100px;
    -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 {
    padding-left: 20px;

    -webkit-flex-basis: calc(100% - 100px);
    -ms-flex-preferred-size: calc(100% - 100px);
    flex-basis: calc(100% - 100px);
}

/*----------  product single row slider  ----------*/
.single-slider-product {
    -webkit-transition: .6s;
    transition: .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: .6s;
    transition: .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 {
    position: relative;

    overflow: hidden;

    padding: 17px 20px 16px 20px;

    text-align: left;

    border: 1px solid #f0f0f0;
    border-top: 0;
    background: transparent;
}

.single-slider-product:hover .single-slider-product__image > a img:nth-child(2) {
    visibility: visible;

    opacity: 1;
}

.single-slider-product:hover .hover-icons {
    right: 15px;

    visibility: visible;

    opacity: 1;
}

/*----------  product details  ----------*/
.product-detail-content {
    padding: 20px;

    border: 1px solid #ebebeb;
}

.tags .tag-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;

    color: #666;
}

.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;
    font-weight: 300;
    line-height: 20px;

    color: #343434;
}

.tags .tag-list li a:hover {
    color: #3a9943;
}

.product-details-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 30px;

    color: #333;
}

@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;
    font-weight: 300;
    line-height: 24px;

    color: #666;
}

.product-info-block .single-info .value {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;

    color: #3a9943;
}

.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;
    font-weight: 300;
    line-height: 20px;

    padding: 23px 0;

    color: #666;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.quantity .quantity-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 48px;

    color: #222;
}

.pro-qty {
    position: relative;

    display: inline-block;

    width: 100px;
    height: 40px;

    border: 1px solid #ddd;
}

.pro-qty input {
    width: 100%;
    height: 100%;
    padding-right: 25px;
    padding-left: 20px;

    border: none;
}

.pro-qty a {
    font-size: 18px;
    font-weight: normal;
    line-height: 20px;

    position: absolute;

    width: 20px;
    height: 20px;

    text-align: center;
}

.pro-qty a:hover {
    color: #3a9943;
}

.pro-qty a.inc {
    top: 0;
    right: 0;

    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.pro-qty a.dec {
    right: 0;
    bottom: 0;

    padding-top: 2px;

    border-left: 1px solid #ddd;
}

.size {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

    color: #222;
}

.size span.title {
    font-weight: 500;
}

.size .nice-select {
    float: none;

    width: 100px;
    margin-top: 5px;

    border: 1px solid #ddd;
}

.color {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

    color: #222;
}

.color span.title {
    font-weight: 500;
}

.color span.color-block {
    display: inline-block;

    width: 30px;
    height: 30px;
    margin-top: 10px;
    margin-right: 5px;
}

.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 {
    width: 32px;
    height: 32px;

    border: 2px solid #3a9943;
}

.group-product-form .table-content table {
    width: 100%;

    text-align: center;

    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #e5e5e5;
    border-radius: 0;
    background: #fff none repeat scroll 0 0;
}

.group-product-form .table-content table td {
    width: 33.33%;
    padding: 12px 10px;

    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.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 {
    padding: 20px 0;

    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

@media only screen and (max-width: 575px) {
    .product-details-feature-wrapper {
        flex-direction: column !important;

        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
    }
}

.social-share-buttons h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;

    text-transform: uppercase;
}

.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 {
    line-height: 40px;

    display: block;

    width: 40px;
    height: 40px;

    text-align: center;

    border: 1px solid #ddd;
}

@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;
    font-weight: 300;
    line-height: 13px;

    color: #9e9e9e;
}

.review-links .separator {
    font-weight: 300;

    margin: 0 10px;
}

/*----------  product description tab  ----------*/
@media only screen and (max-width: 479px) {
    .product-description-review-container nav .nav-tabs {
        flex-direction: row;

        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-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;
    font-weight: 600;
    line-height: 30px;

    position: relative;

    margin: 0;
    margin-right: 50px;
    padding: 13px 0;

    text-transform: capitalize;

    color: #a9a9a9;
    border: none !important;
    border-radius: 0;
    background: transparent;
}

.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;
    font-weight: 300;
    line-height: 24px;

    color: #666;
}

/*-- Single Product Rating --*/
.product-ratting-wrap {
    overflow: hidden;
}

.pro-avg-ratting {
    float: left;

    width: 100%;
    margin-bottom: 20px;
}

.pro-avg-ratting h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;

    margin: 0 0 7px;
}

.pro-avg-ratting h4 span {
    font-size: 12px;
    font-weight: 400;
    line-height: 10px;

    color: #333;
}

.pro-avg-ratting > span {
    font-size: 12px;
    line-height: 10px;

    display: block;
}

.ratting-list {
    float: left;

    width: 100%;
    margin-bottom: 30px;
}

.ratting-list .sin-list {
    margin-right: 30px;
}

.ratting-list .sin-list:last-child {
    margin-right: 0;
}

.ratting-list .sin-list i {
    font-size: 12px;

    color: #333;
}

.ratting-list .sin-list span {
    color: #666;
}

.rattings-wrapper {
    float: left;

    width: 100%;
    margin-bottom: 40px;
}

.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 {
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;

    float: left;

    margin: 0;
    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 {
    font-size: 12px;
    line-height: 18px;

    float: left;

    color: #333;
}

.sin-rattings .ratting-author .ratting-star span {
    margin-left: 5px;
}

.sin-rattings p {
    font-size: 15px;
    line-height: 24px;

    color: #666;
}

/*-- Ratting Form Wrap --*/
.ratting-form-wrapper {
    float: left;

    width: 100%;
}

.ratting-form-wrapper h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;

    margin: 0 0 30px;

    text-transform: uppercase;
}

/*-- Ratting Form --*/
.ratting-form h5 {
    font-size: 14px;
    line-height: 18px;

    float: left;

    margin-right: 10px;
}

.ratting-form .ratting-star i {
    font-size: 14px;
    line-height: 18px;

    display: block;
    float: left;

    margin-right: 3px;
}

.ratting-form .ratting-star i:last-child {
    margin: 0;
}

.ratting-form label {
    font-size: 14px;

    display: block;

    margin-bottom: 3px;

    color: #666;
}

.ratting-form input {
    font-size: 13px;
    line-height: 24px;

    width: 100%;
    padding: 8px 15px;

    color: #666;
    border: 1px solid #ddd;
    background-color: transparent;
}

.ratting-form input[type='submit'] {
    font-weight: 600;

    width: auto;
    padding: 8px 30px;

    text-transform: uppercase;

    color: #fff;
    border-color: #333;
    border-radius: 3px;
    background-color: #333;
}

.ratting-form input[type='submit']:hover {
    color: #fff;
    border-color: #3a9943;
    background-color: #3a9943;
}

.ratting-form textarea {
    font-size: 13px;
    line-height: 24px;

    width: 100%;
    height: 80px;
    padding: 8px 15px;

    resize: none;

    color: #666;
    border: 1px solid #ddd;
    background-color: transparent;
}

/*----------  list view product  ----------*/
.single-slider-product--list-view {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    width: 100%;
    padding: 19px;

    border: 1px solid #f0f0f0;
}

@media only screen and (max-width: 575px) {
    .single-slider-product--list-view {
        flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
    }
}

.single-slider-product--list-view__image {
    -webkit-flex-basis: 250px;
    -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 {
        -webkit-flex-basis: 200px;
        -ms-flex-preferred-size: 200px;
        flex-basis: 200px;
    }
}

.single-slider-product--list-view__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    padding: 0;

    border: none;

    -webkit-flex-basis: calc(100% - 250px);
    -ms-flex-preferred-size: calc(100% - 250px);
    flex-basis: calc(100% - 250px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-slider-product--list-view__content {
        -webkit-flex-basis: calc(100% - 200px);
        -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 {
        flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .single-slider-product--list-view__content {
        flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
    }
}

.single-slider-product--list-view__content__details {
    padding: 0 20px;

    border-right: 1px solid #f0f0f0;

    -webkit-flex-basis: 65%;
    -ms-flex-preferred-size: 65%;
    flex-basis: 65%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-slider-product--list-view__content__details {
        padding-right: 0;

        border-right: 0;

        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .single-slider-product--list-view__content__details {
        padding-right: 0;

        border-right: 0;

        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

@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 {
        -webkit-flex-basis: 55%;
        -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-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;

    color: #333;
}

.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;
    font-weight: 300;
    line-height: 20px;

    color: #666;
}

.single-slider-product--list-view__content__actions {
    padding: 15px 0 0 20px;

    -webkit-flex-basis: 35%;
    -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 {
        -webkit-flex-basis: 45%;
        -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 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .single-slider-product--list-view__content__actions {
        -webkit-flex-basis: 100%;
        -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;
    font-weight: 300;
    line-height: 20px;

    color: #666;
}

.single-slider-product--list-view__content__actions .availability .availability-value {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;

    color: #3a9943;
}

.single-slider-product--list-view__content__actions .product-price .discounted-price {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;

    color: #3a9943;
}

.single-slider-product--list-view__content__actions .product-price .main-price {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;

    color: #3a9943;
}

.single-slider-product--list-view__content__actions .product-price .main-price.discounted {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;

    color: #868686;
}

.single-slider-product--list-view__content__actions .hover-icons {
    position: static;

    visibility: visible;

    opacity: 1;
}

.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;
    font-weight: 700;
    line-height: 25px;

    color: #49b14d;
}

.page-wrapper-light-green .product-price--medium .main-price {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;

    color: #49b14d;
}

.page-wrapper-light-green .product-price--medium .main-price.discounted {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 21px;

    color: #868686;
}

.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 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 36px;

    position: absolute;
    top: 50%;
    right: 127px;

    display: inline-block;

    padding: 0 20px;

    -webkit-transform: translateY(-80%);
    -ms-transform: translateY(-80%);
    transform: translateY(-80%);

    color: #fff;
    border-radius: 5px;
    background-color: #3a9943;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-deal {
        -webkit-transform: translateY(-160%);
        -ms-transform: translateY(-160%);
        transform: translateY(-160%);
    }
}

@media only screen and (max-width: 767px) {
    .counter-deal {
        position: static;

        margin-bottom: 30px;

        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.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 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 5px;

    color: #666;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product-availability .progress {
    height: 10px;
}

.product-availability .progress .progress-bar.bg-warning {
    background-color: #ffdd20 !important;
}

/*=====  End of progressbar  ======*/
/*=============================================
=            quickview            =
=============================================*/
.quick-view-modal-container {
    z-index: -1;

    display: block !important;
    visibility: hidden;

    opacity: 0;
}

.quick-view-modal-container.show {
    z-index: 99999;

    visibility: visible;

    opacity: 1;
}

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

.quick-view-modal-container .modal-header {
    padding-bottom: 0;

    border: none;
}

.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 {
    overflow: auto;

    max-height: 850px;

    border-radius: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .quick-view-modal-container .modal-content {
        overflow: auto;

        max-height: 500px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .quick-view-modal-container .modal-content {
        overflow: auto;

        max-height: 500px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quick-view-modal-container .modal-content {
        overflow: auto;

        max-height: 500px;
    }
}

@media only screen and (max-width: 767px) {
    .quick-view-modal-container .modal-content {
        overflow: auto;

        max-height: 500px;
    }
}

/*=====  End of quickview  ======*/
/*=============================================
=            breadcrumb            =
=============================================*/
.breadcrumb-content ul li {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;

    display: inline-block;

    margin-right: 20px;

    color: #333;
}

.breadcrumb-content ul li.has-child {
    position: relative;
}

.breadcrumb-content ul li.has-child:before {
    font-family: 'Ionicons';
    font-size: 12px;

    position: absolute;
    right: -15px;

    display: inline-block;

    padding: 0;

    content: '\f3d3';
    vertical-align: top;

    color: #666;
}

.breadcrumb-content ul li:last-child {
    margin-right: 0;
}

.breadcrumb-content ul li a {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;

    color: #666;
}

/*=====  End of breadcrumb  ======*/
/*=============================================
=            pagination            =
=============================================*/
.pagination-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    padding: 5px 20px;

    border: 1px solid #ededed;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .pagination-section {
        flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
    }
}

.pagination-section .pagination {
    display: inline-block;

    padding: 10px 0;
}

.pagination-section .pagination li {
    display: inline-block;
}

.pagination-section .pagination li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;

    width: 30px;
    height: 30px;
    padding: 0;

    -webkit-transition: .3s;
    transition: .3s;
    text-align: center;

    color: #333;
    border: 0;
    border-radius: 4px;
    background: #fff;
}

.pagination-section .pagination li a:hover {
    color: #fff;
    background: #3a9943;
}

.pagination-section .pagination li.active a {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;

    width: 30px;
    height: 30px;
    padding: 0;

    text-align: center;

    color: #fff;
    border: 0;
    border-radius: 4px;
    background: #3a9943;
}

.pagination-section .pagination-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 38px;

    color: #666;
}

/*=====  End of pagination  ======*/
/*=============================================
=           Cart            =
=============================================*/
.cart-table {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 4px 0 rgba(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 {
    font-size: 16px;
    font-weight: 700;

    padding: 12px 20px;

    text-align: center;
    text-transform: uppercase;

    color: #333;
    border: none;
}

.cart-table .table tbody tr td {
    padding: 25px 20px;

    text-align: center;
    vertical-align: middle;

    border: none;
    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 {
    width: 160px;
    min-width: 120px;
    max-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: #333;
}

.cart-table td.pro-title a:hover {
    color: #3a9943;
}

.cart-table td.pro-price span {
    font-size: 15px;
    font-weight: 500;

    display: block;

    color: #333;
}

.cart-table td.pro-quantity {
    /*----------  Additional cart quantity style will be placed here  ----------*/
}

.cart-table td.pro-subtotal span {
    font-size: 15px;
    font-weight: 500;

    display: block;

    color: #333;
}

.cart-table td.pro-addtocart button {
    font-weight: 700;
    line-height: 24px;

    width: 140px;
    height: 36px;
    padding: 5px 20px;

    text-transform: capitalize;

    color: #333;
    border: 1px solid #3a9943;
    border-radius: 0;
    background-color: #3a9943;
}

.cart-table td.pro-remove a {
    font-weight: 500;

    display: block;

    color: #333;
}

.cart-table td.pro-remove a i {
    font-size: 15px;
}

.cart-table td.pro-remove a:hover {
    color: #f00;
}

@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;
    font-weight: 700;
    line-height: 23px;

    margin-bottom: 30px;

    text-decoration: underline;
    text-transform: capitalize;
}

.calculate-shipping form .nice-select {
    line-height: 24px;

    width: 100%;
    height: 36px;
    padding: 5px 20px;

    border: 1px solid #999;
    border-radius: 0;
    background-color: transparent;
}

.calculate-shipping form .nice-select::after {
    border-color: #333;
}

.calculate-shipping form .nice-select .current {
    font-size: 14px;
    line-height: 24px;

    display: block;

    color: #333;
}

.calculate-shipping form .nice-select .list {
    width: 100%;
}

.calculate-shipping form input {
    line-height: 24px;

    width: 100%;
    height: 36px;
    padding: 5px 20px;

    color: #333;
    border: 1px solid #999;
    border-radius: 0;
    background-color: transparent;
}

.calculate-shipping form input[type='submit'] {
    font-weight: 400;

    width: 140px;

    text-transform: uppercase;

    color: #fff;
    border-color: #333;
    border-radius: 3px;
    background-color: #333;
}

.calculate-shipping form input[type='submit']:hover {
    border-color: #3a9943;
    background-color: #3a9943;
}

/*-- Discount Coupon --*/
.discount-coupon h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;

    margin-bottom: 30px;

    text-decoration: underline;
    text-transform: capitalize;
}

.discount-coupon form input {
    line-height: 24px;

    width: 100%;
    height: 36px;
    padding: 5px 20px;

    color: #333;
    border: 1px solid #999;
    border-radius: 0;
    background-color: transparent;
}

.discount-coupon form input[type='submit'] {
    font-weight: 400;

    width: 140px;

    text-transform: uppercase;

    color: #fff;
    border-color: #333;
    border-radius: 3px;
    background-color: #333;
}

.discount-coupon form input[type='submit']:hover {
    border-color: #3a9943;
    background-color: #3a9943;
}

/*-- Cart Summary --*/
.cart-summary {
    float: right;

    width: 100%;
    max-width: 410px;
    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 {
    margin-bottom: 20px;
    padding: 45px 50px;

    background-color: #f2f2f2;
}

@media only screen and (max-width: 575px) {
    .cart-summary .cart-summary-wrap {
        padding: 25px 30px;
    }
}

.cart-summary .cart-summary-wrap h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;

    margin-bottom: 30px;

    text-decoration: underline;
    text-transform: capitalize;
}

.cart-summary .cart-summary-wrap p {
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;

    color: #333;
}

.cart-summary .cart-summary-wrap p span {
    float: right;
}

.cart-summary .cart-summary-wrap h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;

    margin: 0;
    padding-top: 9px;

    color: #000;
    border-top: 1px solid #999;
}

.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: -webkit-flex;
        display: -ms-flexbox;
        display: flex;

        -webkit-box-pack: start;
        -webkit-justify-content: flex-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: -webkit-flex;
        display: -ms-flexbox;
        display: flex;

        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.cart-summary .cart-summary-button button {
    line-height: 24px;

    float: right;

    width: 140px;
    height: 36px;
    margin-top: 10px;
    margin-left: 20px;
    padding: 5px 20px;

    color: #333;
    border: 1px solid #999;
    border-radius: 0;
    background-color: transparent;
}

.cart-summary .cart-summary-button button:last-child {
    margin-left: 0;
}

.cart-summary .cart-summary-button button:hover {
    color: #fff;
    border-color: #3a9943;
    background-color: #3a9943;
}

.cart-summary .cart-summary-button button.checkout-btn {
    font-weight: 400;

    text-transform: uppercase;

    color: #fff;
    border-color: #333;
    border-radius: 3px;
    background-color: #333;
}

.cart-summary .cart-summary-button button.checkout-btn:hover {
    border-color: #3a9943;
    background-color: #3a9943;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart-summary .cart-summary-button button {
        margin-right: 20px;
        margin-left: 0;
    }

    .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-right: 10px;
        margin-left: 0;
    }

    .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;
    font-weight: 700;
    line-height: 23px;

    margin-bottom: 30px;

    text-decoration: underline;
    text-transform: capitalize;
}

/*-- Checkout Form --*/
.checkout-form label {
    font-size: 14px;
    font-weight: 500;

    display: block;

    margin-bottom: 12px;

    text-transform: capitalize;
}

.checkout-form .nice-select {
    font-size: 14px;
    line-height: 23px;

    width: 100%;
    height: 45px;
    margin-bottom: 15px;
    padding: 10px 20px;

    color: #333;
    border: 1px solid #999;
    border-radius: 0;
    background-color: #fff;
}

.checkout-form .nice-select::after {
    right: 20px;

    width: 6px;
    height: 6px;

    border-width: 1px;
    border-color: #333;
}

.checkout-form .nice-select .current {
    line-height: 23px;

    display: block;

    color: #333;
}

.checkout-form .nice-select .list {
    width: 100%;
}

.checkout-form input {
    font-size: 14px;
    line-height: 23px;

    width: 100%;
    margin-bottom: 15px;
    padding: 10px 20px;

    color: #333;
    border: 1px solid #999;
    border-radius: 0;
    background-color: #fff;
}

.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 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;

    position: relative;

    margin: 0;
    padding-left: 30px;

    color: #333;
}

.checkout-form .check-box input[type='checkbox'] + label::before {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 20px;
    height: 20px;

    content: '';
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;

    border: 2px solid #999;
}

.checkout-form .check-box input[type='checkbox'] + label::after {
    font-family: Fontawesome;
    font-size: 12px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 20px;

    content: '\f00c';
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    text-align: center;

    opacity: 0;
    color: #333;
}

.checkout-form .check-box input[type='checkbox']:checked + label::before {
    border: 2px solid #333;
}

.checkout-form .check-box input[type='checkbox']:checked + label::after {
    opacity: 1;
}

/*-- Shipping Form --*/
#shipping-form {
    display: none;
}

/*-- Checkout Cart Total --*/
.checkout-cart-total {
    padding: 45px;

    background-color: #f2f2f2;
}

@media only screen and (max-width: 575px) {
    .checkout-cart-total {
        padding: 30px;
    }
}

.checkout-cart-total h4 {
    font-weight: 700;
    line-height: 23px;

    -webkit-flex-basis: 18px;
    -ms-flex-preferred-size: 18px;
    flex-basis: 18px;
}

.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 {
    display: block;
    float: right;
}

.checkout-cart-total ul {
    border-bottom: 1px solid #999;
}

.checkout-cart-total ul li {
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;

    display: block;

    margin-bottom: 16px;

    color: #333;
}

.checkout-cart-total ul li span {
    float: right;

    color: #333;
}

.checkout-cart-total p {
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;

    margin: 0;
    padding: 10px 0;

    color: #505050;
    border-bottom: 1px solid #999;
}

.checkout-cart-total p span {
    float: right;
}

/*-- Checkout Payment Method --*/
.checkout-payment-method {
    padding: 45px;

    background-color: #f2f2f2;
}

@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 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;

    position: relative;

    margin: 0;
    padding-left: 30px;

    color: #333;
}

.single-method input[type='radio'] + label::before {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 20px;
    height: 20px;

    content: '';
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;

    border: 2px solid #999;
}

.single-method input[type='radio'] + label::after {
    position: absolute;
    top: 5px;
    left: 5px;

    display: block;

    width: 10px;
    height: 10px;

    content: '';
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    text-align: center;

    opacity: 0;
    background-color: #333;
}

.single-method input[type='radio']:checked + label::before {
    border: 2px solid #333;
}

.single-method input[type='radio']:checked + label::after {
    opacity: 1;
}

.single-method input[type='checkbox'] {
    display: none;
}

.single-method input[type='checkbox'] + label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;

    position: relative;

    margin: 0;
    padding-left: 30px;

    color: #333;
}

.single-method input[type='checkbox'] + label::before {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 16px;
    height: 16px;

    content: '';
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;

    border: 2px solid #999;
}

.single-method input[type='checkbox'] + label::after {
    position: absolute;
    top: 4px;
    left: 4px;

    display: block;

    width: 8px;
    height: 8px;

    content: '';
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    text-align: center;

    opacity: 0;
    background-color: #333;
}

.single-method input[type='checkbox']:checked + label::before {
    border: 2px solid #333;
}

.single-method input[type='checkbox']:checked + label::after {
    opacity: 1;
}

.single-method p {
    font-size: 14px;
    line-height: 23px;

    display: none;

    margin-top: 8px;

    color: #333;
}

/*-- Place Order --*/
.place-order {
    font-weight: 400;
    line-height: 24px;

    float: left;

    width: 140px;
    height: 36px;
    margin-top: 40px;
    padding: 6px 20px;

    text-transform: uppercase;

    color: #fff;
    border: none;
    border-radius: 3px;
    background-color: #333;
}

.place-order:hover {
    background-color: #3a9943;
}

/*=====  End of Checkout  ======*/
/*=============================================
=           My Account            =
=============================================*/
.myaccount-tab-menu {
    flex-direction: column;

    background-color: #fff;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
}

.myaccount-tab-menu a {
    font-size: 12px;
    font-weight: 500;

    display: block;

    padding: 15px 15px 13px;

    text-transform: uppercase;

    color: #333;
    border: 1px solid #eee;
    border-bottom: none;
}

.myaccount-tab-menu a:last-child {
    border-bottom: 1px solid #eee;
}

.myaccount-tab-menu a:hover,
.myaccount-tab-menu a.active {
    color: #fff;
    background-color: #3a9943;
}

.myaccount-tab-menu a i {
    font-size: 14px;

    width: 25px;

    text-align: center;
}

/*-- My Account Content -*/
.myaccount-content {
    font-size: 14px;

    padding: 30px;

    border: 1px solid #eee;
    background-color: #fff;
}

@media only screen and (max-width: 575px) {
    .myaccount-content {
        padding: 20px 15px;
    }
}

.myaccount-content h3 {
    margin-bottom: 25px;
    padding-bottom: 10px;

    border-bottom: 1px dashed #eee;
}

.myaccount-content .welcome a {
    color: #000;
}

.myaccount-content .welcome a:hover {
    color: #3a9943;
}

.myaccount-content .welcome strong {
    font-weight: 600;
}

.myaccount-content a.edit-address-btn {
    font-size: 14px;
    font-weight: 400;

    padding: 10px 20px;

    text-transform: uppercase;

    color: #fff;
    border: none;
    border-color: #333;
    border-radius: 3px;
    background: none;
    background-color: #333;
}

.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 {
    font-weight: 400;

    width: 140px;
    padding: 10px 0;

    text-transform: uppercase;

    color: #fff;
    border: none;
    border-color: #333;
    border-radius: 3px;
    background: none;
    background-color: #333;
}

.myaccount-content button.save-change-btn:hover {
    background-color: #3a9943;
}

/*-- My Account Table -*/
.myaccount-table {
    font-size: 15px;

    white-space: nowrap;
}

.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 {
    font-size: 13px;
    font-weight: 600;

    padding: 20px;

    border-top: 3px solid #3a9943;
    border-radius: 5px 5px 0 0;
}

/*-- My Account Details Form -*/
.account-details-form h4 {
    margin: 0;
}

.account-details-form input {
    line-height: 24px;

    display: block;

    width: 100%;
    padding: 11px 25px;

    color: #656565;
    border: 1px solid #ebebeb;
    border-radius: 0;
}

/*=====  End of My Account  ======*/
/*=============================================
=            Login Register            =
=============================================*/
/*-- Login Title --*/
.login-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;

    margin-bottom: 30px;

    text-decoration: underline;
    text-transform: capitalize;
}

/*-- Login Form --*/
.login-form {
    padding: 30px;

    background-color: #fff;
    -webkit-box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);
}

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

.login-form label {
    font-size: 14px;
    font-weight: 500;

    display: block;

    margin-bottom: 12px;

    text-transform: capitalize;
}

.login-form .nice-select {
    font-size: 14px;
    line-height: 23px;

    width: 100%;
    height: 45px;
    margin-bottom: 15px;
    padding: 10px 20px;

    color: #333;
    border: 1px solid #999;
    border-radius: 0;
    background-color: transparent;
}

.login-form .nice-select::after {
    right: 20px;

    width: 6px;
    height: 6px;

    border-width: 1px;
    border-color: #333;
}

.login-form .nice-select .current {
    line-height: 23px;

    display: block;

    color: #333;
}

.login-form .nice-select .list {
    width: 100%;
}

.login-form input {
    font-size: 14px;
    line-height: 23px;

    width: 100%;
    margin-bottom: 15px;
    padding: 10px 20px;

    color: #333;
    border: 1px solid #999;
    border-radius: 0;
    background-color: transparent;
}

.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 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;

    position: relative;

    margin: 0;
    padding-left: 30px;

    color: #333;
}

.login-form .check-box input[type='checkbox'] + label::before {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 20px;
    height: 20px;

    content: '';
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;

    border: 2px solid #999;
}

.login-form .check-box input[type='checkbox'] + label::after {
    font-family: Fontawesome;
    font-size: 12px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 20px;

    content: '\f00c';
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    text-align: center;

    opacity: 0;
    color: #333;
}

.login-form .check-box input[type='checkbox']:checked + label::before {
    border: 2px solid #333;
}

.login-form .check-box input[type='checkbox']:checked + label::after {
    opacity: 1;
}

/*-- Place Order --*/
.register-button {
    font-weight: 400;
    line-height: 24px;

    display: block;
    float: left;

    width: 140px;
    height: 36px;
    margin-top: 40px;
    padding: 6px 20px;

    text-transform: uppercase;

    color: #fff;
    border: none;
    border-radius: 3px;
    background-color: #333;
}

.register-button:hover {
    background-color: #3a9943;
}

/*=====  End of Login Register  ======*/
/*=============================================
=           FAQ            =
=============================================*/
.faq-wrapper .panel.panel-default {
    margin-bottom: 20px;

    border: 1px solid #ebebeb;
}

.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 {
    font-weight: 500;

    position: relative;

    width: 100%;
    padding: 10px 20px;

    text-align: left;
    white-space: normal;

    color: #333;

    overflow-wrap: break-word;
}

.faq-wrapper .card-header h5 button span {
    position: absolute;
    top: 50%;
    right: 10px;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.faq-wrapper .card-header h5 button span i.fa {
    font-size: 12px;

    display: none;
    visibility: hidden;

    opacity: 0;
}

.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'] {
    color: #fff;
    border-radius: 0;
    background-color: #3a9943;
}

.faq-wrapper .card-header h5 button[aria-expanded='true'] span i.fa.fa-chevron-down {
    display: inline;
    visibility: visible;

    opacity: 1;
}

.faq-wrapper .card-header h5 button[aria-expanded='false'] span i.fa.fa-chevron-up {
    display: inline;
    visibility: visible;

    opacity: 1;
}

.faq-wrapper .card-body p {
    font-size: 14px;
    line-height: 24px;
}

/*=====  End of FAQ  ======*/
/*=============================================
=           Compare            =
=============================================*/
/*-- Compare Table --*/
.compare-table {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);
}

.compare-table .table tbody tr:first-child {
    border-top: 1px solid #eee;
}

.compare-table .table tbody tr td {
    padding: 25px 30px;

    text-align: center;
    vertical-align: middle;

    border: none;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
}

.compare-table .table tbody tr td:last-child {
    border-right: 1px solid #eee;
}

.compare-table .table tbody tr td.first-column {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;

    min-width: 180px;
    margin: 0;

    color: #333;
}

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

    display: block;

    margin-bottom: 10px;

    letter-spacing: .5px;
    text-transform: capitalize;

    color: #333;
}

.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;
    line-height: 20px;

    margin-bottom: 10px;

    color: #333;
}

.compare-table .table tbody tr td.product-image-title .title:hover {
    color: #3a9943;
}

.compare-table .table tbody tr td.pro-desc p {
    margin: 0;

    text-align: left;
}

.compare-table .table tbody tr td.pro-price {
    font-size: 16px;
    font-weight: 500;

    color: #333;
}

.compare-table .table tbody tr td.pro-color {
    font-size: 16px;
    font-weight: 500;

    color: #333;
}

.compare-table .table tbody tr td.pro-stock {
    font-size: 16px;
    font-weight: 500;

    color: #333;
}

.compare-table .table tbody tr td.pro-addtocart .add-to-cart {
    position: relative;

    display: inline-block;

    width: 170px;
    padding: 10px 25px 10px 25px;

    color: #fff;
    border-radius: 3px;
    background-color: #333;
}

.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;
    font-weight: 500;
    line-height: 21px;

    overflow: hidden;

    text-align: center;
    text-transform: uppercase;
}

.compare-table .table tbody tr td.pro-addtocart .add-to-cart:hover {
    background-color: #3a9943;
}

.compare-table .table tbody tr td.pro-remove button {
    padding: 0;

    border: none;
    background-color: transparent;
}

.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 {
    font-size: 14px;

    color: #333;
}

/*=====  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;
    font-weight: 500;
    line-height: 32px;

    margin-bottom: 25px;

    color: #333;
}

@media only screen and (max-width: 575px) {
    h3.contact-page-title {
        font-size: 25px;
    }
}

.single-contact-block {
    margin-bottom: 20px;
    padding-bottom: 20px;

    border-bottom: 1px solid #e0e0e0;
}

@media only screen and (max-width: 575px) {
    .single-contact-block {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

.single-contact-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;

    border-bottom: 0;
}

.single-contact-block h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;

    color: #222;
}

@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 {
    font-size: 15px;
    line-height: 29px;

    margin-bottom: 0;

    color: #666;
}

span.required {
    color: red;
}

/*----------  contact form  ----------*/
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 15px;
    font-weight: 400;
    line-height: 29px;

    display: block;

    margin-bottom: 0;

    color: #888;
}

.contact-form input {
    line-height: 50px;

    width: 100%;
    height: 50px;
    padding-left: 20px;

    border: 1px solid #e0e0e0;
    outline: none;
    background-color: #fff;
}

.contact-form textarea {
    line-height: 50px;

    width: 100%;
    height: 200px;
    padding-left: 20px;

    border: 1px solid #e0e0e0;
    outline: none;
    background-color: #fff;
}

/*----------  contact page side content  ----------*/
.contact-page-side-content {
    padding: 30px;

    background-color: #f2f2f2;
}

/*=====  End of Contact   ======*/
/*=============================================
=            About            =
=============================================*/
/*-- About Image --*/
.about-image img {
    width: 100%;
}

/*-- About Content --*/
.about-content h1 {
    font-size: 36px;
    font-weight: 700;

    margin-bottom: 23px;

    text-transform: uppercase;
}

.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-top: 30px;
    margin-bottom: 0;
}

/*-- Feature Image --*/
.feature-image {
    position: relative;
    z-index: 2;
}

.feature-image::before {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: -40px;

    width: 380px;
    height: 360px;

    content: '';

    background-color: #fff;
}

@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 {
    font-size: 13px;
    font-weight: 400;

    color: #abaaaa;
}

.blog-post-slider-container .single-blog-post .content p span i.icon {
    font-size: 15px;

    color: #3a9943;
}

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

.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 {
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;

    display: inline-block;

    padding: 15px 30px;

    text-transform: uppercase;

    color: #363f4d;
    border-radius: 3px;
    background: #f2f2f2;
}

.blog-post-slider-container .single-blog-post .content a.alula-button:hover {
    color: #fff;
    background-color: #3a9943;
}

.single-blog-post {
    background-color: #fff;
}

.single-blog-post.gallery-type-post {
    display: block;
}

.single-blog-post.gallery-type-post .single-blog-post-media:hover .slick-arrow {
    visibility: visible;

    opacity: .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 {
    line-height: 40px;

    position: absolute;
    z-index: 9;
    top: 50%;

    visibility: hidden;

    width: 40px;
    height: 40px;
    margin-top: -20px;

    text-align: center;

    opacity: 0;
    color: #fff;
    border: none;
    border-radius: 50%;
    background: none;
    background-color: #323232;
}

.single-blog-post.gallery-type-post .slick-next {
    right: 30px;
    left: auto;
}

.single-blog-post.gallery-type-post .slick-prev {
    right: auto;
    left: 30px;
}

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

    margin-right: 5px;
    padding: 5px 10px;

    text-transform: capitalize;

    border-radius: 3px;
    background-color: #fff;
}

.single-blog-post .single-blog-post-media .blog-categories ul li a:hover {
    color: #fff;
    background-color: #3a9943;
}

.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;
    font-weight: 500;
    line-height: 30px;

    margin-bottom: 20px;

    color: #333;
}

.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 {
    font-family: fontAwesome;
    font-size: 25px;

    position: absolute;
    top: 0;
    left: 0;

    content: '\f08d';
}

.single-blog-post .single-blog-post-content .post-meta {
    margin-bottom: 20px;
    padding-bottom: 15px;

    border-bottom: 1px solid #e0e0e0;
}

.single-blog-post .single-blog-post-content .post-meta p span {
    color: #999;
}

.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 {
    font-size: 12px;
    font-size: 12px;
    font-weight: 500;
    font-weight: 500;
    line-height: 12px;
    line-height: 18px;

    display: inline-block;

    padding: 15px 30px;
    padding: 15px 25px;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: #363f4d;
    border-radius: 3px;
    background: #f2f2f2;
}

.single-blog-post .single-blog-post-content a.blog-readmore-btn:hover {
    color: #fff;
    background-color: #3a9943;
}

.blog-single-post-container {
    padding: 25px;

    border: 1px solid #efefef;
    background-color: #fff;
}

.blog-single-post-container h3.post-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 46px;

    margin-bottom: 20px;

    text-align: center;

    color: #333;
}

@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 {
    margin-bottom: 20px;
    padding-bottom: 15px;

    text-align: center;
}

.blog-single-post-container .post-meta p span {
    color: #999;
}

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

    margin-right: 5px;
    padding: 5px 10px;

    text-transform: capitalize;

    border-radius: 3px;
    background-color: #fff;
}

.blog-single-post-container .single-blog-post-media .blog-categories ul li a:hover {
    color: #fff;
    background-color: #3a9943;
}

.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 {
    font-size: 14px;
    font-style: italic;
    line-height: 26px;

    margin: 40px 0 40px 40px;
    padding: 30px 45px;

    border: 1px solid #e0e0e0;
    border-left: 5px solid #3a9943;
    background: #f6f6f6;
}

@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 {
    padding: 10px 0;

    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.blog-single-post-container .tag-area span {
    color: #999;
}

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

.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 {
    font-size: 12px;
    font-weight: 500;
    line-height: 26px;

    width: auto;
    margin: 0 20px;
    margin-bottom: 15px;

    text-transform: uppercase;

    color: #8c8c8c;
    background: none;
}

.blog-single-post-container .social-share-buttons ul li {
    display: inline-block;
}

.blog-single-post-container .social-share-buttons ul li a {
    font-size: 12px;
    line-height: 32px;

    display: inline-block;

    width: 32px;
    height: 32px;
    margin-right: 10px;

    text-align: center;

    color: #353535;
    border-radius: 100%;
    background: #f7f7f7;
}

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

.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 {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;

    display: block;

    margin-top: 5px;

    color: #999;
}

/*----------  single blog post media  ----------*/
.single-blog-post-media {
    position: relative;
}

.single-blog-post-media:hover .slick-arrow {
    visibility: visible;

    opacity: .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 {
    line-height: 40px;

    position: absolute;
    z-index: 9;
    top: 50%;

    visibility: hidden;

    width: 40px;
    height: 40px;
    margin-top: -20px;

    opacity: 0;
    color: #fff;
    border: none;
    border-radius: 50%;
    background: none;
    background-color: #323232;
}

.single-blog-post-media .slick-next {
    right: 30px;
    left: auto;
}

.single-blog-post-media .slick-prev {
    right: auto;
    left: 30px;
}

/*----------  comment container  ----------*/
h3.comment-counter {
    font-weight: 500;

    margin-bottom: 20px;
}

.comment-container .single-comment {
    position: relative;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    width: 100%;
    margin: 0 0 30px;
    padding: 30px;

    border: 1px solid #e0e0e0;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);
}

.comment-container .single-comment.reply-comment {
    width: 90%;
    margin-left: 10%;
}

.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 {
    font-size: 13px;
    font-weight: 500;

    display: inline-block;

    padding: 5px 15px;

    color: #3a9943;
    border: 1px solid #3a9943;
    border-radius: 50px;
}

.comment-container .single-comment span.reply-btn a:hover {
    color: #fff;
    background-color: #3a9943;
}

.comment-container .single-comment .image {
    -webkit-flex-basis: 50px;
    -ms-flex-preferred-size: 50px;
    flex-basis: 50px;
}

.comment-container .single-comment .content {
    margin-left: 20px;

    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.comment-container .single-comment .content h3 {
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    line-height: 29px;

    color: #999;
}

.comment-container .single-comment .content h3 span.comment-time {
    font-size: 14px;
    font-weight: 400;
    line-height: 29px;

    display: block;

    color: #999;
}

.comment-container .single-comment .content p.comment-text {
    font-size: 15px;
    line-height: 24px;

    color: #999;
}

/*----------  comment form  ----------*/
.comment-form-container h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;

    margin-bottom: 25px;

    color: #333;
}

.comment-form-container p {
    font-size: 12px;
    line-height: 23px;

    color: #999;
}

/*----------  comment form  ----------*/
.comment-form label {
    font-size: 15px;
    font-weight: 500;
    line-height: 29px;

    display: block;

    margin-bottom: 10px;

    color: #999;
}

.comment-form textarea {
    width: 100%;
    height: 130px;
    padding: 15px;

    border: 1px solid #e0e0e0;
    -webkit-box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);
}

.comment-form input {
    line-height: 48px;

    width: 100%;
    height: 50px;
    padding: 0 15px;

    vertical-align: middle;

    border: 1px solid #e0e0e0;
    border-radius: 0;
    background: #fff;
}

.comment-form .fl-btn {
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;

    display: inline-block;

    padding: 15px 30px;

    text-transform: uppercase;

    color: #363f4d;
    color: #fff;
    border: none;
    border-radius: 3px;
    background: #f2f2f2;
    background-color: #333;
}

.comment-form .fl-btn:hover {
    color: #fff;
    background-color: #3a9943;
}

/*=====  End of Blog  ======*/
/*=============================================
=            shop            =
=============================================*/
/*----------  shop header  ----------*/
.shop-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    padding: 5px 20px;

    border: 1px solid #ededed;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .shop-header {
        flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.shop-header__left__message {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 46px;

    float: left;

    color: #666;
}

@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 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;

    margin-right: 10px;

    color: #666;
}

.shop-header__right .single-select-block select {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;

    padding-left: 10px;

    color: #666;
    border: none;
}

.grid-icons {
    float: left;
}

.grid-icons button {
    float: left;

    width: 40px;
    height: 46px;
    padding: 0;

    border: none;
    background: none;
    background-repeat: no-repeat;
    background-position: center;
}

@media only screen and (max-width: 767px) {
    .grid-icons button {
        height: 40px;
    }
}

.grid-icons button.three-column {
    background-image: url('../img/icons/grid.png');
}

.grid-icons button.three-column:hover,
.grid-icons button.three-column.active {
    background-image: url('../img/icons/grid-hover.png');
}

.grid-icons button.four-column {
    background-image: url('../img/icons/grid-4.png');
}

.grid-icons button.four-column:hover,
.grid-icons button.four-column.active {
    background-image: url('../img/icons/grid-4-hover.png');
}

.grid-icons button.list-view {
    background-image: url('../img/icons/list.png');
}

.grid-icons button.list-view:hover,
.grid-icons button.list-view.active {
    background-image: url('../img/icons/list-hover.png');
}

.shop-product-wrap.grid .list-view-product {
    display: none;
}

.shop-product-wrap.list [class*='col'],
.shop-product-wrap.list [class*='col-'] {
    width: 100%;
    max-width: 100%;

    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
}

.shop-product-wrap.list .grid-view-product {
    display: none;
}

/*=====  End of shop  ======*/

.navbar-brand {
    width: 180px;
}

@media (min-width: 370px) {
    .navbar-brand {
        width: 220px;
    }
}

@media (min-width: 410px) {
    .navbar-brand {
        width: 250px;
    }
}

.navbar-toggler {
    border: none;
    padding: 0;
}


.nav-link {
    padding-right: 50px !important;
    color: #000 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.navbar-nav {
    padding-left: 15px !important;
}

@media (min-width: 992px) {
    .navbar-nav {
        padding-left: 55px !important;
    }
}

.navbar {
    background: #fff !important;
    z-index: 99999999 !important;
    box-shadow: 0 0 30px #666;
}

/*body{
    padding-top: 70px;
}*/

.modal
{
    margin-top: 50px;
}

.navbar-expand-lg .navbar-nav .nav-link
{

    padding-left: unset;
}