:root {
    --color-main-bg: #f8f8f8;
    --link_menu: red;
    --alert-color: #000000;
    --color-text: #343a42;
    --color-text-light: #afafaf;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-red: #e74c3c;
    --color-red-rgb: 232, 78, 61;
    --color-gray: #ecedef;
    --color-gray-a6: #a6a6a6;
    --color-gray-light: #fafafa;
    --color-gray-alt: #f2f4f7;
    --color-gray-alt2: #efeff1;
    --color-gray-alt3: #dddddd;
    --color-lead: #343a42;
    --color-lead-light: #343a42;
    --color-lead-dark: #343a42;
    --color-yellow: #b8926d;
    --color-yellow-light: #fce599;
    --color-yellow-dark: #e4bd73;
    --color-green: #33ad06;
    --color-green-dark: #268e00;
    --color-blue: #1977f2;
    --dropdown-max-height: 380px;
    --alert-danger-color: #721c24;
    --alert-danger-color-background: #f8d7da;
    --alert-danger-color-border: #f5c6cb;
    --alert-sucess-color: #28a745;
    --alert-sucess-color-background: #d7f8db;
    --alert-sucess-color-border: #c2e6c9;
    --whats-color: #27ba7c;
    --whats-color-hover: #128c7e;
    --color-primary: #b8926d;
    --color-secondary: #343a42;
    --color-secondary-dark: #2a2f32;
    --color-third: #dec17b;
    --input-background: #f5eee8;

}

body {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    color: var(--color-text);
    background: var(--color-white);
}

body.fix {
    overflow: hidden;
}

a {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

a:hover,
a:focus {
    color: var(--color-black);
    outline: none;
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text);
    margin-bottom: 0;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

strong,
b {
    font-weight: 700;
}

figure {
    margin: 0;
    height: 300px;
    background: var(--color-white);
}

img {
    max-width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.text-secondary {
    color: var(--color-text) !important;
}

.not-content {
    opacity: 0.5;
}

.not-content .lnr {
    opacity: 0.5;
}

.invert {
    filter: invert(1) grayscale(1);
}

.not-content .motion {
    position: relative;
}

.lupa {
    top: 50px;
    left: 60px;
    position: absolute;
    animation: bounce 6s ease-in-out infinite;
}

.lupa .lnr {
    opacity: 1;
}

.bounceLeft {
    position: absolute;
    animation: bounceLeft 6s ease-in-out infinite;
    animation-delay: 2.3s;
}

.capitalize {
    text-transform: capitalize !important;
}

.btn:active,
.btn:focus,
button:active,
button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input:focus,
textarea:focus {
    outline: none;
}

fieldset {
    margin-top: 30px;
}

fieldset legend {
    border-bottom: 1px solid #e7e7e7;
    color: var(--color-black);
    font-size: 24px;
    padding-bottom: 10px;
    text-transform: capitalize;
}

::-moz-selection {
    background: rgba(184, 146, 109, 0.3);
}

::selection {
    background: rgba(184, 146, 109, 0.3);
}

::-webkit-input-placeholder {
    color: var(--color-text);
    opacity: 1;
}

::-moz-placeholder {
    color: var(--color-text);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--color-text);
    opacity: 1;
}

::-ms-input-placeholder {
    color: var(--color-text);
    opacity: 1;
}

::placeholder {
    color: var(--color-text);
    opacity: 1;
}

.noUi-horizontal {
    height: 5px;
}

.noUi-target {
    border: 0;
    background: #dbdbdb;
    box-shadow: none;
}

.noUi-handle {
    border-radius: 50%;
}

.noUi-horizontal .noUi-handle {
    top: -6px;
    right: -8.5px !important;
    width: 17px;
    height: 17px;
}

.noUi-connects {
    border-radius: 0;
}

.noUi-connect {
    background: #606ddd;
    box-shadow: none;
}

.modal-content {
    margin-top: -2000px;
    transition: 0.6s all;
}

.show .modal-content {
    margin-top: 0;
}

.link-separate {
    margin: 0 5px;
    position: relative;
    top: -2px;
}


/* ----tab problem fix css ----*/

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

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


/*------ custom tooltip start -------*/

.tooltip.show {
    opacity: 1;
}

.tooltip>.tooltip-inner {
    font-size: 13px;
    color: var(--color-white);
    background-color: var(--alert-color);
}


/* .tooltip.bs-tooltip-top .arrow:before {
    border-top-color: var(--color-yellow);
}

.tooltip.bs-tooltip-left .arrow:before {
    border-left-color: var(--alert-color);
} */


/*------ custom tooltip end -------*/

.alert {
    line-height: 1.4em;
}

.alert-sucess {
    color: var(--alert-sucess-color);
    background-color: var(--alert-sucess-color-background);
    border-color: var(--alert-sucess-color-border);
}

.alert-danger {
    color: var(--alert-danger-color);
    background-color: var(--alert-danger-color-background);
    border-color: var(--alert-danger-color-border);
}

.alert-danger a {
    color: var(--alert-danger-color);
    text-decoration: underline;
}

.alert-danger a:hover {
    color: var(--color-black);
}


/* ---- Sick Slider arrow style start ----*/

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

.slick-arrow-style button.slick-arrow {
    top: 50%;
    left: 0;
    height: 40px;
    width: 40px;
    color: var(--color-text);
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    display: block;
    position: absolute;
    -webkit-transform: translateY(-50%) scale(0.7);
    -ms-transform: translateY(-50%) scale(0.7);
    transform: translateY(-50%) scale(0.7);
    line-height: 40px;
    border-radius: 3px;
    z-index: 1;
    background-color: rgba(240, 240, 240, 0.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.slick-arrow-style button.slick-arrow.slick-next {
    left: auto;
    right: 0;
    padding-left: 2px;
}

.slick-arrow-style button.slick-arrow:hover {
    color: var(--color-white);
    background-color: var(--color-yellow);
}

.slick-arrow-style:hover button.slick-arrow {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}

.slick-arrow-style_hero button.slick-arrow {
    font-size: 40px;
    left: 15px;
    width: inherit;
    height: inherit;
    background-color: transparent;
}

.slick-arrow-style_hero button.slick-arrow.slick-next {
    right: 15px;
}

.slick-arrow-style_hero button.slick-arrow:hover {
    color: var(--color-yellow);
    background-color: transparent;
}

.slick-append {
    background-color: var(--color-white);
    z-index: 2;
    padding-left: 5px;
}

.slick-append button {
    position: inherit;
    display: inline-block;
    background-color: transparent;
    color: var(--color-text);
}

.slick-append button.slick-next {
    margin-left: 10px;
}

.slick-append button:hover {
    color: var(--color-yellow);
}


/*--------- slick slider dot style start -------*/

.slick-dot-style ul.slick-dots {
    bottom: 15px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slick-dot-style ul.slick-dots li {
    display: inline-block;
    margin-right: 10px;
}

.slick-dot-style ul.slick-dots li:last-child {
    margin-right: 0;
}

.slick-dot-style ul.slick-dots li button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    display: block;
    text-indent: -5000px;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: #d7d7d7;
}

.slick-dot-style ul.slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    background-color: var(--color-yellow);
}

.slick-row-3 .slick-list {
    margin: 0 -3px;
}

.slick-row-3 .slick-list .slick-slide {
    margin: 0 3px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-3 .slick-list {
        margin: 0 -3px !important;
    }

    .slick-sm-row-3 .slick-list .slick-slide {
        margin: 0 3px !important;
    }
}

.slick-row-4 .slick-list {
    margin: 0 -4px;
}

.slick-row-4 .slick-list .slick-slide {
    margin: 0 4px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-4 .slick-list {
        margin: 0 -4px !important;
    }

    .slick-sm-row-4 .slick-list .slick-slide {
        margin: 0 4px !important;
    }
}

.slick-row-5 .slick-list {
    margin: 0 -5px;
}

.slick-row-5 .slick-list .slick-slide {
    margin: 0 5px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-5 .slick-list {
        margin: 0 -5px !important;
    }

    .slick-sm-row-5 .slick-list .slick-slide {
        margin: 0 5px !important;
    }
}

.slick-row-6 .slick-list {
    margin: 0 -6px;
}

.slick-row-6 .slick-list .slick-slide {
    margin: 0 6px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-6 .slick-list {
        margin: 0 -6px !important;
    }

    .slick-sm-row-6 .slick-list .slick-slide {
        margin: 0 6px !important;
    }
}

.slick-row-7 .slick-list {
    margin: 0 -7px;
}

.slick-row-7 .slick-list .slick-slide {
    margin: 0 7px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-7 .slick-list {
        margin: 0 -7px !important;
    }

    .slick-sm-row-7 .slick-list .slick-slide {
        margin: 0 7px !important;
    }
}

.slick-row-8 .slick-list {
    margin: 0 -8px;
}

.slick-row-8 .slick-list .slick-slide {
    margin: 0 8px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-8 .slick-list {
        margin: 0 -8px !important;
    }

    .slick-sm-row-8 .slick-list .slick-slide {
        margin: 0 8px !important;
    }
}

.slick-row-9 .slick-list {
    margin: 0 -9px;
}

.slick-row-9 .slick-list .slick-slide {
    margin: 0 9px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-9 .slick-list {
        margin: 0 -9px !important;
    }

    .slick-sm-row-9 .slick-list .slick-slide {
        margin: 0 9px !important;
    }
}

.slick-row-10 .slick-list {
    margin: 0 -10px;
}

.slick-row-10 .slick-list .slick-slide {
    margin: 0 10px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-10 .slick-list {
        margin: 0 -10px !important;
    }

    .slick-sm-row-10 .slick-list .slick-slide {
        margin: 0 10px !important;
    }
}

.slick-row-11 .slick-list {
    margin: 0 -11px;
}

.slick-row-11 .slick-list .slick-slide {
    margin: 0 11px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-11 .slick-list {
        margin: 0 -11px !important;
    }

    .slick-sm-row-11 .slick-list .slick-slide {
        margin: 0 11px !important;
    }
}

.slick-row-12 .slick-list {
    margin: 0 -12px;
}

.slick-row-12 .slick-list .slick-slide {
    margin: 0 12px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-12 .slick-list {
        margin: 0 -12px !important;
    }

    .slick-sm-row-12 .slick-list .slick-slide {
        margin: 0 12px !important;
    }
}

.slick-row-13 .slick-list {
    margin: 0 -13px;
}

.slick-row-13 .slick-list .slick-slide {
    margin: 0 13px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-13 .slick-list {
        margin: 0 -13px !important;
    }

    .slick-sm-row-13 .slick-list .slick-slide {
        margin: 0 13px !important;
    }
}

.slick-row-14 .slick-list {
    margin: 0 -14px;
}

.slick-row-14 .slick-list .slick-slide {
    margin: 0 14px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-14 .slick-list {
        margin: 0 -14px !important;
    }

    .slick-sm-row-14 .slick-list .slick-slide {
        margin: 0 14px !important;
    }
}

.slick-row-15 .slick-list {
    margin: 0 -15px;
}

.slick-row-15 .slick-list .slick-slide {
    margin: 0 15px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-15 .slick-list {
        margin: 0 -15px !important;
    }

    .slick-sm-row-15 .slick-list .slick-slide {
        margin: 0 15px !important;
    }
}

.slick-slider .slick-slide>div {
    margin-bottom: 30px;
}

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

.common-wrapper {
    max-width: 1250px;
    margin: auto;
    padding: 40px 0;
    background-color: var(--color-white);
}

@media only screen and (max-width: 767.98px) {
    .common-wrapper {
        padding: 35px 0 62px 0;
    }
}

@media only screen and (max-width: 479.98px) {
    .common-wrapper {
        padding: 15px 0 62px 0;
    }
}

.bdr-bottom {
    /*border-bottom: 1px solid var(--color-gray);*/
}

.common-bg {
    background-color: #dfdfdf;
}

.theme-color {
    background-color: var(--color-yellow);
}

.bg-gray {
    background-color: #f2f2f2;
}

.bg-gray-2 {
    background-color: #f6f7f9;
}

.bg-blue {
    background-color: #3a78ff;
}

.bg-dark {
    background-color: #22282e !important;
}

.theme-color {
    background-color: var(--color-yellow);
}

.bg-black {
    background-color: var(--color-text);
}

.facebook {
    background-color: #3B5999;
}

.twitter {
    background-color: #1DA1F2;
}

.google {
    background-color: #fe6d4c;
}

.instagram {
    background-color: #c619b8;
}

.youtube {
    background-color: #CC332D;
}


/* ----scroll to top css start ----*/

.scroll-top {
    bottom: 50px;
    cursor: pointer;
    height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    z-index: 9999;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
    background-color: rgba(254, 210, 128, 0.7);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.scroll-top i {
    line-height: 50px;
    color: var(--color-white);
    font-size: 25px;
}

.scroll-top.not-visible {
    bottom: -50px;
    visibility: hidden;
    opacity: 0;
}

.scroll-top:hover {
    background-color: var(--color-yellow);
}


/* ----scroll to top css end ----*/


/*-------- Custom Checkbox Style start --------*/

.custom-checkbox.custom-control,
.custom-radio.custom-control {
    min-height: auto;
}

.custom-checkbox label,
.custom-checkbox .custom-control-label,
.custom-radio label,
.custom-radio .custom-control-label {
    font-size: 14px;
    line-height: 1;
    padding-left: 10px;
    font-weight: 400;
    display: block;
    cursor: pointer;
}

.custom-checkbox label:before,
.custom-checkbox .custom-control-label:before,
.custom-radio label:before,
.custom-radio .custom-control-label:before {
    background-color: transparent;
    border: 1px solid var(--color-black);
    border-radius: 0;
    height: 15px;
    top: 0;
    width: 15px;
}

.custom-checkbox label:after,
.custom-checkbox .custom-control-label:after,
.custom-radio label:after,
.custom-radio .custom-control-label:after {
    background-size: 10px 10px;
    height: 15px;
    top: 0;
}

.custom-checkbox label a,
.custom-checkbox .custom-control-label a,
.custom-radio label a,
.custom-radio .custom-control-label a {
    color: var(--color-text);
    font-weight: 500;
}

.custom-checkbox label a:hover,
.custom-checkbox .custom-control-label a:hover,
.custom-radio label a:hover,
.custom-radio .custom-control-label a:hover {
    color: var(--color-yellow);
}

.custom-checkbox input,
.custom-checkbox .custom-control-input,
.custom-radio input,
.custom-radio .custom-control-input {
    outline: none;
}

.custom-checkbox input:focus~.custom-control-label:before,
.custom-checkbox input:focus label:before,
.custom-checkbox .custom-control-input:focus~.custom-control-label:before,
.custom-checkbox .custom-control-input:focus label:before,
.custom-radio input:focus~.custom-control-label:before,
.custom-radio input:focus label:before,
.custom-radio .custom-control-input:focus~.custom-control-label:before,
.custom-radio .custom-control-input:focus label:before {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom-checkbox input:checked~.custom-control-label:before,
.custom-checkbox input:checked label:before,
.custom-checkbox .custom-control-input:checked~.custom-control-label:before,
.custom-checkbox .custom-control-input:checked label:before,
.custom-radio input:checked~.custom-control-label:before,
.custom-radio input:checked label:before,
.custom-radio .custom-control-input:checked~.custom-control-label:before,
.custom-radio .custom-control-input:checked label:before {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}


/*-------- Custom Checkbox Style end --------*/


/*------- Custom Radio Button Style start -------*/

.custom-radio label:before,
.custom-radio .custom-control-label:before {
    border-radius: 50%;
    height: 14px;
    width: 14px;
}

.custom-radio label::after,
.custom-radio .custom-control-label::after {
    background-size: 10px 10px;
    left: -22px;
    top: 2px;
    height: 10px;
    width: 10px;
}


/*------- Custom Radio Button Style end -------*/


/*----------- header top area start -----------*/

.header-top {
    padding: 2px 0;
    background-color: var(--color-black);
}

.header-top .container {
    padding: 0 5px;
}

.header-top ul.nav li span,
.header-top ul.nav li a {
    color: var(--color-yellow);
    cursor: pointer;
    font-size: 13px;
    padding: 5px;
    text-transform: uppercase;
}

.header-top ul.nav li span:hover,
.header-top ul.nav li a:hover {
    color: var(--color-white);
}

.header-top ul.nav li:first-child {
    padding-left: 0;
    margin-left: 0;
}

.header-top ul.nav li .dropdown-list {
    top: 100%;
    right: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 15px 15px 20px;
    width: 150px;
    z-index: 9;
    text-align: left;
    background-color: var(--color-white);
    pointer-events: none;
    border: 1px solid var(--color-gray);
}

.header-top ul.nav li .dropdown-list li a {
    color: var(--color-lead);
    font-size: 14px;
    display: block;
    padding: 5px;
    text-transform: inherit;
}

.header-top ul.nav li .dropdown-list li a:hover {
    color: var(--color-yellow);
}

.header-top ul.nav li .dropdown-list li a img {
    vertical-align: inherit;
}

.header-top ul.nav li .dropdown-list li:before {
    display: none;
}

.header-top ul.nav li:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.header-top ul.nav li.user {
    position: relative;
}

.header-top ul.nav li.exit {
    margin-left: 10px;
    padding: 2px 0;
}

.welcome-message p {
    color: var(--color-black);
    font-size: 13px;
    line-height: 1;
    /*font-weight: 500;*/
}

.header-top ul.social-links {
    display: flex;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #c2c2c2;
}

.header-top ul.social-links li a {
    color: var(--color-white);
    padding: 0 5px;
    font-size: 14px;
}

.header-top ul.social-links li a:hover {
    color: var(--color-yellow);
}


/*----------- header top area end -----------*/


/*------- header main area start -------*/

.header-main-area {
    display: flex;
    align-items: center;
    background-color: var(--color-secondary);
    min-height: 90px;
    border-top: 3px solid var(--color-primary);
}


/*---------- header mini cart start ----------*/

.header-configure-area ul li {
    display: inline-block;
    position: relative;
}

.header-configure-area ul li a {
    display: inline-block;
    padding: 0 10px !important;
    font-size: 20px;
    color: var(--color-primary);
    fill: var(--color-primary);
}

@media only screen and (max-width: 767.98px) {
    .header-configure-area ul li a {
        padding: 0 8px !important;
        color: var(--color-white);
        fill: var(--color-white);
    }
}

.header-configure-area ul li a .notification,
.header-configure-area ul li a .notification_wishlist {
    top: -2px;
    right: 0;
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    line-height: 20px;
    color: var(--color-text);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
}

@-moz-document url-prefix() {

    .header-configure-area ul li a .notification,
    .header-configure-area ul li a .notification_wishlist {
        top: -9px;
        right: 0;
    }
}

.empty-cart .header-configure-area ul li a .notification {
    display: none;
}

.header-configure-area ul li a:hover,
.header-configure-area ul li a:focus {
    color: var(--color-white);
    fill: var(--color-white);
}

.header-configure-area ul li:first-child {
    margin-left: 0;
}

.header-configure-area ul li.user-hover {
    position: relative;
}

.header-configure-area ul li.user-hover .dropdown-list {
    position: absolute;
    top: 100%;
    right: 0;
    width: 150px;
    padding: 20px;
    background-color: var(--color-white);
    z-index: 11;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    border: 1px solid var(--color-gray);
}

.header-configure-area ul li.user-hover .dropdown-list li {
    display: block;
    margin-left: 0;
}

.header-configure-area ul li.user-hover .dropdown-list li a {
    color: var(--color-text);
    font-size: 13px;
    line-height: 1;
    display: block;
    padding: 8px 0;
    text-transform: capitalize;
}

.header-configure-area ul li.user-hover .dropdown-list li a:hover {
    color: var(--color-yellow);
}

.header-configure-area ul li.user-hover:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.header-main-area .header-account-links {
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
}

.header-main-area .header-account-links::before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 14px;
    background-color: var(--color-white);
    transform: translateY(calc(-50% - 2px));
}

.header-main-area .header-account-links .curreny-wrap {
    gap: 10px;
}

.header-main-area .header-account-links a,
.header-main-area .header-account-links span {
    display: inline-block;
    color: var(--color-white);
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.header-main-area .header-account-links a:hover,
.header-main-area .header-account-links a:focus,
.header-main-area .header-account-links span:hover,
.header-main-area .header-account-links span:focus {
    color: var(--color-primary);
}

ul.header-account-links {
    gap: 15px;
}

ul.header-account-links li .dropdown-list {
    top: 100%;
    right: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 5px 10px;
    width: 170px;
    z-index: 9;
    text-align: left;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray);
    pointer-events: none;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}

ul.header-account-links li .dropdown-list li a {
    color: var(--color-lead);
    font-size: 14px;
    display: block;
    padding: 2px 0;
    text-transform: inherit;
}

ul.header-account-links li .dropdown-list li a:hover {
    color: var(--color-yellow);
}

ul.header-account-links li .dropdown-list li a i {
    color: var(--color-primary);
    fill: var(--color-primary);
}

ul.header-account-links li .dropdown-list li:before {
    display: none;
}

ul.header-account-links li:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}


/*----------- header settinngs area end -----------*/

.tooltipMsg {
    opacity: 1;
    visibility: visible;
    overflow: visible;
    /*bottom: 60px;*/
    display: inline;
    margin-left: -110px;
    -webkit-transition: 0.3s;
    -moz-transition: all 0.3s;
    transition: 0.3s;
}

.tooltipMsg {
    visibility: hidden;
    /*background: #3378C1;*/
    background: var(--color-yellow);
    color: var(--color-white);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
    /*margin-left: 0px;*/
    top: 120%;
    position: absolute;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    text-decoration: none;
    font-style: normal;
    z-index: 10;
}

.tooltipMsg:before {
    /* Triangle */
    content: "";
    /*background: #3378C1;*/
    background: var(--color-yellow);
    border: 0;
    width: 10px;
    height: 10px;
    margin-left: 40%;
    margin-top: -15px;
    display: block;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-top-color: var(--color-yellow);
}


/*---------- main menu style start ---------*/

.header-bottom .main-menu ul,
nav.desktop-menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.header-bottom .main-menu>ul {
    gap: 0 15px;
    justify-content: center;
    max-width: 760px;
    margin: 10px;
    margin-right: 0;
}

.header-bottom.is-sticky .main-menu>ul {
    margin: 5px auto;
}

.header-bottom .all-categories {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-bottom .all-categories::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 1px;
    height: 75%;
    background-color: var(--color-text);
    opacity: 0.5;
    transform: translateY(-50%);
}

.header-bottom.is-sticky .all-categories {
    display: none;
}

.header-bottom .all-categories .all-categories-button {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: var(--color-black);
    transition: all 0.4s;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
}

.header-bottom .all-categories .all-categories-button:hover {
    color: var(--color-primary);
}

.header-bottom .all-categories .all-categories-dropdown {
    display: block;
    top: 100%;
    left: 0;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: var(--color-secondary);
    border-top: 3px solid var(--color-primary);
    color: var(--color-white);
    border-radius: 0 2px 2px 2px;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    padding: 20px 30px 15px;
    pointer-events: none;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    width: 100%;
    min-width: 720px;
    max-width: 100%;
    min-height: auto;
    max-height: var(--dropdown-max-height);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.header-bottom .all-categories:hover .all-categories-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.header-bottom .all-categories .all-categories-dropdown h4 {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.header-bottom .all-categories .all-categories-dropdown ul {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-template-rows: repeat(6, auto) !important;
}

.header-bottom .all-categories .all-categories-dropdown>div:first-child {
    position: relative;
}

.header-bottom .all-categories .all-categories-dropdown>div:first-child ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 10px;
}

.header-bottom .all-categories .all-categories-dropdown div ul li {
    width: 100%;
}

.header-bottom .all-categories .all-categories-dropdown ul li a {
    color: var(--color-white);
    font-size: 12px;
    line-height: 1.2em;
    text-transform: uppercase;
    display: block;
}

.header-bottom .all-categories .all-categories-dropdown ul li a i {
    top: 0 !important;
}

.header-bottom .all-categories .all-categories-dropdown ul li a:hover {
    color: var(--color-primary);
}

.header-bottom .all-categories .all-categories-dropdown ul li ul.menu-subcats {
    left: 10%;
}

.header-bottom .all-categories .all-categories-dropdown ul li ul.menu-subcats li a {
    font-size: 12px;
    white-space: nowrap;
}

.header-bottom .main-menu {
    position: relative;
    min-height: 50px;
}

.header-bottom .main-menu:not(.is-sticky) {
    justify-content: space-between !important;
    width: 100%;
}

.header-bottom .main-menu li {
    position: relative;
}

.header-bottom .main-menu>ul:not(.menu-item-all)>li>a {
    cursor: pointer;
    color: var(--color-black);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.1em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
}

.header-bottom .main-menu>ul.menu-item-all,
.header-bottom .main-menu>ul.menu-item-all>li {
    position: unset;
}

.header-bottom .main-menu>ul.menu-item-all+ul::before {
    content: "";
    background-color: var(--color-gray-alt2);
    width: 1px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: -10px;
    margin-top: -10px;
}

.header-bottom .main-menu>ul.menu-item-all>li>span {
    color: var(--color-black);
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    min-width: 140px;
    padding: 10px 0;
    cursor: pointer;
    text-align: center;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.header-bottom .main-menu>ul.menu-item-all>li:hover span {
    color: var(--color-yellow);
}

.header-bottom .main-menu ul li a,
nav.desktop-menu ul li a {
    color: var(--color-black);
    font-size: 12px;
    padding: 5px 0;
    display: block;
}

.header-bottom .main-menu>ul>li>a:hover,
.header-bottom .main-menu ul li a:hover,
nav.desktop-menu ul li:hover a {
    color: var(--color-yellow) !important;
}

.header-bottom .main-menu ul li a i {
    font-size: 14px;
    padding: 0 3px;
}

.header-bottom .main-menu ul li:first-child a,
nav.desktop-menu ul li:first-child a {
    padding-left: 0;
}

.header-bottom .main-menu ul li:last-child a,
nav.desktop-menu ul li:last-child a {
    padding-right: 0;
}

.header-bottom .main-menu ul li:hover>a,
.header-bottom .main-menu ul li.active>a,
nav.desktop-menu ul li:hover a {
    color: var(--color-yellow);
}

nav.desktop-menu ul li a {
    font-size: 16px;
}

.header-bottom .main-menu ul li .dropdown {
    top: 100%;
    left: 0;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    padding: 5px;
    pointer-events: none;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    overflow-x: hidden;
    overflow-y: auto;
    min-width: 180px;
    min-height: auto;
    max-height: var(--dropdown-max-height);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08)
}

.header-bottom .main-menu ul li .dropdown li {
    margin-right: 0;
    border-right: none;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 0;
    width: 100%;
}

.header-bottom .main-menu ul li .dropdown li a {
    display: block;
    color: var(--color-black);
    font-size: 15px;
    font-weight: 400;
    padding: 2px 5px;
}

.header-bottom .main-menu ul li .dropdown li:hover>a {
    color: var(--color-yellow);
    background-color: var(--color-white);
}

.header-bottom .main-menu ul.menu-item-all li .dropdown {
    width: 100%;
    min-width: 720px;
    max-width: 900px;
    overflow: unset;
    padding: 0;
    margin-left: 10px;
}

.header-bottom .main-menu ul.menu-item-all li .dropdown ul.list-dropdown {
    padding: 4px 8px;
    max-width: 200px;
    border-right: 1px solid var(--color-gray);
    background-color: var(--color-white);
}

.header-bottom .main-menu ul.menu-item-all li .dropdown ul.list-dropdown,
.header-bottom .main-menu ul.menu-item-all li .dropdown ul.show-dropdown {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: var(--dropdown-max-height);
}

.header-bottom .main-menu ul.menu-item-all li .dropdown ul.list-dropdown>li ul.menu-subcats {
    display: none;
}

.header-bottom .main-menu ul.menu-item-all li .dropdown ul.show-dropdown {
    width: 100%;
    padding: 0;
    position: relative;
}

.header-bottom .main-menu ul.menu-item-all li .dropdown ul.show-dropdown>li {
    opacity: 0;
    visibility: hidden;
    overflow-y: hidden;
    pointer-events: none;
    padding: 0;
    position: absolute;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 15px;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
}

.header-bottom .main-menu ul.menu-item-all li:hover .dropdown ul.show-dropdown>li.active {
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    overflow-y: auto;
    position: relative;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.header-bottom .main-menu ul.menu-item-all li .dropdown ul.show-dropdown>li>a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-lead);
}

.header-bottom .main-menu ul.menu-item-all li .dropdown ul.show-dropdown>li ul.menu-subcats {
    align-items: center;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    margin-left: auto;
    margin-right: auto;
    display: grid;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .header-bottom.is-sticky .header-bottom .main-menu ul>li>span {
        margin-left: 15px;
        margin-right: 15px;
    }
}

.header-bottom .main-menu ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.header-bottom.is-sticky .minicart-btn:hover,
.header-bottom.is-sticky .minicart-btn:focus {
    color: var(--color-secondary);
    fill: var(--color-secondary);
}

.header-bottom.is-sticky .mostraTotalItemCart .notification,
.header-bottom.is-sticky .minicart-btn:focus {
    background-color: #fff3de;
}

ul.mobile-menu>li.menu-item-cat-compositions {
    margin-top: 5px !important;
}

ul.mobile-menu>li.menu-item-destaques {
    margin-bottom: 5px !important;
}

.header-bottom .main-menu>ul.menu-actions {
    gap: 5px !important;
}

.main-menu>ul.menu-actions>li.menu-item-cat-compositions a,
.main-menu>ul.menu-actions>li.menu-item-destaques a,
ul.mobile-menu>li.menu-item-cat-compositions a,
ul.mobile-menu>li.menu-item-destaques a {
    color: var(--color-white) !important;
    background-color: var(--color-primary) !important;
    border: 1px solid var(--color-third) !important;
    border-radius: 1px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    line-height: 1.1em;
    letter-spacing: 0.15em !important;
    padding: 10px !important;
    text-transform: uppercase !important;
    text-align: center !important;
}

.main-menu>ul.menu-actions>li.menu-item-cat-compositions a:hover,
.main-menu>ul.menu-actions>li.menu-item-destaques a:hover,
ul.mobile-menu>li.menu-item-cat-compositions a:hover,
ul.mobile-menu>li.menu-item-destaques a:hover {
    color: var(--color-white) !important;
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
}

/*---- header style 2 start ----*/

.header-transparent {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    position: absolute;
    z-index: 1;
}

.header-middle-inner {
    padding: 30px 0;
}

.header-search-box {
    width: 100%;
    position: relative;
    background-color: transparent;
    padding: 0 10px;
    border-bottom: 1px solid #bfbfbf;
}

div:not(.mobile-header) .header-search-box .header-search-field::-webkit-input-placeholder {
    color: #bfbfbf;
    opacity: 1;
}

div:not(.mobile-header) .header-search-box .header-search-field::-moz-placeholder {
    color: #bfbfbf;
    opacity: 1;
}

div:not(.mobile-header) .header-search-box .header-search-field:-ms-input-placeholder {
    color: #bfbfbf;
    opacity: 1;
}

div:not(.mobile-header) .header-search-box .header-search-field::-ms-input-placeholder {
    color: #bfbfbf;
    opacity: 1;
}

div:not(.mobile-header) .header-search-box .header-search-field::placeholder {
    color: #bfbfbf;
    opacity: 1;
}

div:not(.mobile-header) .header-search-box .header-search-field::placeholder {
    color: #bfbfbf;
    opacity: 1;
}

div:not(.mobile-header) .header-search-box .header-search-field {
    width: 100%;
    padding: 5px 5px 5px 25px;
    border: none;
    background-color: transparent;
    color: var(--color-white);
}

div.mobile-header .header-search-box .header-search-field {
    color: var(--color-text);
}

.header-search-box .header-serch-btn {
    top: 50%;
    left: 5px;
    font-size: 18px;
    line-height: 1;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--color-primary);
}

.header-search-box button.header-serch-btn,
button.minicart-remove,
button.removeCarrinho {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    background-color: transparent;
}

.header-search-box .header-serch-btn:hover {
    color: var(--color-white);
    fill: var(--color-white);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.header-search-box+.checkbox-filter {
    margin-top: 5px;
    display: flex;
    gap: 5px;
}

.header-search-box+.checkbox-filter label {
    color: var(--color-white);
    font-size: 11px !important;
    line-height: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.menu-style-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.menu-style-2 ul li a {
    padding: 10px 15px;
}

.menu-style-2 ul li.static {
    position: static;
}

.menu-style-3 ul li a {
    padding: 15px 15px;
}


/*---- header style 2 start ----*/


/*---------- main menu style end ---------*/


/*---- header bottom style start ----*/

.header-bottom {
    background-color: var(--color-main-bg);
    display: flex;
}

.header-bottom.is-sticky>div>div.justify-content-center {
    justify-content: space-between !important;
}

.header-bottom:not(.is-sticky) .top-line {
    border-top: 1px solid var(--color-gray-alt2);
}

.header-bottom:not(.is-sticky) .bottom-line {
    border-bottom: 1px solid var(--color-gray-alt3);
}

.header-bottom:not(.is-sticky) .header-configure-area {
    display: none;
}


/*---------- header bottom style end ---------*/


/*------ sticky menu style start ------*/

.sticky.is-sticky {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 9;
    background-color: var(--color-white);
    -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
    -webkit-animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
    animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
}


/*------ sticky menu style end ------*/


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

.mobile-header {
    background-color: var(--color-gray);
}

.mobile-header .container {
    padding: 5px 10px;
}

.mobile-header .category-toggle {
    padding: 8px 15px;
}

.mobile-header .header-search-box {
    background-color: var(--color-white);
}

.mobile-header.is-sticky .header-search-box {
    border: 1px solid var(--color-gray);
}

.mobile-header-top {
    border-bottom: 1px solid var(--color-gray);
}

.mobile-header-top .header-top {
    float: none;
}

.mobile-logo {
    max-width: 140px;
    width: 100%;
}

.mobile-header .mobile-menu-toggler {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-header .mobile-menu-toggler .mini-cart-wrap {
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    position: relative;
    margin-left: 30px;
}

.mobile-header .mobile-menu-toggler .mini-cart-wrap a {
    color: var(--color-text);
}

.mobile-header .mobile-menu-toggler .mini-cart-wrap a:hover {
    color: var(--color-yellow);
}

.mobile-header .mobile-menu-toggler .mini-cart-wrap .notification {
    font-size: 13px;
    color: var(--color-white);
    width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
    right: -8px;
    top: 0;
    position: absolute;
    background-color: var(--color-yellow);
    transition: ease-in-out 0.3;
}

.mobile-header .filter-btn {
    font-size: 30px;
    line-height: 1px;
    padding: 5px 10px;
}

.mobile-header .filter-btn i {
    top: 0;
}

body .mobile-header.sticky.is-sticky .filter-btn,
body:not(.home) .mobile-header .filter-btn,
body.front-page .mobile-header .filter-btn {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.mobile-menu-btn .off-canvas-btn {
    font-size: 30px;
    line-height: 1px;
    cursor: pointer;
    color: var(--color-primary);
    fill: var(--color-primary);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

@media screen and (max-width: 767.98px) {
    .mobile-menu-btn .off-canvas-btn {
        color: var(--color-white);
        fill: var(--color-white);
    }
}

.mobile-navigation {
    max-height: 100%;
}

.mobile-navigation nav {
    height: 100%;
    padding: 15px;
    overflow-x: hidden;
    overflow-y: auto;
}

ul.mobile-menu.menu-categories li.active>a {
    color: var(--color-yellow);
}

.pro-qty-init {
    width: 90px;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 15px;
    float: left;
}

@media only screen and (max-width: 479.98px) {
    .pro-qty-init {
        width: 70px;
        height: 40px;
        border: 1px solid #ddd;
        padding: 0 5px;
        float: left;
    }
}

.pro-qty-init .qtybtnA {
    width: 15px;
    display: block;
    float: left;
    line-height: 38px;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text);
}

.pro-qty-init input {
    width: 28px;
    float: left;
    border: none;
    height: 40px;
    line-height: 34px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.mobile-menu li>a {
    font-size: 15px;
    color: var(--color-text);
    text-transform: capitalize;
    line-height: 18px;
    position: relative;
    display: inline-block;
    padding: 8px 0 4px;
}

.mobile-menu>li>a {
    font-weight: 600;
}

.mobile-menu li>a:hover {
    color: var(--color-yellow);
}

.mobile-menu li ul {
    display: block !important;
}

.mobile-menu li ul li {
    border: none;
}

.mobile-menu li ul li a {
    font-size: 14px;
    text-transform: capitalize;
    padding: 8px 15px 6px;
}

.mobile-menu li.menu-item-has-children {
    display: block;
    position: relative;
}

.mobile-menu li.menu-item-has-children .menu-expand {
    line-height: 50;
    top: -5px;
    left: 84%;
    width: 30px;
    position: absolute;
    height: 50px;
    text-align: center;
    cursor: pointer;
}

.mobile-menu li.menu-item-has-children .menu-expand i {
    display: block;
    position: relative;
    width: 10px;
    margin-top: 25px;
    border-bottom: 1px solid var(--color-text);
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.mobile-menu li.menu-item-has-children .menu-expand i:before {
    top: 0;
    width: 100%;
    content: "";
    display: block;
    position: absolute;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    border-bottom: 1px solid var(--color-text);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.mobile-menu li.menu-item-has-children.active>.menu-expand i:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}


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


/*------ offcanvas widget area start ------*/

.offcanvas-widget-area {
    margin-top: auto;
    padding-bottom: 30px;
}

@media only screen and (max-width: 479.98px) {
    .offcanvas-widget-area {
        padding-bottom: 0;
    }
}

.off-canvas-contact-widget li {
    color: var(--color-text);
    font-size: 15px;
    margin-bottom: 5px;
}

.off-canvas-contact-widget li i {
    width: 20px;
}

.off-canvas-contact-widget li a {
    color: var(--color-text);
}

.off-canvas-contact-widget li a:hover {
    color: var(--color-yellow);
}

.off-canvas-social-widget {
    margin-top: 20px;
}

.off-canvas-social-widget a {
    color: var(--color-text);
    font-size: 18px;
    display: inline-block;
    margin-right: 15px;
}

.off-canvas-social-widget a:hover {
    color: var(--color-yellow);
}


/*------ offcanvas widget area end ------*/

.off-canvas-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - calc(100vh - 100%));
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 9999;
}

.off-canvas-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.off-canvas-wrapper.open .off-canvas-inner-content {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.off-canvas-wrapper .off-canvas-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    content: '';
    cursor: var(--cancelPNG);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.off-canvas-wrapper .off-canvas-inner-content {
    background-color: var(--color-white);
    width: 300px;
    padding: 0;
    height: 100%;
    position: relative;
    -webkit-transform: translateX(calc(-100% - 50px));
    -ms-transform: translateX(calc(-100% - 50px));
    transform: translateX(calc(-100% - 50px));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

@media only screen and (max-width: 479.98px) {
    .off-canvas-wrapper .off-canvas-inner-content {
        width: 260px;
        padding: 0;
    }
}

.off-canvas-wrapper .btn-close-off-canvas {
    top: 0;
    left: 100%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: var(--color-white);
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: var(--color-lead-dark);
}

.off-canvas-wrapper .btn-close-off-canvas i {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block;
    line-height: 40px;
}

.off-canvas-wrapper .btn-close-off-canvas:hover i {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.off-canvas-wrapper .off-canvas-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    height: 100%;
}

.search-box-offcanvas form {
    position: relative;
}

.search-box-offcanvas form input {
    color: var(--color-text);
    font-size: 13px;
    width: 100%;
    height: 40px;
    border: none;
    padding: 0 40px 0 10px;
    background-color: var(--color-gray-light);
}

.search-box-offcanvas form .search-btn {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 42px;
    font-size: 20px;
    color: var(--color-text);
    position: absolute;
}

.search-box-offcanvas form .search-btn:hover {
    color: var(--color-yellow);
}


/*------- mobile top bar settings start -------*/

.mobile-settings {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--color-gray);
}

.mobile-settings li {
    margin-bottom: 5px;
}

.mobile-settings .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle {
    font-size: 14px;
    color: var(--color-text);
    cursor: pointer;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle:hover {
    color: var(--color-yellow);
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle:after {
    display: none;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-menu {
    padding: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-color: var(--color-gray);
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-menu .dropdown-item {
    font-size: 13px;
    color: var(--color-text);
    padding: 6px 15px;
}


/*------- mobile top bar settings end -------*/


/*-------- start section spacing --------*/

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

@media only screen and (max-width: 767.98px) {
    .section-space {
        /* padding-top: 62px; */
        /* padding-bottom: 62px; */
    }
}

.mb-30 {
    margin-bottom: 30px;
    padding-right: 20px;
}

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

.mb-20 {
    margin-bottom: 20px;
}

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

.mbn-30 {
    margin-bottom: -30px;
}


/*-------- end section spacing --------*/


/*------- Buttons Style here -------*/

.btn-hero {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 18px 36px;
    border-radius: 3px;
    display: inline-block;
    background-color: var(--color-text);
    text-transform: uppercase;
    border-radius: 50px;
}

@media only screen and (max-width: 767.98px) {
    .btn-hero {
        padding: 13px 25px;
    }
}

.btn-hero:hover {
    color: var(--color-white);
    background-color: var(--color-yellow);
}

.btn-read {
    color: var(--color-text);
    font-size: 14px;
    padding: 5px 20px;
    background-color: transparent;
    text-transform: capitalize;
    border-color: var(--color-text);
}

.btn-read:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}

.btn {
    min-width: 140px;
    padding: 12px 20px;
    border: 0;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 600 !important;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

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

.btn.btn-text-hover:hover {
    color: var(--color-yellow);
}

.btn.btn-primary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

.btn.btn-primary:not(:disabled):not(.disabled):hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: none !important;
}

.btn.btn-light {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.btn.btn-light i {
    color: var(--color-white);
    fill: var(--color-white);
}

.btn.btn-light:not(:disabled):not(.disabled):hover,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
    box-shadow: none !important;
}

.btn.btn-light:not(:disabled):not(.disabled):hover i,
.btn-light:not(:disabled):not(.disabled).active i,
.btn-light:not(:disabled):not(.disabled):active i {
    color: var(--color-primary);
    fill: var(--color-primary);
}

.btn.btn-green {
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
}

.btn.btn-green:not(:disabled):not(.disabled):hover,
.btn-green:not(:disabled):not(.disabled).active,
.btn-green:not(:disabled):not(.disabled):active {
    background-color: var(--color-green-dark);
    border-color: var(--color-green-dark);
    color: var(--color-white);
    box-shadow: none !important;
}

.btn.btn-yellow {
    background-color: var(--color-primary);
    border-color: var(--color-third);
    color: var(--color-white);
}

.btn.btn-yellow i {
    color: var(--color-white);
    fill: var(--color-white);
}

.btn.btn-yellow:not(:disabled):not(.disabled):hover,
.btn-yellow:not(:disabled):not(.disabled).active,
.btn-yellow:not(:disabled):not(.disabled):active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: none !important;
}

.btn.btn-yellow:not(:disabled):not(.disabled):hover i,
.btn-yellow:not(:disabled):not(.disabled).active i,
.btn-yellow:not(:disabled):not(.disabled):active i {
    color: var(--color-white);
    fill: var(--color-white);
}

.btn.btn-outline {
    border: 1px solid var(--color-secondary);
    background-color: var(--color-white);
    color: var(--color-secondary);
    padding-top: 9px;
    padding-bottom: 9px;
}

.btn.btn-outline:not(:disabled):not(.disabled):hover,
.btn-outline:not(:disabled):not(.disabled).active,
.btn-outline:not(:disabled):not(.disabled):active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: none !important;
}

.disabled .btn__bg {
    background-color: #90eab5;
    cursor: not-allowed !important;
}

.btn__bg {
    color: var(--color-primary);
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 600 !important;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    padding: 12px 20px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.btn__bg i {
    fill: var(--color-white) !important;
    stroke: var(--color-white) !important;
}

.add .addCar.btn__bg {
    background-color: var(--color-third) !important;
    border-color: var(--color-third) !important;
    font-size: 0px;
    cursor: default !important;
    color: var(--color-white);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.add .addCar.btn__bg i {
    fill: var(--color-white) !important;
    stroke: var(--color-white) !important;
}

.add.atualizar .addCar.btn__bg {
    background-color: var(--color-green) !important;
    border-color: var(--color-green) !important;
    color: var(--color-white);
    font-size: 0px;
    cursor: pointer !important;
}

.add.atualizar .addCar.btn__bg i {
    fill: var(--color-white) !important;
    stroke: var(--color-white) !important;
}

.btn__bg:hover {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.btn__bg:hover i {
    fill: var(--color-white) !important;
    stroke: var(--color-white) !important;
}

.disabled .btn__bg {
    background-color: #90eab5;
}

.btn-cart {
    font-size: 14px;
    padding: 9px 25px;
    border-radius: 40px;
    background-color: var(--color-white);
    text-transform: capitalize;
    -webkit-box-shadow: 1px 1px 1rem 0 rgba(0, 0, 0, 0.08);
    box-shadow: 1px 1px 1rem 0 rgba(0, 0, 0, 0.08);
}

.btn-cart:hover {
    color: var(--color-yellow);
}

.btn-cart2 {
    color: var(--color-white);
    font-size: 14px;
    padding: 9px 25px;
    background-color: var(--color-yellow);
    text-transform: capitalize;
}

.btn-cart2:hover {
    color: var(--color-white);
    background-color: var(--color-text);
}

.store-link {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    position: relative;
    text-transform: capitalize;
    margin-top: 15px;
    pointer-events: visible;
}

.store-link:hover {
    color: var(--color-yellow);
}

.store-link:after {
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    background-color: var(--color-yellow);
}


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

.hero-slider-item {
    height: 510px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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: 991.98px) {
    .hero-slider-item {
        height: 400px;
    }
}

@media only screen and (max-width: 767.98px) {
    .hero-slider-item {
        height: 370px;
    }
}

.hero-slider-item_2 {
    height: 100vh;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .hero-slider-item_2 {
        height: 400px;
    }
}

@media only screen and (max-width: 767.98px) {
    .hero-slider-item_2 {
        height: 370px;
    }
}

.hero-slider-content h4 {
    color: var(--color-text);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    padding-bottom: 5px;
    text-transform: capitalize;
}

.hero-slider-content h1,
.hero-slider-content h2 {
    color: var(--color-text);
    font-size: 60px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {

    .hero-slider-content h1,
    .hero-slider-content h2 {
        font-size: 45px;
    }
}

@media only screen and (max-width: 767.98px) {

    .hero-slider-content h1,
    .hero-slider-content h2 {
        font-size: 32px;
    }
}

.hero-slider-content p {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    padding-top: 20px;
    padding-bottom: 30px;
    text-transform: capitalize;
}

@media only screen and (max-width: 767.98px) {
    .hero-slider-content p {
        padding-top: 15px;
        padding-bottom: 0;
    }
}

.hero-slider-content .btn-hero,
.hero-slider-content .btn-outline {
    margin-top: 25px;
}

.hero-slider-content_2,
.hero-slider-content_3 {
    margin-top: 80px;
}

@media only screen and (max-width: 767.98px) {

    .hero-slider-content_2,
    .hero-slider-content_3 {
        margin-top: 50px;
    }
}

.hero-slider-content_2 h1,
.hero-slider-content_3 h1 {
    font-size: 70px;
    letter-spacing: -3px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 767.98px) {

    .hero-slider-content_2 h1,
    .hero-slider-content_3 h1 {
        font-size: 36px;
        letter-spacing: normal;
    }
}

@media only screen and (max-width: 575.98px) {

    .hero-slider-content_2 h1,
    .hero-slider-content_3 h1 {
        font-size: 24px;
    }
}

.hero-slider-content_2 h5,
.hero-slider-content_2 p,
.hero-slider-content_3 h5,
.hero-slider-content_3 p {
    font-size: 18px;
    font-weight: 300;
    color: var(--color-yellow);
    text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {

    .hero-slider-content_2 h5,
    .hero-slider-content_2 p,
    .hero-slider-content_3 h5,
    .hero-slider-content_3 p {
        font-size: 16px;
    }
}

.hero-slider-content_2 p,
.hero-slider-content_3 p {
    color: var(--color-text);
}

.hero-slider-content_3 {
    margin-top: 0;
    padding: 0 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .hero-slider-content_3 {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 767.98px) {
    .hero-slider-content_3 {
        padding: 0 100px 0 30px;
    }
}

@media only screen and (max-width: 479.98px) {
    .hero-slider-content_3 {
        padding: 0 15px;
    }
}

.hero-slider-content_3 h1 {
    font-size: 60px;
}

@media only screen and (max-width: 767.98px) {
    .hero-slider-content_3 h1 {
        font-size: 36px;
        letter-spacing: normal;
    }
}

@media only screen and (max-width: 575.98px) {
    .hero-slider-content_3 h1 {
        font-size: 28px;
    }
}

.hero-slider-content_3 p {
    font-size: 16px;
}


/*------ hero slider for home 4 end ------*/

.slick-active .hero-slider-content.slide-1 h1 {
    -webkit-animation: bounceIn 2s linear alternate;
    animation: bounceIn 2s linear alternate;
}

.slick-active .hero-slider-content.slide-1 h2 {
    -webkit-animation: bounceIn 2s linear alternate;
    animation: bounceIn 2s linear alternate;
}

.slick-active .hero-slider-content.slide-1 h4 {
    -webkit-animation: zoomIn 1s linear alternate;
    animation: zoomIn 1s linear alternate;
}

.slick-active .hero-slider-content.slide-1 h5 {
    -webkit-animation: zoomIn 1s linear alternate;
    animation: zoomIn 1s linear alternate;
}

.slick-active .hero-slider-content.slide-1 p {
    -webkit-animation: fadeInRight 1.5s linear alternate;
    animation: fadeInRight 1.5s linear alternate;
}

.slick-active .hero-slider-content.slide-1 a {
    -webkit-animation: slideInUp 0.5s linear alternate;
    animation: slideInUp 0.5s linear alternate;
}

.slick-active .hero-slider-content.slide-2 h1 {
    -webkit-animation: rotateInDownLeft 2s linear alternate;
    animation: rotateInDownLeft 2s linear alternate;
}

.slick-active .hero-slider-content.slide-2 h2 {
    -webkit-animation: fadeInRight 1.5s linear alternate;
    animation: fadeInRight 1.5s linear alternate;
}

.slick-active .hero-slider-content.slide-2 h4 {
    -webkit-animation: fadeInLeft 1s linear alternate;
    animation: fadeInLeft 1s linear alternate;
}

.slick-active .hero-slider-content.slide-2 h5 {
    -webkit-animation: zoomIn 1s linear alternate;
    animation: zoomIn 1s linear alternate;
}

.slick-active .hero-slider-content.slide-2 p {
    -webkit-animation: fadeInRight 1.5s linear alternate;
    animation: fadeInRight 1.5s linear alternate;
}

.slick-active .hero-slider-content.slide-2 a {
    -webkit-animation: slideInUp 0.5s linear alternate;
    animation: slideInUp 0.5s linear alternate;
}

.slick-active .hero-slider-content.slide-3 h1 {
    -webkit-animation: fadeInLeft 800ms linear alternate;
    animation: fadeInLeft 800ms linear alternate;
}

.slick-active .hero-slider-content.slide-3 h2 {
    -webkit-animation: fadeInUp 1000ms linear alternate;
    animation: fadeInUp 1000ms linear alternate;
}

.slick-active .hero-slider-content.slide-3 h4 {
    -webkit-animation: fadeInRight 600ms linear alternate;
    animation: fadeInRight 600ms linear alternate;
}

.slick-active .hero-slider-content.slide-3 h5 {
    -webkit-animation: zoomIn 1s linear alternate;
    animation: zoomIn 1s linear alternate;
}

.slick-active .hero-slider-content.slide-3 p {
    -webkit-animation: fadeInRight 1.5s linear alternate;
    animation: fadeInRight 1.5s linear alternate;
}

.slick-active .hero-slider-content.slide-3 a {
    -webkit-animation: fadeInUp 1400ms linear alternate;
    animation: fadeInUp 1400ms linear alternate;
}

.offcanvas-search-inner {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
}

.offcanvas-search-inner.show {
    opacity: 1;
    visibility: visible;
}

.offcanvas-search-inner.show .offcanvas-search-box {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.offcanvas-search-inner .offcanvas-close {
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: var(--color-white);
    color: var(--color-yellow);
    font-size: 22px;
    cursor: pointer;
    top: 50px;
    right: 50px;
    position: absolute;
    z-index: 9;
}

.offcanvas-search-inner .offcanvas-close i {
    display: block;
    line-height: 50px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.offcanvas-search-inner .offcanvas-close:hover i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.offcanvas-search-box {
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.offcanvas-search-box .bdr-bottom {
    border-color: var(--color-yellow);
}

.offcanvas-search-box input {
    width: 100%;
    border: none;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    padding-right: 20px;
    padding-bottom: 15px;
    background-color: transparent;
}

.offcanvas-search-box input::-webkit-input-placeholder {
    color: var(--color-white);
    font-size: 16px;
    opacity: 1;
}

.offcanvas-search-box input::-moz-placeholder {
    color: var(--color-white);
    font-size: 16px;
    opacity: 1;
}

.offcanvas-search-box input:-ms-input-placeholder {
    color: var(--color-white);
    font-size: 16px;
    opacity: 1;
}

.offcanvas-search-box input::-ms-input-placeholder {
    color: var(--color-white);
    font-size: 16px;
    opacity: 1;
}

.offcanvas-search-box input::placeholder {
    color: var(--color-white);
    font-size: 16px;
    opacity: 1;
}

.offcanvas-search-box .search-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: var(--color-white);
    line-height: 1;
    padding-bottom: 15px;
    text-transform: capitalize;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.offcanvas-search-box .search-btn i {
    display: block;
    line-height: 1;
    font-size: 28px;
    padding-right: 15px;
}

.offcanvas-search-box .search-btn:hover {
    color: var(--color-yellow);
}


/*-------- off canvas mini cart start --------*/

.minicart-inner {
    top: 0;
    left: 0;
    position: fixed;
    width: 100vw;
    height: calc(100vh - calc(100vh - 100%));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
}

.minicart-inner .offcanvas-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(97, 109, 123, 0.54);
}

.minicart-inner.show {
    opacity: 1;
    visibility: visible;
}

.minicart-inner.show .minicart-inner-content {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.minicart-inner .minicart-close {
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: var(--color-lead-dark);
    color: var(--color-white);
    font-size: 25px;
    cursor: pointer;
    top: 0;
    right: 375px;
    position: absolute;
}

@media only screen and (max-width: 767.98px) {
    .minicart-inner .minicart-close {
        right: 375px;
    }
}

@media only screen and (max-width: 575.98px) {
    .minicart-inner .minicart-close {
        right: 306px;
    }

    .header-main-area i.logo {
        display: none;
    }

    .header-main-area i.logo-mobile {
        display: block !important;
    }
}

@media only screen and (max-width: 480px) {
    .header-main-area {
        min-height: 72px;
    }

    .header-main-area .logo {
        width: 140px !important;
    }

    .minicart-inner .minicart-close {
        right: 266px;
    }
}

.minicart-inner .minicart-close i {
    display: block;
    line-height: 50px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.minicart-inner .minicart-close:hover i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.minicart-inner .minicart-inner-content {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 375px;
    position: absolute;
    background-color: var(--color-white);
    -webkit-transform: translateX(calc(100% + 50px));
    -ms-transform: translateX(calc(100% + 50px));
    transform: translateX(calc(100% + 50px));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 10px 15px 15px;
}

.minicart-content-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media only screen and (max-width: 575.98px) {
    .minicart-inner .minicart-inner-content {
        max-width: 306px;
    }
}

@media only screen and (max-width: 480px) {
    .minicart-inner .minicart-inner-content {
        max-width: 266px;
    }

    .minicart-content-box h2 {
        font-size: 22px !important;
    }
}

.minicart-content-box h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-lead);
}

.empty-cart .minicart-content-box h2,
.empty-cart .minicart-content-box div {
    display: none !important;
}

::-webkit-scrollbar-track {
    background-color: #e8e8e8;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: #e8e8e8;
}

::-webkit-scrollbar-thumb {
    background: var(--color-lead);
}

.minicart-item-wrapper {
    overflow-y: auto;
    height: 100%;
    padding-right: 10px;
    margin-right: -10px;
}

.minicart-item-wrapper ul li {
    padding-bottom: 10px;
    padding-right: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--color-gray);
}

.minicart-item-wrapper ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.minicart-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.minicart-thumb {
    max-width: 85px;
    -webkit-flex-basis: 85px;
    -ms-flex-preferred-size: 85px;
    flex-basis: 85px;
}

.minicart-content {
    padding: 0 10px;
    max-width: calc(100% - 115px);
    -webkit-flex-basis: calc(100% - 115px);
    -ms-flex-preferred-size: calc(100% - 115px);
    flex-basis: calc(100% - 115px);
}

.minicart-content .product-name {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.minicart-content .product-name a {
    color: var(--color-lead-light);
}

.minicart-content .product-name a:hover {
    color: var(--color-yellow);
}

.minicart-content .cart-quantity {
    font-size: 12px;
    color: var(--color-text);
    line-height: 1;
}

.minicart-content .cart-quantity strong {
    font-size: 16px;
    font-weight: 400;
    vertical-align: text-bottom;
}

.minicart-content .cart-price {
    color: var(--color-yellow);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.minicart-remove {
    max-width: 30px;
    -webkit-flex-basis: 30px;
    -ms-flex-preferred-size: 30px;
    flex-basis: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    color: var(--color-text);
}

.minicart-remove:hover {
    color: var(--color-yellow);
}

.minicart-pricing-box {
    border-bottom: 1px solid var(--color-gray);
    margin-bottom: 10px;
}

.minicart-pricing-box li {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.minicart-pricing-box li span {
    font-size: 14px;
    color: var(--color-text);
    text-transform: capitalize;
}

.minicart-pricing-box li span strong {
    color: var(--color-yellow);
    font-weight: 500;
}

.minicart-pricing-box li.total span {
    font-size: 16px;
    font-weight: 500;
}

.minicart-pricing-box li:last-child {
    margin-bottom: 0;
}

.minicart-button a {
    color: var(--color-lead-dark);
    font-size: 15px;
    display: block;
    font-weight: 500;
    padding: 10px 15px;
    background-color: var(--color-white);
    text-transform: uppercase;
    border-radius: 2px;
    text-align: center;
    margin-bottom: 10px;
    border: 2px solid var(--color-lead-dark);
    cursor: pointer;
}

.minicart-button a i {
    padding-right: 5px;
    fill: var(--color-lead-dark);
}

.minicart-button a:hover {
    background-color: var(--color-lead-light);
    border-color: var(--color-lead-light);
    color: var(--color-yellow);
}

.minicart-button a:hover i {
    fill: var(--color-yellow);
}

.minicart-button a:last-child {
    margin-bottom: 0;
}

.minicart-button a.goToCheckout {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-white);
}

.minicart-button a.goToCheckout:hover {
    background-color: var(--color-lead-light);
    border-color: var(--color-lead-light);
    color: var(--color-yellow);
}

.minicart-clear {
    font-size: 12px;
    border-top: 1px solid var(--color-gray);
    padding-top: 10px;
    margin-bottom: 10px;
}

body.noPrice .minicart-clear {
    justify-content: end;
}


/*-------- off canvas mini cart end --------*/


/*------ top store style start ------*/

.banner-item {
    position: relative;
}

.banner-item:hover .banner-thumb img {
    opacity: 0.7;
}

.banner-thumb img {
    width: 100%;
}

.banner-content {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 45px;
    position: absolute;
    pointer-events: none;
}


/* ---- datepicker ---- */

.datepicker table tr td.day:not(.disabled):hover,
.datepicker table tr td span:not(.disabled):hover,
.datepicker table tr td.day:not(.disabled).focused,
.datepicker table tr td span:not(.disabled).focused {
    background: var(--color-yellow) !important;
}

.datepicker table tr td.day.active,
.datepicker table tr td.day.active:hover,
.datepicker table tr td.day.active.disabled,
.datepicker table tr td.day.active.disabled:hover,
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
    background: var(--color-black) !important;
    text-shadow: none !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .banner-content {
        padding: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .banner-content {
        padding: 20px;
    }
}

@media only screen and (max-width: 767.98px) {
    .banner-content {
        padding: 30px;
    }
}

@media only screen and (max-width: 575.98px) {
    .banner-content-style_2 {
        padding: 20px;
    }
}

.banner-content .text1 {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 400;
    line-height: 1;
    padding-bottom: 10px;
    text-transform: capitalize;
}

.banner-content .text2 {
    color: var(--color-text);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .banner-content .text2 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767.98px) {
    .banner-content .text2 {
        font-size: 20px;
    }
}

.banner-content .text3 {
    color: var(--color-text);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .banner-content .text3 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767.98px) {
    .banner-content .text3 {
        font-size: 20px;
    }
}


/*------ top store style end ------*/

.banner-item-height {
    height: 250px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .banner-item-height {
        height: 200px;
    }
}

@media only screen and (max-width: 767.98px) {
    .banner-item-height {
        height: 150px;
    }
}

.banner-content--2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    height: 100%;
}

.banner-content--2 h2 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    text-transform: capitalize;
}

@media only screen and (max-width: 767.98px) {
    .banner-content--2 h2 {
        font-size: 25px;
    }
}

@media only screen and (max-width: 575.98px) {
    .banner-content--2 h2 {
        font-size: 20px;
    }
}


/*------- static middle store1 start -------*/


/*------- service features start -------*/

.service-policy-item {
    text-align: center;
}

.service-policy-item .icons {
    min-height: 36px;
}

.service-policy-item h5 {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding-top: 15px;
    padding-bottom: 2px;
    text-transform: capitalize;
}

.service-policy-item p {
    color: var(--color-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
}

.service-policy-area [class*="col-"] {
    border-right: 1px solid var(--color-gray);
}

@media only screen and (max-width: 767.98px) {
    .service-policy-area [class*="col-"] {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 575.98px) {
    .service-policy-area [class*="col-"] {
        border-right: none;
    }
}

.service-policy-area [class*="col-"]:last-child {
    border-right: none;
    margin-bottom: 0;
}

@media only screen and (max-width: 767.98px) {
    .service-policy-area [class*="col-"]:nth-child(2) {
        border-right: none;
    }
}

@media only screen and (max-width: 767.98px) {
    .service-policy-area [class*="col-"]:nth-child(3) {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 575.98px) {
    .service-policy-area [class*="col-"]:nth-child(3) {
        margin-bottom: 30px;
    }
}


/*------- service features end -------*/


/*---------- section title start ----------*/

.section-title {
    margin-top: -8px;
    margin-bottom: 38px;
    padding: 0 30px;
}

@media only screen and (max-width: 479.98px) {
    .section-title {
        padding: 0 10px;
    }
}

.section-title h2 {
    font-size: 30px;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.2;
    text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {
    .section-title h2 {
        font-size: 22px;
    }
}

.section-title p {
    color: #707070;
    font-size: 14px;
    line-height: 1.3;
    padding-top: 10px;
}

.section-title-append {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin-top: -5px;
    margin-bottom: 34px;
}

.section-title-append:after {
    top: 50%;
    right: 0;
    width: 100%;
    height: 1px;
    content: "";
    position: absolute;
    background-color: var(--color-gray);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.section-title-append h3 {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-text);
    text-transform: capitalize;
    background-color: var(--color-white);
    position: relative;
    z-index: 2;
    padding-right: 10px;
}


/*---------- section title end ----------*/


/*--------- product tab menu start ---------*/

.tab-menu {
    margin-top: -8px;
    margin-bottom: 34px;
}

.tab-menu li {
    margin-right: 30px;
}

.tab-menu li:last-child {
    margin-right: 0;
}

.tab-menu li a {
    color: var(--color-text);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.tab-menu li a:hover {
    color: var(--color-yellow);
}

.tab-menu li a:before {
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    background-color: var(--color-yellow);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.tab-menu li a.active {
    color: var(--color-yellow);
}

.tab-menu li a.active:before {
    opacity: 1;
    visibility: visible;
}

/*--------- product subcategories start ---------*/

.products-subcats {
    margin-bottom: 20px;
}

.products-subcats h2 {
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 5px;
    border-radius: 2px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background-color: var(--color-white);
    padding: 12px 15px;
}

.products-subcats ul {
    padding: 12px 15px;
}

.products-subcats ul li.current a {
    color: var(--color-primary);
}

.products-subcats ul li a {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.products-subcats ul li a:hover {
    color: var(--color-primary);
}

.products-subcats ul li a:before {
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    background-color: var(--color-yellow);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.products-subcats ul li a.active {
    color: var(--color-yellow);
}

.products-subcats ul li a.active:before {
    opacity: 1;
    visibility: visible;
}

.products-subcats-select {
    margin-left: -8px;
    margin-right: -8px;
    margin-top: -15px !important;
}

.products-subcats-select select {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    color: var(--color-text);
    border-radius: 2px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMC40OTgiIGhlaWdodD0iNiI+PHBhdGggZD0iTTUuMjUyIDQuMTkxIDkuMjIxLjIxOWEuNzUuNzUgMCAxIDEgMS4wNTkgMS4wNjJsLTQuNSA0LjVhLjc1Ljc1IDAgMCAxLTEuMDM0LjAyMkwuMjIxIDEuMjg1QS43NS43NSAwIDEgMSAxLjI4LjIyM1oiIGZpbGw9InJnYmEoODIsODIsODIsMC45KSIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none !important;
    text-transform: uppercase;
}

/*--------- product subcategories end ---------*/

/*--------- product filters end ---------*/

.product-filters {
    display: none;
    padding-bottom: 15px;
}

.list-filters {
    display: none;
}

.list-filters::before {
    font-weight: 500;
}

.list-filters.active {
    display: block;
}

.list-filters span {
    display: inline-block;
}

.list-filters span i {
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    padding: 5px;
    margin-left: -5px;
}

.list-filters span i:hover {
    color: var(--color-yellow);
}

.product-filters h2 {
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 5px;
    border-radius: 2px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.product-filters h3 {
    color: var(--color-black);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-left: 14px;
    background: transparent url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMy45OTIgOCI+PHBhdGggZGF0YS1uYW1lPSJpYy1hcnJvdy1kb3duIiBkPSJNNi45OTggNS41ODkgMTIuMjg5LjI5NGExIDEgMCAwIDEgMS40MTIgMCAxLjAwOCAxLjAwOCAwIDAgMSAwIDEuNDE2bC01Ljk5NSA2YTEgMSAwIDAgMS0xLjM3OS4wMjlMLjI5MSAxLjcxNUExIDEgMCAwIDEgMS43MDMuMjk5WiIgZmlsbD0iIzUyNTI1MiIvPjwvc3ZnPg==') no-repeat 0 6px;
    background-size: 8px;
}

.product-filters ul {
    overflow-x: auto;
    max-height: 290px;
    padding: 5px 8px;
    background: #ffffff;
}

.product-filters ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    padding: 4px 0;
    transition: 0.2s all;
}

.product-filters ul li.selected {
    font-weight: 700;
    text-decoration: underline;
}

.product-filters ul li input[type="checkbox"] {
    margin-bottom: 4px;
}

.product-filters ul li label {
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    flex: 1;
    align-items: center;
    gap: 5px;
    line-height: 1.3em;
    font-size: 14px;
}

.product-filters ul li label:hover {
    text-decoration: underline;
}

.product-filters .filter-color ul {
    max-height: 420px;
}

.product-filters .filter-color ul li input[type="checkbox"] {
    display: none;
}

.product-filters .filter-color ul li i {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-bottom: 4px;
    background-color: var(--color-black);
    border: 1px solid var(--color-gray);
}

.product-filters .filter-apply,
.product-filters .filter-clear {
    display: none;
}

.product-filters .filter-apply.show,
.product-filters .filter-clear.show {
    display: inline-block;
}

.product-filters .btn {
    padding: 5px 10px 3px;
    min-width: auto;
    font-size: 12px;
}

.product-filters .filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 0;
    padding: 0.25rem 0;
    cursor: pointer;
    text-align: left;
    color: var(--color-black);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 10px;
    padding-left: 4px;
    outline: none;
    background: transparent;
}
    
.product-filters .filter-caret {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background: transparent url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMy45OTIgOCI+PHBhdGggZGF0YS1uYW1lPSJpYy1hcnJvdy1kb3duIiBkPSJNNi45OTggNS41ODkgMTIuMjg5LjI5NGExIDEgMCAwIDEgMS40MTIgMCAxLjAwOCAxLjAwOCAwIDAgMSAwIDEuNDE2bC01Ljk5NSA2YTEgMSAwIDAgMS0xLjM3OS4wMjlMLjI5MSAxLjcxNUExIDEgMCAwIDEgMS43MDMuMjk5WiIgZmlsbD0iIzUyNTI1MiIvPjwvc3ZnPg==') no-repeat center center;
    background-size: 8px;
    transition: transform .15s ease;
}
.product-filters .filter-group.open .filter-caret { transform: rotate(180deg); }
/* Use hidden attribute for default hiding */
.product-filters .filter-list[hidden] { display: none; }
.product-filters .filter-list { margin: 0 0 0 0; padding-left: 1rem; }

@media only screen and (min-width: 992px) {
    .product-filters {
        margin-top: 0;
        margin-bottom: 0;
        display: block !important;
        position: relative !important;
    }

    .product-filters h2 {
        padding: 12px 15px;
        background-color: #ffffff;
        border-radius: 2px;
    }

    .product-filters .btn {
        width: 100%;
    }
}


/*--------- product tab menu end ---------*/


/*------- product item start -------*/

.product-item {
    overflow: hidden;
    margin-bottom: 10px;
    height: 100%;
    position: relative;
}

.product-item:hover .product-thumb .sec-img,
.product-list-item:hover .product-thumb .sec-img {
    opacity: 1;
    visibility: visible;
}

.product-item:hover .product-thumb .pri-img,
.product-list-item:hover .product-thumb .pri-img {
    opacity: 0;
    visibility: hidden;
}

.product-item:hover .button-group a,
.product-list-item:hover .button-group a {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.product-item:hover .box-cart,
.product-list-item:hover .box-cart {
    bottom: 15px;
    opacity: 1;
    visibility: visible;
}

.product-thumb {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.product-thumb img {
    width: 100%;
    top: 60%;
    left: 0;
    transform: translateY(-60%);
    position: absolute;
}

.add .product-thumb,
.add .product-name,
.add .price-box .price-regular {
    opacity: 0.3
}

.product-thumb .sec-img {
    opacity: 0;
    visibility: hidden;
}

.product-item-header {
    position: relative;
    padding: 0 10px 10px;
    margin-bottom: 12px;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    transition: all 0.3s ease-in-out;
}

.product-item-header:hover {
    box-shadow: 0px 4px 10px #eaecf0;
}

.product-item-header .badge-complete-line {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    color: var(--color-secondary);
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 5px 8px;
    z-index: 2;
    pointer-events: none;
}

.product-item-header .product-item-addcart {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.product-item-header .product-item-addcart a.btn {
    width: 100%;
}

.product-item-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-item-actions .btn {
    width: 100%;
    min-width: 0;
    padding: 10px 15px;
    letter-spacing: 0.1em;
    justify-content: center;
    font-size: 12px;
}

.product-item-actions .addCar.btn__bg::after {
    letter-spacing: 0.1em !important;
}

.product-item-actions .pro-qty-init {
    display: flex;
    align-items: center;
    padding-left: 5px;
    padding-right: 5px;
    justify-content: space-between;
    width: auto;
    height: 37px;
    border-radius: 2px;
    background-color: var(--color-gray-alt2);
}

.product-item-actions .pro-qty-init .qtybtnA {
    float: none;
}

.product-item-actions .pro-qty-init .qtybtnA:last-child {
    font-size: 20px;
}

@media screen and (min-width: 767.99px) {
    .product-item-header .product-item-addcart {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
    }

    .product-item:hover .product-item-addcart {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.product-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 10px;
}

.product-item-footer .product-item-name {
    line-height: 1.2em;
}

.product-item-footer .product-item-name a {
    font-size: 12px;
    line-height: 1.2em;
    color: #000000;
    text-transform: uppercase;
}

.product-item-footer .product-item-name a:hover {
    color: var(--color-primary);
}

.product-item-footer .product-item-price {
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2em;
    color: #000000;
}

@media screen and (max-width: 767.98px) {
    .product-item-header {
        padding: 0 10px 10px;
    }

    .product-item-header .btn__bg {
        padding: 10px;
        letter-spacing: 0.1em;
    }

    .product-item-footer {
        gap: 10px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .product-item-actions {
        flex-direction: column-reverse;
    }

    .product-item-actions .pro-qty-init {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.product-caption {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-caption .product-name {
    padding: 0;
    margin: 0;
    flex: 1;
    text-align: center;
}

.product-caption .product-name a {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.4;
}

.product-caption .product-name a:hover {
    color: var(--color-yellow);
    text-decoration: underline;
}

.product-caption .product-color-info {
    max-width: 360px;
    font-style: italic;
    font-size: 0.9em;
    line-height: 1.3em;
}

.product-identity {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.manufacturer-name {
    line-height: 1;
}

.manufacturer-name a {
    font-size: 13px;
    line-height: 1;
    color: var(--color-text);
    text-transform: capitalize;
}

.manufacturer-name a:hover {
    color: var(--color-yellow);
}

.color-categories {
    padding: 5px 0 8px;
    line-height: 1;
}

.color-categories li {
    display: inline-block;
    margin-right: 5px;
    padding: 1px;
    border: 1px solid var(--color-gray);
}

.color-categories li i {
    height: 15px;
    width: 15px;
    display: block;
    cursor: pointer;
    border: 1px solid var(--color-black)
}

.tamanho-categories {
    padding: 5px 0 8px;
    line-height: 1;
}

.tamanho-categories li {
    display: inline-block;
    margin-right: 5px;
    padding: 1px;
    border: 1px solid var(--color-gray);
}

.tamanho-categories li i {
    height: 25px;
    width: 25px;
    display: block;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 3px 5px 3px;
    background-color: #FFFAFA;
    color: var(--color-black)
}

.c-lightblue {
    background-color: #b0c4de;
}

.c-darktan {
    background-color: #aa9e78;
}

.c-grey {
    background-color: #808080;
}

.c-brown {
    background-color: #964B00;
}

.button-group {
    right: 15px;
    top: 15px;
    position: absolute;
}

.button-group a {
    width: 38px;
    height: 38px;
    display: block;
    font-size: 18px;
    line-height: 42px;
    color: var(--color-text);
    text-align: center;
    border-radius: 50%;
    margin-bottom: 10px;
    background-color: var(--color-white);
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.button-group a span {
    display: block;
}

.button-group a:hover {
    color: var(--color-yellow);
}

.box-cart {
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3px 0px 7px 0px;
}

.product-label {
    background: var(--color-yellow);
    border-radius: 2px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 400;
    left: 20px;
    line-height: 22px;
    min-width: 46px;
    padding: 0 10px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    z-index: 3;
}

.product-label.discount {
    background-color: var(--color-text);
}

.product-label:nth-child(1) {
    top: 20px;
}

.product-label:nth-child(2) {
    top: 50px;
}

.ratings {
    color: #f9bd22;
    font-size: 14px;
}

.price-box {
    line-height: 1;
}

.price-regular {
    font-size: 25px;
    line-height: 1;
    color: var(--color-text);
    font-weight: 500;
}

.price-regular span {
    font-size: 12px;
}

.price-old {
    font-size: 15px;
    color: var(--color-text);
    padding-left: 5px;
}


/*------- product item end -------*/


/*-------- product list item start --------*/

.product-list-item {
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid var(--color-gray);
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px),
only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .product-list-item {
        padding: 20px;
    }
}

@media only screen and (max-width: 767.98px) {
    .product-list-item {
        display: block !important;
    }
}

.product-list-item .product-thumb {
    max-width: 30%;
    -webkit-flex-basis: 30%;
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    height: 100%;
}

@media only screen and (max-width: 767.98px) {
    .product-list-item .product-thumb {
        max-width: 100%;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.product-content-list {
    padding-left: 20px;
    max-width: calc(100% - 30%);
    -webkit-flex-basis: calc(100% - 30%);
    -ms-flex-preferred-size: calc(100% - 30%);
    flex-basis: calc(100% - 30%);
}

@media only screen and (max-width: 767.98px) {
    .product-content-list {
        padding-left: 0;
        max-width: 100%;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-top: 30px;
    }
}

.product-content-list .manufacturer-name {
    padding-bottom: 10px;
}

.product-content-list .ratings {
    padding-bottom: 10px;
}

.product-content-list .product-name {
    padding-bottom: 5px;
}

.product-content-list .product-name a {
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
}

.product-content-list .product-name a:hover {
    color: var(--color-yellow);
}

.product-content-list .price-box {
    padding-bottom: 15px;
}


/*-------- product list item end --------*/


/*------ group list item start ------*/

.group-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.group-item-thumb {
    max-width: 100px;
    -webkit-flex-basis: 100px;
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
}

.group-item-desc {
    position: relative;
    padding-left: 20px;
    max-width: calc(100% - 100px);
    -webkit-flex-basis: calc(100% - 100px);
    -ms-flex-preferred-size: calc(100% - 100px);
    flex-basis: calc(100% - 100px);
}

.group-item-desc .group-product-name {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    text-transform: capitalize;
    padding-bottom: 18px;
}

.group-item-desc .group-product-name a {
    color: var(--color-text);
}

.group-item-desc .group-product-name a:hover {
    color: var(--color-yellow);
    text-decoration: underline;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .categories-group-wrapper {
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 767.98px) {
    .categories-group-wrapper {
        margin-bottom: 63px;
    }
}

.row [class*="col-"]:last-child .categories-group-wrapper {
    margin-bottom: 0;
}


/*------ group list item end ------*/


/*------ Instagram Feed Area Start ------*/

.instagram-item {
    position: relative;
    z-index: 1;
}

.instagram-item:before {
    background-color: rgba(0, 0, 0, 0.4);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 100%;
    width: 100%;
}

.instagram-item:hover:before {
    opacity: 1;
    visibility: visible;
}


/*------ Instagram Feed Area End ------*/


/*----- breadcrumb style css start -----*/

.breadcrumb-wrap {
    margin-top: -30px;
    margin-bottom: 40px;
}

.breadcrumb-wrap .breadcrumb {
    align-items: center;
    background: transparent;
    padding: 0;
}

.breadcrumb-wrap .breadcrumb i {
    width: 12px;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a {
    color: #777777;
    fill: #777777;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a:hover {
    color: var(--color-primary);
    fill: var(--color-primary);
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item:last-child a {
    font-weight: 700;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item:before {
    color: var(--color-primary);
    content: ">";
    font-size: 14px;
    margin: 0;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item:first-child::before {
    display: none;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
    color: var(--color-yellow);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

@media only screen and (max-width: 767.98px) {
    .breadcrumb-wrap .breadcrumb {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}


/*----- breadcrumb style css end -----*/


/*----- shop Sidebar start -----*/

.sidebar-wrapper .sidebar-single:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .sidebar-wrapper {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767.98px) {
    .sidebar-wrapper {
        margin-top: 62px;
    }
}

.sidebar-single {
    margin-bottom: 30px;
}

.sidebar-single .sidebar-title {
    position: relative;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    margin-top: -3px;
    padding-bottom: 20px;
    text-transform: capitalize;
}


/*------ pricing filter slider start ------*/

.price-range-wrap {
    padding-top: 8px;
}

.price-range-wrap .price-range {
    border-radius: 0;
    margin-right: 13px;
    margin-bottom: 20px;
}

.price-range-wrap .price-range.ui-widget-content {
    border: none;
    background: #eeeeee;
    height: 6px;
    border-radius: 20px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-range {
    background-color: var(--color-yellow);
    border-radius: 0;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
    border: none;
    background-color: var(--color-white);
    height: 12px;
    width: 12px;
    outline: none;
    cursor: ew-resize;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle:before {
    top: 50%;
    left: 50%;
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    background-color: var(--color-yellow);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.price-range-wrap .range-slider {
    color: var(--color-text);
    margin-top: 30px;
}

.price-range-wrap .range-slider .price-input label {
    color: var(--color-text);
    margin-bottom: 0;
}

.price-range-wrap .range-slider .price-input input {
    color: var(--color-text);
    border: none;
    outline: none;
    max-width: 80px;
    pointer-events: none;
}

.price-range-wrap .range-slider button.filter-btn {
    border: none;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    text-transform: uppercase;
    padding: 4px 15px;
    border-radius: 3px;
    background-color: var(--color-gray);
}

.price-range-wrap .range-slider button.filter-btn:hover {
    color: var(--color-white);
    background-color: var(--color-yellow);
}


/*------ pricing filter slider end ------*/

.categories-list li {
    color: var(--color-text);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.categories-list li:hover {
    color: var(--color-yellow);
}


/*------ shop categories area start ------*/

.shop-categories {
    margin-top: -4px;
}

.shop-categories li a {
    color: var(--color-text);
    display: block;
    padding: 6px 0;
    text-transform: capitalize;
}

.shop-categories li a span {
    float: right;
    width: 30px;
    height: 30px;
    font-size: 13px;
    line-height: 30px;
    text-align: center;
    margin-top: -3px;
    background-color: #f2f2f2;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.shop-categories li:first-child a {
    padding-top: 0;
}

.shop-categories li:last-child a {
    padding-bottom: 0;
}

.shop-categories li:hover a {
    color: var(--color-yellow);
}

.shop-categories li:hover a span {
    color: var(--color-white);
    background-color: var(--color-yellow);
}


/*------ shop categories area end ------*/


/*----- shop Sidebar end -----*/


/*------ pagination area style start ------*/

.paginatoin-area {
    margin-top: 30px;
    padding: 20px;
}

.paginatoin-area .pagination-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.paginatoin-area .pagination-box li {
    margin-right: 5px;
    display: inline-block;
}

.paginatoin-area .pagination-box li:last-child {
    margin-right: 0;
}

.paginatoin-area .pagination-box li a {
    color: var(--color-text);
    height: 36px;
    width: 36px;
    font-size: 14px;
    display: inline-block;
    padding: 0 10px;
    text-align: center;
    line-height: 36px;
    background-color: var(--color-white);
}

.paginatoin-area .pagination-box li a i {
    font-size: 12px;
    line-height: 36px;
}

.paginatoin-area .pagination-box li a:hover {
    color: var(--color-text);
    border-color: #f7c362;
    background-color: var(--color-yellow);
}

.paginatoin-area .pagination-box li.active a {
    color: var(--color-text);
    background-color: var(--color-yellow);
    pointer-events: none;
    cursor: default;
}


/*------ pagination area style end ------*/


/*------- blog item start -------*/

.blog-post-item:hover .blog-thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-thumb {
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
}

.blog-content {
    padding-top: 15px;
}

.blog-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

@media only screen and (max-width: 767.98px) {
    .blog-title {
        font-size: 16px;
    }
}

.blog-title-large {
    font-size: 20px;
}

@media only screen and (max-width: 767.98px) {
    .blog-title-large {
        font-size: 18px;
    }
}

.blog-title a {
    color: var(--color-text);
    display: block;
}

.blog-title a:hover {
    color: var(--color-yellow);
}

.blog-meta p {
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    color: #777;
    padding-top: 15px;
}


/*------- blog item end -------*/


/*------- blog list wrapper start -------*/

.blog-list-inner .blog-post-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 767.98px) {
    .blog-list-inner .blog-post-item {
        display: block;
    }
}

.blog-list-inner .blog-post-item .blog-thumb {
    max-width: 40%;
    -webkit-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
}

@media only screen and (max-width: 767.98px) {
    .blog-list-inner .blog-post-item .blog-thumb {
        max-width: 100%;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.blog-list-inner .blog-post-item .blog-content {
    padding-top: 0;
    padding-left: 20px;
    max-width: calc(100% - 40%);
    -webkit-flex-basis: calc(100% - 40%);
    -ms-flex-preferred-size: calc(100% - 40%);
    flex-basis: calc(100% - 40%);
}

@media only screen and (max-width: 767.98px) {
    .blog-list-inner .blog-post-item .blog-content {
        padding-left: 0;
        padding-top: 25px;
        max-width: 100%;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.blog-list-inner .blog-post-item .blog-content .blog-desc {
    padding-top: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .blog-list-inner .blog-post-item .blog-content .blog-desc {
        padding-top: 10px;
    }
}


/*------- blog list wrapper end -------*/


/*----- blog sidebar start -------*/

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .blog-sidebar-wrapper {
        margin-bottom: -5px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .blog-sidebar-wrapper {
        margin-top: 77px;
        margin-bottom: -5px;
    }
}

@media only screen and (max-width: 767.98px) {
    .blog-sidebar-wrapper {
        margin-top: 60px;
        margin-bottom: -5px;
    }
}

.blog-sidebar-wrapper .blog-sidebar:last-child {
    margin-bottom: 0;
}

.blog-sidebar {
    margin-bottom: 30px;
}

.blog-sidebar .title {
    color: var(--color-text);
    font-size: 20px;
    line-height: 1;
    margin-top: -2px;
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    text-transform: capitalize;
}

@media only screen and (max-width: 479.98px) {
    .blog-sidebar .title {
        font-size: 18px;
    }
}

.blog-sidebar .title:before {
    width: 100%;
    height: 1px;
    bottom: -10px;
    left: 0;
    background-color: var(--color-gray);
    content: "";
    position: absolute;
}

.blog-sidebar .search-field {
    width: calc(100% - 50px);
    border: 1px solid #ccc;
    padding: 0 10px;
    color: var(--color-text);
    font-size: 14px;
    height: 50px;
    float: left;
    text-transform: capitalize;
}

.blog-sidebar .search-btn {
    width: 50px;
    height: 50px;
    margin-left: -4px;
    text-align: center;
    cursor: pointer;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.blog-sidebar .search-btn i {
    font-size: 20px;
    line-height: 50px;
    color: var(--color-text);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.blog-sidebar .search-btn:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}

.blog-sidebar .search-btn:hover i {
    color: var(--color-white);
}

.blog-sidebar .blog-archive {
    margin-top: -10px;
}

.blog-sidebar .blog-archive li a {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    padding: 13px 0;
    display: inline-block;
}

.blog-sidebar .blog-archive li a:hover {
    color: var(--color-yellow);
}

.blog-sidebar .blog-archive li:last-child a {
    padding-bottom: 0;
}

.blog-sidebar .blog-archive li:first-child a {
    padding-top: 0;
}

.blog-sidebar .blog-tags li {
    display: inline-block;
    margin-bottom: 5px;
}

.blog-sidebar .blog-tags li a {
    color: var(--color-text);
    font-size: 13px;
    border: 1px solid #ccc;
    padding: 6px 15px 4px;
    display: inline-block;
    text-transform: uppercase;
}

.blog-sidebar .blog-tags li a:hover {
    color: var(--color-white);
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}


/*----- blog sidebar end -------*/

.blog-category {
    margin-top: -10px;
}


/*------ recent post start ------*/

.recent-post .recent-post-item:last-child {
    margin-bottom: 0;
}

.recent-post-item {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.recent-post-item .product-thumb {
    max-width: 70px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 70px;
    -ms-flex: 1 0 70px;
    flex: 1 0 70px;
}

.recent-post-item .recent-post-description {
    padding-left: 10px;
}

.recent-post-item .recent-post-description h4 {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    padding-bottom: 5px;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .recent-post-item .recent-post-description h4 {
        font-size: 13px;
        padding-bottom: 5px;
    }
}

.recent-post-item .recent-post-description h4 a {
    color: var(--color-text);
}

.recent-post-item .recent-post-description h4 a:hover {
    color: var(--color-yellow);
}

.recent-post-item .recent-post-description p {
    text-transform: capitalize;
}


/*------ recent post end ------*/

.entry-summary {
    padding-top: 25px;
}

blockquote {
    border-left: 5px solid var(--color-yellow);
    margin: 25px 32px 25px 30px;
    background-color: #f8f8f8;
    padding: 15px;
}

.blog-details-post .blog-content .blog-title {
    font-size: 24px;
    padding-top: 10px;
}

@media only screen and (max-width: 767.98px) {
    .blog-details-post .blog-content .blog-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 479.98px) {
    .blog-details-post .blog-content .blog-title {
        font-size: 18px;
    }
}

.blog-details-post:hover .blog-thumb img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}


/*------- blog main content wrapper start --------*/

.blog-post-item .tag-line {
    padding: 10px 0;
    margin-top: 20px;
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
}

.blog-post-item .tag-line h5 {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    padding-right: 5px;
}

.blog-post-item .tag-line a {
    color: var(--color-text);
    font-style: italic;
    font-size: 14px;
    text-transform: capitalize;
}

.blog-post-item .tag-line a:hover {
    color: var(--color-yellow);
}

.blog-share-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .blog-share-link {
        padding-top: 15px;
    }
}

.blog-share-link h5 {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    padding-right: 15px;
    text-transform: uppercase;
}

.blog-share-link .blog-social-icon a {
    width: 36px;
    height: 36px;
    font-size: 15px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    color: var(--color-white);
    border-radius: 50%;
    margin-right: 5px;
}

.blog-share-link .blog-social-icon a.facebook {
    background-color: #3B5999;
}

.blog-share-link .blog-social-icon a.twitter {
    background-color: #1DA1F2;
}

.blog-share-link .blog-social-icon a.pinterest {
    background-color: #CB2028;
}

.blog-share-link .blog-social-icon a.google {
    background-color: #fe6d4c;
}

.blog-share-link .blog-social-icon a:hover.facebook {
    background-color: #2d4474;
}

.blog-share-link .blog-social-icon a:hover.twitter {
    background-color: #0c85d0;
}

.blog-share-link .blog-social-icon a:hover.pinterest {
    background-color: #9f191f;
}

.blog-share-link .blog-social-icon a:hover.google {
    background-color: #fe4419;
}

@media only screen and (max-width: 479.98px) {
    .blog-share-link .blog-social-icon a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 13px;
        margin-right: 0;
    }
}


/*--- blog main content wrapper end ---*/


/*--- blog comment section start ---*/

.comment-section {
    margin-top: -3px;
}

.comment-section h3 {
    color: var(--color-text);
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.comment-section ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 20px;
    margin-bottom: 30px;
    border: 1px solid var(--color-gray);
}

.comment-section ul li:last-child {
    margin-bottom: 5px;
}

@media only screen and (max-width: 479.98px) {
    .comment-section ul li {
        display: block;
    }
}

.comment-section ul li .author-avatar {
    -webkit-flex-basis: 66px;
    -ms-flex-preferred-size: 66px;
    flex-basis: 66px;
    max-height: 62px;
    margin-right: 10px;
}

@media only screen and (max-width: 479.98px) {
    .comment-section ul li .author-avatar {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 66px;
        height: 62px;
    }
}

.comment-section ul li.comment-children {
    margin-left: 40px;
}

@media only screen and (max-width: 479.98px) {
    .comment-section ul li.comment-children {
        margin-left: 20px;
    }
}

.comment-section ul li .comment-body {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.comment-section ul li .comment-body h5 {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 5px;
    text-transform: capitalize;
}

.comment-section ul li .comment-body .comment-post-date {
    color: var(--color-text);
    padding-bottom: 10px;
}

.comment-section ul li .comment-body .reply-btn {
    float: right;
}

.comment-section ul li .comment-body .reply-btn a {
    color: var(--color-text);
    font-size: 12px;
    display: inline-block;
    padding: 4px 15px;
    border-radius: 20px;
    text-transform: capitalize;
    border: 1px solid var(--color-gray);
}

.comment-section ul li .comment-body .reply-btn a:hover {
    color: var(--color-white) !important;
    border-color: var(--color-yellow);
    background-color: var(--color-yellow);
}


/*--- blog comment section end ---*/


/*------ blog comment box start -----*/

.blog-comment-wrapper {
    margin-top: -8px;
}

.blog-comment-wrapper h3 {
    color: var(--color-text);
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    padding-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
}

.blog-comment-wrapper p {
    margin-bottom: 10px;
    padding-top: 10px;
}

.blog-comment-wrapper .comment-post-box label {
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    text-transform: capitalize;
}

.blog-comment-wrapper .comment-post-box .coment-field {
    background: #f8f8f8;
    border: none;
    color: var(--color-text);
    padding: 8px 10px;
    width: 100%;
}

@media only screen and (max-width: 767.98px) {
    .blog-comment-wrapper .comment-post-box .coment-field {
        margin-bottom: 20px;
    }
}

.blog-comment-wrapper .comment-post-box textarea {
    height: 130px;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    background: #f8f8f8;
    border: none;
}

.blog-comment-wrapper .comment-post-box .coment-btn {
    margin-top: 30px;
}

@media only screen and (max-width: 767.98px) {
    .blog-comment-wrapper .comment-post-box .coment-btn {
        margin-top: 10px;
    }
}


/*------- blog comment box end --------*/


/*------ shop page style start ------*/

.shop-top-bar {
    margin-bottom: 30px;
}

.top-bar-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767.98px) {
    .top-bar-left {
        padding-top: 15px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.top-bar-left .product-view-mode {
    margin-right: 60px;
}

@media only screen and (max-width: 479.98px) {
    .top-bar-left .product-view-mode {
        margin-right: 0;
    }
}

.top-bar-left .product-view-mode a {
    color: #b6b6b6;
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.top-bar-left .product-view-mode a i {
    font-size: 20px;
    margin-top: 6px;
}

.top-bar-left .product-view-mode a:hover {
    color: var(--color-yellow);
}

.top-bar-left .product-view-mode a.active {
    color: var(--color-yellow);
}

.top-bar-left .product-amount p {
    color: #777;
    font-size: 14px;
    text-transform: capitalize;
}

.top-bar-right {
    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: 767.98px) {
    .top-bar-right {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.top-bar-right .product-short {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-bar-right .product-short p {
    margin-right: 10px;
}

.nice-select {
    height: 36px;
    line-height: 34px;
    width: auto;
    padding: 0 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .nice-select {
        width: 170px;
    }
}

@media only screen and (max-width: 479.98px) {
    .nice-select {
        width: 190px;
    }
}

.nice-select.open {
    border-color: var(--color-yellow);
}

.nice-select .list {
    right: 0;
    left: auto;
    width: 100%;
}

.nice-select .option {
    font-size: 13px;
    line-height: 34px;
    min-height: 34px;
    text-transform: capitalize;
}

.nice-select:after {
    height: 6px;
    width: 6px;
    border-bottom: 1px solid var(--color-text);
    border-right: 1px solid var(--color-text);
}


/*----- shop main wrapper end -----*/


/*----- product change view start -----*/

.shop-product-wrap.list-view .product-item {
    display: none;
}

.shop-product-wrap.grid-view .product-item {
    display: flex;
    flex-direction: column;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    padding: 0;
}

.shop-product-wrap.grid-view .product-list-item {
    display: none !important;
}

.shop-product-wrap.list-view .product-list-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.shop-product-wrap.row.list-view .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.shop-product-wrap [class*="col-"] {
    margin-bottom: 35px;
}


/*----- product change view end -----*/


/*------ shop page style start ------*/


/*----- product details slider start ----*/

.pro-large-img {
    position: relative;
}

.pro-large-img img {
    width: 100%;
}

.pro-nav-thumb {
    cursor: pointer;
}

.pro-nav {
    margin-top: 20px;
}


/*----- product details slider end ----*/


/*----- product details content start ----*/

.product-details-des .product-name {
    color: var(--color-text);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
}

@media only screen and (max-width: 575.98px) {
    .product-details-des .product-name {
        font-size: 17px;
    }
}

.product-details-des .pro-review {
    padding-left: 10px;
}

.product-details-des .pro-review span {
    font-size: 14px;
    line-height: 1;
    color: var(--color-text);
}

.product-details-des .price-box {
    padding-top: 10px;
    padding-bottom: 10px;
}

.product-details-des .customer-rev {
    padding-top: 10px;
}

.product-details-des .customer-rev a {
    color: var(--color-text);
    font-size: 13px;
    text-transform: capitalize;
}

.product-details-des .customer-rev a:hover {
    color: var(--color-yellow);
}

.product-details-des .quantity-cart-box {
    margin-bottom: 20px;
}

.product-details-des .quantity-cart-box h5 {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-right: 10px;
    text-transform: uppercase;
}

.product-details-des .quantity {
    margin-right: 15px;
}

.product-details-des .quantity h5 {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 25px;
    margin-right: 10px;
    margin-bottom: 0;
}

@media only screen and (max-width: 479.98px) {
    .product-details-des .quantity h5 {
        margin-right: 10px;
    }
}

.product-details-des .quantity .pro-qty {
    width: 90px;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 15px;
    border-radius: 4px;
    float: left;
}

.product-details-des .quantity .pro-qty .qtybtn {
    width: 15px;
    display: block;
    float: left;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    color: var(--color-text);
}

.product-details-des .quantity .pro-qty input {
    width: 28px;
    float: left;
    border: none;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.product-details-des .pro-desc {
    margin-bottom: 20px;
}

.product-details-des .availability {
    margin-bottom: 15px;
}

.product-details-des .availability i {
    color: #81ca33;
}

.product-details-des .availability span {
    color: var(--color-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    padding-left: 3px;
    text-transform: uppercase;
}

.product-details-des .useful-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.product-details-des .useful-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-right: 20px;
    text-transform: capitalize;
}

.product-details-des .useful-links a:hover {
    color: var(--color-yellow);
}

.product-details-des .useful-links a i {
    padding-right: 5px;
    vertical-align: middle;
}

.product-details-des .like-icon {
    padding-top: 20px;
    border-top: 1px solid var(--color-gray);
}

.product-details-des .like-icon a {
    color: var(--color-white);
    text-align: center;
    display: inline-block;
    font-size: 12px;
    line-height: 22px;
    padding: 0 8px;
    margin-right: 6px;
    border-radius: 3px;
    text-transform: capitalize;
}

@media only screen and (max-width: 479.98px) {
    .product-details-des .like-icon a {
        margin-right: 0;
    }
}

.product-details-des .like-icon a i {
    padding-right: 5px;
}

.product-details-des .like-icon a.facebook {
    background-color: #3B5999;
}

.product-details-des .like-icon a.twitter {
    background-color: #1DA1F2;
}

.product-details-des .like-icon a.pinterest {
    background-color: #CB2028;
}

.product-details-des .like-icon a.google {
    background-color: #fe6d4c;
}

.product-details-des .like-icon a:hover.facebook {
    background-color: #2d4474;
}

.product-details-des .like-icon a:hover.twitter {
    background-color: #0c85d0;
}

.product-details-des .like-icon a:hover.pinterest {
    background-color: #9f191f;
}

.product-details-des .like-icon a:hover.google {
    background-color: #fe4419;
}

.product-details-des .share-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-details-des .share-icon h5 {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-right: 10px;
    text-transform: uppercase;
}

.product-details-des .share-icon a {
    color: var(--color-text);
    text-align: center;
    display: inline-block;
    font-size: 16px;
    padding: 0 8px;
    margin-right: 5px;
}

@media only screen and (max-width: 479.98px) {
    .product-details-des .share-icon a {
        padding: 0 5px;
    }
}

.product-details-des .share-icon a:hover {
    color: var(--color-yellow);
}

.product-details-des .color-option {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
}

.product-details-des .color-option h5 {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-right: 10px;
    text-transform: uppercase;
}

.product-details-des .color-option .nice-select {
    height: 40px;
    line-height: 40px;
}

.product-details-des .pro-size {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}

.product-details-des .pro-size h5 {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-right: 10px;
    text-transform: uppercase;
}

.product-details-des .pro-size .nice-select {
    width: auto;
    height: 40px;
    line-height: 40px;
}

.product-details-des .group-product-table {
    margin-top: 30px;
    margin-bottom: 20px;
    display: block;
}

.product-details-des .group-product-table.table-bordered {
    border: none;
}

.product-details-des .group-product-table td {
    width: 33.33%;
    padding: 8px;
    vertical-align: middle;
}

.product-details-des .group-product-table td a {
    color: var(--color-text);
    text-transform: capitalize;
}

.product-details-des .group-product-table td a:hover {
    color: var(--color-yellow);
}

.product-details-des .group-product-table td .pro-qty {
    width: 90px;
    height: 35px;
    border: 1px solid #ddd;
    padding: 0 15px;
    float: left;
}

.product-details-des .group-product-table td .pro-qty .qtybtn {
    width: 15px;
    display: block;
    float: left;
    line-height: 31px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
}

.product-details-des .group-product-table td .pro-qty input {
    width: 28px;
    float: left;
    border: none;
    height: 33px;
    line-height: 33px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}


/*------ countdown style start ------*/

.offer-text {
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
}

.offer-text strong {
    font-weight: 500;
}

.product-countdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
}

.product-countdown .single-countdown {
    text-align: center;
    margin-right: 10px;
    padding: 10px 0;
    border-radius: 5px;
    width: 50px;
    background-color: #eaeaea;
}

.product-countdown .single-countdown__time {
    color: var(--color-yellow);
    font-size: 18px;
    font-weight: 400;
    display: block;
    line-height: 1;
}

.product-countdown .single-countdown__text {
    display: block;
    font-size: 12px;
    color: var(--color-text);
    margin-top: 5px;
    line-height: 1;
    text-transform: capitalize;
}

.product-countdown .single-countdown:first-child {
    background-color: var(--color-yellow);
}

.product-countdown .single-countdown:first-child .single-countdown__time,
.product-countdown .single-countdown:first-child .single-countdown__text {
    color: var(--color-white);
}


/*------ countdown style end ------*/

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .product-details-des {
        margin-top: 76px;
    }
}

@media only screen and (max-width: 767.98px) {
    .product-details-des {
        margin-top: 58px;
    }
}

.product-details-des.quick-details {
    margin-top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .product-details-des.quick-details {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767.98px) {
    .product-details-des.quick-details {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .product-details-des.quick-details .product-name {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767.98px) {
    .product-details-des.quick-details .product-name {
        font-size: 18px;
    }
}

.product-details-des.box-layout {
    padding-top: 47px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .product-details-des.box-layout {
        margin-top: 0;
    }
}

.product-details-des.box-layout p {
    max-width: 80%;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .product-details-des.box-layout p {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .product-details-des.sidebar-sticky {
        margin-top: 0;
    }
}

.product-details-des.quick-des p {
    padding-top: 0;
}


/*----- product details content end ----*/


/*----- reviews area start -----*/

.product-review-info .nav.review-tab li a {
    color: var(--color-white);
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    padding: 8px 10px;
    border: 1px solid var(--color-gray);
    border-bottom: none;
    background-color: #979898;
}

.product-review-info .nav.review-tab li a:hover,
.product-review-info .nav.review-tab li a.active {
    color: var(--color-text);
    background-color: var(--color-white);
}

@media only screen and (max-width: 479.98px) {
    .product-review-info .nav.review-tab li a {
        font-size: 12px;
        padding: 8px 8px;
    }
}

.product-review-info .tab-content.reviews-tab {
    border: 1px solid var(--color-gray);
    padding: 15px 20px 20px;
}

.product-review-info .tab-content.reviews-tab .table {
    margin-bottom: 0;
}

.product-review-info .tab-content.reviews-tab .table tr {
    text-transform: capitalize;
}

.product-review-info .tab-content .review-description {
    padding-top: 25px;
    padding-bottom: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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: 991.98px) {
    .product-review-info .tab-content .review-description {
        padding: 15px 0;
    }
}

@media only screen and (max-width: 767.98px) {
    .product-review-info .tab-content .review-description {
        display: block;
    }
}

.product-review-info .tab-content .review-description .tab-thumb {
    -webkit-flex-basis: 300px;
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
}

@media only screen and (max-width: 767.98px) {
    .product-review-info .tab-content .review-description .tab-thumb {
        -webkit-flex-basis: 220px;
        -ms-flex-preferred-size: 220px;
        flex-basis: 220px;
    }
}

.product-review-info .tab-content .review-description .tab-des {
    padding-left: 40px;
    -webkit-flex-basis: calc(100% - 300px);
    -ms-flex-preferred-size: calc(100% - 300px);
    flex-basis: calc(100% - 300px);
}

@media only screen and (max-width: 767.98px) {
    .product-review-info .tab-content .review-description .tab-des {
        padding-left: 14px;
        -webkit-flex-basis: calc(100% - 220px);
        -ms-flex-preferred-size: calc(100% - 220px);
        flex-basis: calc(100% - 220px);
    }
}

.product-review-info .tab-content .review-description .tab-des h3 {
    color: var(--color-yellow);
    font-size: 20px;
    font-weight: 22px;
    font-weight: 700;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.product-review-info .tab-content .review-description .tab-des ul li {
    font-size: 13px;
    list-style: inherit;
}

.review-form h5 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
    text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {
    .review-form h5 {
        font-size: 16px;
    }
}

.total-reviews {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 50px;
}

@media only screen and (max-width: 479.98px) {
    .total-reviews {
        display: block;
    }
}

.total-reviews .rev-avatar {
    -webkit-flex-basis: 60px;
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
    max-height: 60px;
}

@media only screen and (max-width: 479.98px) {
    .total-reviews .rev-avatar {
        margin-bottom: 20px;
    }
}

.total-reviews .review-box {
    margin-left: 10px;
    border: 1px solid var(--color-gray);
    padding: 10px;
    -webkit-flex-basis: calc(100% - 70px);
    -ms-flex-preferred-size: calc(100% - 70px);
    flex-basis: calc(100% - 70px);
}

@media only screen and (max-width: 479.98px) {
    .total-reviews .review-box {
        margin-left: 0;
    }
}

.total-reviews .review-box .post-author {
    padding-bottom: 10px;
}

.total-reviews .review-box .post-author p {
    font-size: 12px;
    font-style: italic;
    text-transform: capitalize;
}

.total-reviews .review-box .post-author p span {
    font-size: 13px;
}

.total-reviews .review-box p {
    font-size: 14px;
    font-style: italic;
}


/*----- reviews area end -----*/

.login-reg-form-meta {
    padding: 10px 0;
    font-size: 14px;
}

.login-reg-form-meta a {
    color: var(--color-lead-dark);
    font-weight: 500;
}

.login-reg-form-meta a:hover {
    color: var(--color-yellow);
}

.single-form-row {
    margin-top: 15px;
    display: none;
}

.single-form-row p {
    margin: 0;
    font-size: 14px;
}

.order-summary-table {
    background-color: #f7f7f7;
    margin-top: 0px;
    overflow: hidden;
}

.order-summary-table .table,
.order-summary-table table {
    color: var(--color-text);
    margin-bottom: 0;
    font-size: 12px;
    /*white-space: nowrap;*/
}

.order-summary-table .table tr td,
.order-summary-table .table tr th,
.order-summary-table table tr td,
.order-summary-table table tr th {
    font-weight: 400;
    vertical-align: middle;
    padding: 15px 10px;
    border-width: 1px;
}

.order-summary-table .table tr td a,
.order-summary-table .table tr th a,
.order-summary-table table tr td a,
.order-summary-table table tr th a {
    color: var(--color-text);
    font-weight: 400;
}

.order-summary-table .table tr td strong,
.order-summary-table .table tr th strong,
.order-summary-table table tr td strong,
.order-summary-table table tr th strong {
    font-weight: 400;
}

.order-summary-table .shipping-type {
    text-align: left;
}

.order-summary-table .shipping-type li {
    margin-bottom: 5px;
}

.order-summary-table .shipping-type li:last-child {
    margin-bottom: 0;
}

.single-payment-method {
    margin-bottom: 20px;
}

.single-payment-method:last-child {
    margin-bottom: 0;
}

.single-payment-method:first-child .payment-method-details {
    display: block;
}

.single-payment-method label,
.single-payment-method .custom-control-label {
    font-weight: 500;
}

.single-payment-method .paypal-card {
    max-width: 150px;
    height: 50px;
    margin-top: 10px;
    display: block;
}

.single-payment-method .payment-method-details {
    background-color: #f1f1f1;
    color: var(--color-text);
    font-weight: 400;
    font-size: 13px;
    padding: 10px;
    position: relative;
    margin-top: 20px;
    display: none;
}

.single-payment-method .payment-method-details:after {
    content: '';
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f1f1f1;
    bottom: 100%;
}

.single-payment-method .payment-method-details * {
    margin: 0;
}

.summary-footer-area .btn-brand {
    margin-top: 40px;
}


/*------- input box style css start -------*/

.single-input-item {
    margin-top: 5px;
}

.single-input-item label {
    color: var(--color-text);
    font-size: 14px;
}

.single-input-item label.error {
    color: var(--color-red);
    font-size: 90%;
}

.single-input-item label.required:after {
    content: '*';
    color: var(--color-red);
    font-size: 14px;
    margin-left: 3px;
    margin-top: 5px;
}

.single-input-item input,
.single-input-item select,
.single-input-item textarea {
    color: var(--color-text);
    border: 1px solid var(--color-gray-alt);
    padding: 5px 10px;
    width: 100%;
    font-size: 14px;
    background-color: var(--input-background);
    min-height: 38px;
    border-radius: 2px;
}

.single-input-item input[type="checkbox"] {
    width: 16px;
    margin-right: 8px;
    cursor: pointer;
}

.single-input-item.checkbox {
    display: flex;
    align-content: flex-start;
    align-items: center;
    flex-direction: row;
    background-color: var(--input-background);
    border-radius: 2px;
    padding: 0px 10px;
}

.single-input-item.checkbox label {
    margin-bottom: 0;
    cursor: pointer;
}

.single-input-item select {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMC40OTgiIGhlaWdodD0iNiI+PHBhdGggZD0iTTUuMjUyIDQuMTkxIDkuMjIxLjIxOWEuNzUuNzUgMCAxIDEgMS4wNTkgMS4wNjJsLTQuNSA0LjVhLjc1Ljc1IDAgMCAxLTEuMDM0LjAyMkwuMjIxIDEuMjg1QS43NS43NSAwIDEgMSAxLjI4LjIyM1oiIGZpbGw9InJnYmEoODIsODIsODIsMC45KSIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.single-input-item input:active,
.single-input-item input:focus,
.single-input-item select:active,
.single-input-item select:focus,
.single-input-item select:focus-visible,
.single-input-item textarea:active,
.single-input-item textarea:focus {
    border-color: var(--color-yellow);
    background-color: var(--color-gray-alt);
    box-shadow: none;
    outline: none;
}

.single-input-item input.error,
.single-input-item select.error,
.single-input-item textarea.error {
    border-color: var(--color-red);
    background-color: rgba(var(--color-red-rgb), 0.1);
}

.single-input-item .nice-select {
    width: 100%;
    border-radius: 0;
    height: 48px;
    border-color: #ccc;
    background-color: #f7f7f7;
}

.single-input-item .nice-select .current {
    color: var(--color-text);
}

.single-input-item .nice-select .list {
    max-height: 200px;
    overflow: auto;
    width: 100%;
}


/*------- input box style css end -------*/


/*--------- Cart Page Wrapper Start ---------*/

.cart-table .table {
    margin: 0;
    white-space: nwrap;
}

.cart-table .table thead {
    border: 0;
    background-color: var(--color-gray) !important;
    text-transform: inherit;
}

.cart-table .table tbody tr:not(:last-child) {
    border-bottom: 1px solid var(--color-gray);
}

.cart-table .table thead tr th {
    border: 0;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
}

.cart-table .table tbody tr td {
    text-align: center;
    padding: 10px;
    vertical-align: middle;
    font-weight: 500;
    color: var(--color-text);
    font-size: 12px;
}

.cart-table .table thead tr th.pro-title,
.cart-table .table tbody tr td.pro-title {
    text-align: left;
}

.cart-table .table tbody tr td a {
    color: var(--color-lead);
    font-weight: 400;
    text-transform: capitalize;
}

.cart-table .table tbody tr td a:hover {
    color: var(--color-yellow);
}

.cart-table .table tbody tr td a.btn {
    color: var(--color-white);
}

.cart-table .table tbody tr td a.btn:hover {
    color: var(--color-white);
}

.cart-table .table tbody tr td a.check-btn {
    color: var(--color-white);
}

.cart-table .table tr .pro-thumbnail,
.cart-table .table tr .pro-price,
.cart-table .table tr .pro-quantity,
.cart-table .table tr .pro-subtotal,
.cart-table .table tr .pro-actions,
.cart-table .table tr .pro-remove {
    width: 110px;
}

.cart-table .table tr .pro-thumbnail img {
    max-width: 60px;
}

.cart-table .table tr .pro-qty {
    width: 90px;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 15px;
    float: left;
}

.cart-table .table tr .pro-qty .qtybtn {
    width: 15px;
    display: block;
    float: left;
    line-height: 38px;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text);
}

.cart-table .table tr .pro-qty input {
    width: 28px;
    float: left;
    border: none;
    height: 40px;
    line-height: 34px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

#produtos .produto-box-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.02);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.02);
}

#produtos .produto-box-item:not(:last-child) {
    margin-bottom: 10px;
}

#produtos .produto-box-item .pro-qty-init {
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    display: flex;
    align-items: center;
    gap: 5px;
    float: initial !important;
    margin: 5px 0 0 !important;
    padding: 0 !important;
}

#produtos .produto-box-item .pro-qty-init .qtybtnA {
    background-color: #F8F8F8;
    width: 28px;
    line-height: 28px;
    float: initial !important;
}

#produtos .produto-box-item .pro-qty-init input {
    width: 28px;
    height: 28px;
    text-align: center;
    border: 0 !important;
    border-radius: 4px;
}

#produtos .produto-box-item .pro-actions .pro-price {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.cart-table .table .removeCarrinho i {
    color: var(--color-lead);
}

.cart-table .table .removeCarrinho:hover i {
    color: var(--color-yellow);
}

.cart-update-option .apply-coupon-wrapper {
    width: 55%;
}

@media only screen and (max-width: 767.98px),
only screen and (min-width: 768px) and (max-width: 991.98px) {
    .cart-update-option .apply-coupon-wrapper {
        width: auto;
    }
}

.cart-update-option .apply-coupon-wrapper form {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
}

.cart-update-option .apply-coupon-wrapper form input {
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 9px 10px;
    outline: none;
    margin-right: 15px;
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.cart-update-option .apply-coupon-wrapper form input:focus,
.cart-update-option .apply-coupon-wrapper form input:active {
    border-color: var(--color-yellow);
}

@media only screen and (max-width: 767.98px) {
    .cart-update-option .apply-coupon-wrapper button {
        display: block;
        width: 100%;
        margin-top: 15px;
        border-radius: 0;
    }
}

.cart-calculator-wrapper {
    margin-top: 30px;
    background-color: #f8f8f8;
}

.cart-calculator-wrapper h3 {
    color: var(--color-text);
    font-size: 18px;
    font-weight: 500;
    padding: 27px 15px 25px;
    margin-bottom: 0;
}

.cart-calculator-wrapper .cart-calculate-items {
    font-weight: 500;
}

.cart-calculator-wrapper .cart-calculate-items .table {
    margin-bottom: 0;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td {
    color: var(--color-text);
    padding: 15px 20px;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td:nth-child(2) {
    color: var(--color-text);
    text-align: right;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td.total-amount {
    color: var(--color-yellow);
    font-weight: 700;
}

.cart-calculator-wrapper a {
    border-radius: 0;
    text-align: center;
}


/*--------- Cart Page Wrapper end ---------*/


/*------ Start Compare Page Wrapper -----*/

.compare-table .table tbody tr td {
    text-align: center;
    padding: 20px 20px;
    vertical-align: middle;
    border-color: #ccc;
}

.compare-table .table tbody tr td.first-column {
    min-width: 175px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
}

@media only screen and (max-width: 767.98px) {
    .compare-table .table tbody tr td.first-column {
        min-width: 115px;
    }
}

.compare-table .table tbody tr td.product-image-title {
    min-width: 310px;
    vertical-align: bottom;
}

@media only screen and (max-width: 767.98px) {
    .compare-table .table tbody tr td.product-image-title {
        min-width: 220px;
    }
}

.compare-table .table tbody tr td.product-image-title .image {
    clear: both;
    width: 100%;
    margin-bottom: 15px;
    display: block;
}

.compare-table .table tbody tr td.product-image-title .category {
    float: left;
    clear: both;
    color: var(--color-yellow);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.compare-table .table tbody tr td.product-image-title .title {
    float: left;
    clear: both;
    font-size: 16px;
    color: var(--color-text);
    font-weight: 500;
    text-transform: capitalize;
}

.compare-table .table tbody tr td.product-image-title .title:hover {
    color: var(--color-yellow);
}

.compare-table .table tbody tr td.pro-desc p {
    text-align: left;
    margin: 0;
}

.compare-table .table tbody tr td.pro-price,
.compare-table .table tbody tr td.pro-color,
.compare-table .table tbody tr td.pro-stock {
    font-size: 14px;
    font-weight: 400;
}

.compare-table .table tbody tr td.pro-remove button {
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.compare-table .table tbody tr td.pro-remove button:hover {
    color: var(--color-red);
}

.compare-table .table tbody tr td.pro-remove button i {
    font-size: 20px;
}

.compare-table .table tbody tr td.pro-ratting i {
    color: var(--color-yellow);
}


/*------ end Compare Page Wrapper -----*/


/*------ Start Login & Register Page ------*/

.section-bg-shadow,
.group-form {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: 2px;
    padding: 20px 25px 25px;
    -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.02);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.02);
    height: 100%;
}

@media only screen and (max-width: 575.98px) {

    .section-bg-shadow,
    .group-form {
        padding: 15px;
    }
}

.login-reg-form-wrap h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    text-transform: capitalize;
    color: var(--color-text);
    border-bottom: #ccc;
    margin-bottom: 15px;
}

.login-reg-form-wrap form .create-account {
    margin-top: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .sign-up-form {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767.98px) {
    .sign-up-form {
        margin-top: 62px;
    }
}


/*------ end Login & Register Page ------*/


/*------- Start About Page Wrapper --------*/

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .about-us-wrapper {
        margin-top: -2px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .about-text-wrap {
        padding-bottom: 30px;
    }
}

.about-text-wrap h2 {
    color: var(--color-text);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
}

@media only screen and (max-width: 767.98px) {
    .about-text-wrap h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
}

@media only screen and (max-width: 575.98px) {
    .about-text-wrap h2 {
        font-size: 22px;
    }
}

.about-text-wrap h2 span {
    color: var(--color-text);
    display: block;
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 5px;
    line-height: 24px;
    margin-top: -4px;
}

.about-text-wrap p {
    margin-bottom: 10px;
}

.about-text-wrap p:last-child {
    margin-bottom: 0;
}

.about-image-wrap {
    position: relative;
    padding-left: 30px;
    padding-top: 30px;
    z-index: 1;
}

@media only screen and (max-width: 575.98px) {
    .about-image-wrap {
        padding-left: 15px;
        padding-top: 15px;
    }
}

.about-image-wrap img {
    width: 100%;
}

.about-image-wrap:after {
    border: 5px solid var(--color-yellow);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: calc(100% - 30px);
    width: calc(100% - 30px);
    z-index: -1;
}


/*------- end About Page Wrapper --------*/


/*------- team area start -------*/

.team-member {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.team-member .team-thumb {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.team-member .team-thumb img {
    width: 100%;
}

.team-member .team-thumb .team-social {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    position: absolute;
    background-color: var(--color-white);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.team-member .team-thumb .team-social a {
    color: var(--color-text);
    width: 30px;
    height: 30px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-right: 5px;
}

.team-member .team-thumb .team-social a:hover {
    color: var(--color-white);
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}

.team-member .team-content h3 {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    padding-top: 15px;
    text-transform: capitalize;
}

.team-member .team-content h6 {
    font-size: 14px;
    color: var(--color-yellow);
    line-height: 20px;
    text-transform: capitalize;
}

.team-member .team-content p {
    padding-top: 10px;
}

.team-member:hover .team-social {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.team-member:hover .team-thumb img {
    opacity: 0.5;
}


/*------- team area end -------*/


/*-------- choosing area start --------*/

.choosing-area {
    margin-bottom: -4px;
}

.single-choose-item i {
    color: #969ca7;
    font-size: 44px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.single-choose-item h4 {
    color: var(--color-text);
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0 10px;
    text-transform: capitalize;
}

.single-choose-item:hover i {
    color: var(--color-yellow);
}


/*-------- choosing area end --------*/


/*------ contact form area start -------*/

.contact-area {
    margin-top: -4px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .contact-area {
        margin-bottom: -5px;
    }
}

.contact-message h2 {
    color: var(--color-text);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 28px;
    text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {
    .contact-message h2 {
        font-size: 18px;
        padding-bottom: 15px;
    }
}

.contact-message form input,
.contact-message form textarea {
    width: 100%;
    border: none;
    padding: 10px 10px;
    border-bottom: 3px solid transparent;
    background-color: #f7f7f7;
    margin-bottom: 30px;
}

.contact-message form textarea {
    height: 150px;
}


/*------ contact form area start -------*/


/*------ contact info area start -------*/

.contact-info {
    height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .contact-info {
        margin-top: 77px;
    }
}

@media only screen and (max-width: 767.98px) {
    .contact-info {
        margin-top: 60px;
    }
}

.contact-info h2 {
    color: var(--color-text);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 22px;
    text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {
    .contact-info h2 {
        font-size: 18px;
        padding-bottom: 8px;
    }
}

.contact-info p {
    color: var(--color-text);
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .contact-info p {
        padding-bottom: 10px;
    }
}

.contact-info ul li {
    border-bottom: 1px solid var(--color-gray);
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 479.98px) {
    .contact-info ul li {
        -webkit-box-align: baseline;
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}

.contact-info ul li:last-child {
    border-bottom: none;
}

.contact-info ul li i {
    font-size: 18px;
    padding-right: 10px;
}

.contact-info .working-time h3 {
    color: var(--color-text);
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 5px;
}

.contact-info .working-time p {
    padding-bottom: 0;
}

.contact-info .working-time p span {
    color: var(--color-text);
    padding-right: 10px;
}


/*------ contact info area end -------*/


/*-------- footer top area start --------*/

.footer-top {
    padding: 40px 0px;
}

.footer-widget-inner {
    padding-bottom: 72px;
    border-bottom: 1px solid var(--color-gray);
}

@media only screen and (max-width: 767.98px) {
    .footer-widget-inner {
        padding-bottom: 54px;
    }
}

.footer-widget-logo {
    padding-bottom: 24px;
}

.footer-widget-title {
    padding-bottom: 27px;
    margin-top: -5px;
}

@media only screen and (max-width: 767.98px) {
    .footer-widget-title {
        padding-bottom: 20px;
    }
}

.footer-widget-title h5 {
    color: var(--color-text);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
}

.footer-widget-body .widget-text {
    color: var(--color-text);
    line-height: 1.5;
    padding-bottom: 25px;
}

.footer-widget-body li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

.footer-widget-body li em {
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    padding-right: 5px;
    text-transform: uppercase;
}

.footer-widget-body li a {
    color: var(--color-text);
    text-transform: capitalize;
}

.footer-widget-body li a:hover {
    color: var(--color-yellow);
    padding-left: 5px;
}

.footer-widget-body li:last-child {
    margin-bottom: 0;
}

.newsletter-inner p {
    padding-bottom: 20px;
}

.newsletter-inner form {
    position: relative;
}

.newsletter-inner .news-field {
    width: 100%;
    height: 44px;
    display: block;
    border: none;
    line-height: 1;
    padding: 0 110px 0 15px;
    color: var(--color-text);
    background-color: var(--color-white);
    position: relative;
    border-radius: 30px;
}

.newsletter-inner .news-btn {
    top: 0;
    right: 0;
    height: 44px;
    font-size: 12px;
    position: absolute;
    color: var(--color-text);
    line-height: 1;
    font-weight: 500;
    padding: 0 15px;
    display: inline-block;
    background-color: var(--color-white);
    text-transform: uppercase;
    border-radius: 0 30px 30px 0;
}

.newsletter-inner .news-btn:hover {
    color: var(--color-yellow);
}

.footer-social-link {
    padding-top: 35px;
}

.footer-social-link a {
    width: 40px;
    height: 40px;
    color: var(--color-white);
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
}

.footer-social-link a:hover {
    background-color: var(--color-text);
}

.footer-social-link a:last-child {
    margin-right: 0;
}


/*-------- footer top area end --------*/


/*-------- footer bottom area start --------*/

.footer-wrapper {
    background-color: var(--color-secondary-dark);
    color: var(--color-white);
}

.footer-top-area {
    padding: 50px 0 10px;
}

.footer-top-area .container {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-top-area .container>div {
    flex: 1;
    margin-bottom: 20px;
}

.footer-top-area .container>div:first-child {
    flex: 1.5;
}

.footer-top-area h3 {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 0.2em;
}

.footer-top-area h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-white);
}

.footer-top-area h4:not(:first-child) {
    margin-top: 20px;
}

.footer-top-area ul li a {
    color: var(--color-white);
    padding-top: 4px;
    padding-bottom: 4px;
    line-height: 1.4;
    font-size: 14px;
}

.footer-top-area ul li a:hover {
    color: var(--color-primary);
}

.footer-top-area .box-social-links {
    max-width: 185px;
}

.footer-top-area ul.social-links {
    display: flex;
    gap: 5px;
}

.footer-top-area ul.social-links li a {
    padding: 5px;
    font-size: 17px;
}

.footer-top-area .footer-contacts a {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.footer-top-area .footer-contacts a:hover {
    color: var(--color-primary);
}

.footer-bottom-area {
    padding-bottom: 30px;
}

.footer-bottom-area .container {
    border-top: 1px solid rgba(222, 193, 123, 0.24);
    padding-top: 10px;
}

.footer-bottom-area ul.social-links {
    gap: 30px;
}

.footer-bottom-area ul.social-links li a {
    color: var(--color-white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
}

.footer-bottom-area ul.social-links li a:hover {
    color: var(--color-primary);
}

@media only screen and (max-width: 767.98px) {
    .footer-top-area .container {
        flex-direction: column;
        align-items: center;
    }

    .footer-top-area .container>div {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-bottom-area {
        text-align: center;
    }

    .footer-bottom-area ul {
        gap: 10px;
    }
}

.copyright-text p {
    font-size: 14px;
    color: var(--color-text);
}

.copyright-text p a {
    color: var(--color-yellow);
}

.copyright-text p a:hover {
    text-decoration: underline;
}

footer ul.footer-list-cities li {
    padding: 5px;
    font-size: 16px;
}

footer ul.footer-list-cities li:first-child {
    padding-left: 0;
}

footer ul.footer-list-cities li:last-child {
    padding-right: 0;
}

footer ul.footer-list-cities li:not(:last-child)::after {
    content: "\2022";
    margin-left: 10px;
    font-size: 20px;
    line-height: 0;
    color: var(--color-yellow);
}

footer ul.footer-list-cities li a {
    color: var(--color-text);
}

footer ul.footer-list-cities li a:hover {
    color: var(--color-yellow);
}

footer .copyright-area {
    padding: 8px 0;
    font-size: 14px;
    background-color: var(--color-secondary);
    color: var(--color-white);
}

footer .copyright-area a {
    font-size: 14px;
    color: inherit;
}

footer .copyright-area a:hover {
    text-decoration: underline;
}

.hs-heart {
    color: var(--color-yellow);
}


/*------------------------------------------------*/


/* Formulario modal  */


/*------------------------------------------------*/

#ModalNewUser .card-body,
#modalLogin .card-body,
#ModalforgotPassword .card-body {
    padding: 0;
}

#ModalNewUser .login-reg-form-meta {
    line-height: 1.4em;
    padding: 0;
}

.modal-custom-size {
    max-width: 385px;
    margin-left: auto;
    margin-right: auto;
}

.modal-content {
    padding: 15px;
    border-radius: 2px;
    box-shadow: 0 3px 20px rgb(128 127 127 / 16%);
}

.modal-header {
    border-bottom: 0;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.modal-header h2 {
    color: var(--color-lead-dark);
    font-size: 24px;
}

.modal-header .close {
    padding: 5px;
    margin: -20px -30px 0 0;
    font-size: 18px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.modal-header .close:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

#modalRecoverEmail .modal-body {
    padding-top: 0;
}

#modalRecoverEmail .modal-recover-email-info h2 {
    max-width: 270px;
    margin-bottom: 15px;
    line-height: 1.1em;
}

#modalRecoverEmail .modal-recover-email-info p {
    font-size: 16px;
    line-height: 1.5em;
}

#modalRecoverEmail .modal-recover-email-info .btns {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#modalRecoverEmail .modal-recover-email-info .btns a {
    width: 100%;
    max-width: 200px;
    text-align: left;
    text-transform: inherit;
}

#modalRecoverEmail .modal-recover-email-form-content {
    border: 2px solid var(--color-gray-alt);
    padding: 15px;
}

#modalRecoverEmail .modal-recover-email-form-content small {
    font-size: 0.9em;
    line-height: 1.2em;
    display: inline-block;
    margin-top: 5px;
}

#modalRecoverEmail button[name="submit"] {
    min-width: 180px;
}

#modalRecoverEmail .single-input-item label.error {
    margin-bottom: 0 !important;
}

@media screen and (max-width: 991px) {
    #modalRecoverEmail .modal-recover-email-info .btns {
        align-items: center;
    }

    #modalRecoverEmail .modal-recover-email-info .btns a {
        text-align: center;
    }
}

.btn-whatsapp {
    background-color: var(--whats-color);
    border-color: var(--whats-color);
    color: var(--color-white) !important;
}

.btn-whatsapp:hover {
    background-color: var(--whats-color-hover);
    border-color: var(--whats-color-hover);
}


/*------------------------------------------------*/


/* END Formulario modal  */


/*------------------------------------------------*/

.font-weight-600 {
    font-weight: 600 !important
}


/*------------------------------------------------*/


/* Autocomplete  */


/*------------------------------------------------*/

.autocomplete {
    position: absolute;
    z-index: 1000;
    background: var(--color-white);
    width: 95%;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 4px;
    margin-top: 2px;
    box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.4);
    display: none;
}

.autocomplete ul li {
    max-width: 52ch;
    padding: 5px 10px 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    text-transform: uppercase;
}

.autocomplete ul li:hover {
    background: var(--color-gray);
}

.removeDate {
    margin-left: -34px;
}

.btn-remove {
    cursor: pointer;
}

.btn-remove i {
    display: inline-block;
    padding: 5px;
    background: #fff3de;
    border-radius: 30px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    color: var(--color-text);
}

.btn-remove:hover {
    color: var(--color-yellow);
}

.btn-remove:hover i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.loading {
    margin-right: -25px;
    padding-left: 5px;
    display: none;
}

.load .loading {
    display: block;
}


/*------------------------------------------------*/


/* END Autocomplete  */


/*------------------------------------------------*/


/*------------------------------------------------*/


/* Cart Page  */


/*------------------------------------------------*/

.pro-qty-init {
    width: 90px;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 15px;
    float: left;
}

.pro-qty-init .qtybtnA {
    width: 15px;
    display: block;
    float: left;
    line-height: 38px;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text);
}

.pro-qty-init input {
    width: 28px;
    float: left;
    border: none;
    height: 40px;
    line-height: 34px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.total-cart {
    /* flex: 1; */
    text-align: center;
}


/*------------------------------------------------*/


/* END Cart Page  */

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


/*------------------------------------------------*/

.modal-open .modal::-webkit-scrollbar {
    width: 0px;
}

.payment-method {
    text-align: right;
}

.modal-backdrop {
    background-color: var(--color-lead-dark);
}

.modal-backdrop.show {
    opacity: 0.6;
}

main {
    padding-top: 20px;
    padding-bottom: 40px;
    min-height: 360px;
    background-color: var(--color-main-bg);
}

/** Page Title **/

.page-title {
    margin: 0 -8px 30px;
    padding: 30px 20px;
    color: #fff;
    text-align: center;
    background-color: var(--color-secondary);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-title .page-title-heading {
    display: inline-block;
    font-size: 24px;
    font-weight: 500 !important;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid var(--color-primary);
    margin: 0 auto;
    padding: 15px 30px;
    width: auto;
    min-width: 300px;
}

.page-title .page-title-heading span {
    color: var(--color-primary);
    font-weight: 500 !important;
}

.page-title.page-title-home {
    padding-top: 100px;
    padding-bottom: 100px;
}

.page-title.page-title-home .page-title-heading {
    font-weight: 300 !important;
}

@media screen and (max-width: 767.98px) {

    .page-title.page-title-home,
    .page-title {
        padding: 20px 15px;
    }

    .page-title .page-title-heading {
        font-size: 17px;
        padding: 10px;
        min-width: 0
    }

}

/** Page Title - End **/

/** Composition Style - Start **/

body.composicoes main {
    padding-bottom: 60px;
}

.compositions-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px;
    margin-right: -5px;
    margin-left: -5px;
}

.compositions-list .composition-item {
    position: relative;
}

.compositions-list .composition-item h3 {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 10px;
    background-color: #ffffff;
}

.compositions-list .composition-item span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: block;
    background-color: var(--color-lead-light);
    color: var(--color-yellow);
    padding: 10px 15px 5px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
}

.compositions-list .composition-item:hover span {
    opacity: 1;
}

@media (max-width: 991px) {
    .compositions-list {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .compositions-list .composition-item span {
        opacity: 1;
        position: relative;
    }

    .compositions-list .composition-item h3,
    .compositions-list .composition-item span {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .compositions-list {
        grid-template-columns: 1fr 1fr;
    }
}


/** Composition Style - End **/

@media only screen and (max-width: 1200px) {
    figure {
        height: 250px;
    }

    main {
        min-height: 340px;
    }
}

@media only screen and (max-width: 767.98px) {
    .payment-method {
        text-align: center;
        padding-bottom: 10px;
    }

    figure {
        margin: 0;
        height: 180px;
    }

    .modal-content {
        padding-left: 0;
        padding-right: 0;
    }

    .modal-header .close {
        margin-right: -15px;
    }

    .price-regular {
        font-size: 18px;
    }

    .price-regular span {
        font-size: 10px;
    }

    .product-caption .product-name {
        height: initial;
    }

    .shop-product-wrap.grid-view .add .product-item .lnr-cart {
        font-size: 5vw;
    }

    main {
        padding-top: 10px;
        min-height: 450px;
    }
}

@media only screen and (max-width: 576px) {
    figure {
        height: 250px;
    }
}

@media only screen and (max-width: 479.98px) {
    .copyright-text p {
        font-size: 13px;
    }

    main {
        min-height: 610px;
    }
}

@media only screen and (max-width: 420px) {
    figure {
        height: 190px;
    }

    main {
        min-height: 520px;
    }

    footer ul.footer-list-cities {
        max-width: 220px;
    }

    footer ul.footer-list-cities li:nth-child(2)::after {
        display: none;
    }
}

@media only screen and (max-width: 380px) {
    main {
        min-height: 360px;
    }
}

@keyframes bounce {
    0% {
        margin-top: 0px;
    }

    50% {
        margin-top: -50px;
    }

    0% {
        margin-top: 0px;
    }
}

@keyframes bounceLeft {
    0% {
        margin-left: 0px;
    }

    50% {
        margin-left: -50px;
    }

    0% {
        margin-left: 0px;
    }
}


input\.fake {
    background-color: var(--input-background);
    display: flex;
    justify-content: space-between;
    padding: 7px 12px;
}

.quote {
    padding-left: 20px;
    border-left: 4px solid rgba(0, 0, 0, 0.2);
    margin: 8px 5px;
}