@charset "UTF-8";

/** =============== Font ================= **/

@font-face {
    font-family: "inter";
    src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "inter";
    src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "inter";
    src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"), url("../fonts/Inter-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "inter";
    src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "inter";
    src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: utmdt;
    src: url("../fonts/UTMDT.ttf");
}


/** =============== Color ================= **/

:root {
    --primary-color: #234c20;
    --primary-variant: #305901;
    --secondary-color: #7cb240;
    --yellow: #fed733;
    --lightgrey: #c4c4c4;
}


/* Reset
--------------------------------------------- */


/** Reset CSS **/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

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

body {
    line-height: 1.5;
    font-size: 14px !important;
    font-family: Inter, sans-serif;
    font-weight: 400;
    color: #000;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

select,
button {
    cursor: pointer;
    outline: none;
}

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

svg,
svg path {
    -webkit-transition: fill 0.3s, stroke 0.3s;
    -o-transition: fill 0.3s, stroke 0.3s;
    transition: fill 0.3s, stroke 0.3s;
}

a {
    transition: color 0.3s, background-color 0.3s;
}

svg path {
    color: currentColor;
}

input:focus {
    box-shadow: none;
    outline: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (min-width: 1366px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1230px;
    }
}

.sticky-top {
    z-index: 2222;
}


/* General
--------------------------------------------- */


/** General **/

.section__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

@media only screen and (max-width: 767px) {
    .section__title {
        font-size: 23px;
    }
}

@media only screen and (max-width: 424px) {
    .section__title {
        font-size: 20px;
    }
}

.section__title span {
    color: var(--secondary-color);
}

.section__title--white {
    color: #fff;
}

.section__title--grey {
    color: #333;
}

.section__title-has-line:after {
    content: "";
    display: block;
    width: 148px;
    height: 1px;
    background-color: var(--yellow);
    margin: 8px auto 0 auto;
}

.page-content {
    padding: 40px 0;
}

.swal2-styled,
.swal2-content {
    font-size: 16px !important;
}

.swal2-content {
    padding: 0 10px !important;
}

input[aria-invalid="true"]::placeholder,
select[aria-invalid="true"]::placeholder {
    color: red !important;
}

.no-scrollbar {
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}


/** Section Promotion **/

.promotion {
    padding: 60px 0;
    clear: both;
}

@media only screen and (max-width: 1023px) {
    .promotion {
        padding: 40px 0;
    }
}

.promotion__item-icon {
    width: 72px;
    height: 72px;
    background-color: var(--primary-color);
    margin-bottom: 16px;
    border: 2px solid transparent;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.promotion__item-icon svg {
    width: 32px;
    height: 32px;
}

@media (hover) {
    .promotion__item:hover .promotion__item-icon {
        background-color: #fff;
        border: 2px solid var(--primary-color);
    }
    .promotion__item:hover .promotion__item-icon svg path {
        fill: var(--primary-color);
    }
}

.promotion__item p {
    font-size: 28px;
    color: var(--primary-color);
}

@media only screen and (max-width: 1199px) {
    .promotion__item p {
        font-size: 19px;
    }
}


/** Border **/

.border-top-lightgrey {
    border-top: 1px solid var(--lightgrey);
}

.border-bottom-lightgrey {
    border-bottom: 1px solid var(--lightgrey);
}


/** flickity-fade **/

.flickity-enabled.is-fade .flickity-slider>* {
    pointer-events: none;
    z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider>.is-selected {
    pointer-events: auto;
    z-index: 1;
}

.flk {
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.flk.flickity-enabled {
    opacity: 1;
}


/** Custom flickity button **/

.custom-flickity-button {
    overflow: hidden;
}

.custom-flickity-button .flickity-button {
    width: 61px;
    height: 61px;
    background-color: #c4c4c466;
}

.custom-flickity-button .flickity-button svg {
    display: none;
}

.custom-flickity-button .flickity-button.previous:after,
.custom-flickity-button .flickity-button.next:after {
    height: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.custom-flickity-button .flickity-button.previous {
    left: -1.5%;
}

.custom-flickity-button .flickity-button.previous:after {
    left: 46%;
    content: url("data:image/svg+xml,%3Csvg width='12' height='19' viewBox='0 0 12 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.30078 16.1083L2.69245 9.49994L9.30078 2.89161' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.custom-flickity-button .flickity-button.next {
    right: -1.5%;
}

.custom-flickity-button .flickity-button.next:after {
    left: 34%;
    content: url("data:image/svg+xml,%3Csvg width='11' height='19' viewBox='0 0 11 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.34961 16.1083L8.95794 9.49994L2.34961 2.89161' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

@media only screen and (max-width: 767px) {
    .custom-flickity-button .flickity-button {
        width: 50px;
        height: 50px;
    }
    .custom-flickity-button .flickity-button.previous {
        left: 2%;
    }
    .custom-flickity-button .flickity-button.next {
        right: 2%;
    }
    .custom-flickity-button .flickity-button.previous:after,
    .custom-flickity-button .flickity-button.next:after {
        height: 18px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

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

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


/** Font **/

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}


/** Text **/

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

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

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

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

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

.text-justify {
    text-align: justify;
}


/** Background **/

.bg-center {
    background-position: center;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-cover {
    background-size: cover;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

@media only screen and (min-width: 1200px) {
    .bg-fixed {
        background-attachment: fixed;
    }
}

.bgc-unset {
    background-color: unset;
}


/** Image **/

.img-block {
    position: relative;
    padding-bottom: 66.67%;
    display: block;
}

.img-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1-1 {
    padding-bottom: 100%;
}

.img-center img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.img-hover img {
    -webkit-transition: transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
}

@media (hover) {
    .img-hover:hover img {
        transform: scale(1.2);
    }
}


/** Infinite loader **/

.page-load-status {
    display: none;
    margin-top: 20px;
}

.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}

.see-more button:disabled,
.see-more button[disabled] {
    display: none;
}

.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: var(--secondary-color);
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}

.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em);
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}


/** Back to top **/

.backToTop {
    z-index: 2222;
    bottom: 50px;
    right: -120%;
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
    border: 1px solid #8d9e8b8c;
}

.backToTop svg path {
    stroke: #fff;
}

.backToTop:hover {
    background-color: var(--secondary-color);
}

.backToTop.show__backToTop {
    right: 10px;
}

.page__title {
    font-size: 24px;
}

.font-italic {
    font-style: italic;
}


/** Grid **/

@media only screen and (min-width: 1204px) {
    .mb-lg-6 {
        margin-bottom: 4rem;
    }
}

.gutter-x-10 {
    --bs-gutter-x: 2rem;
}

@media only screen and (min-width: 1024px) {
    .gy-lg-6 {
        --bs-gutter-y: 4rem;
    }
}

@media only screen and (min-width: 1024px) {
    .gutter-x-lg-20 {
        --bs-gutter-x: 4rem;
    }
}

.col-lg-20p {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media only screen and (min-width: 1024px) {
    .col-lg-20p {
        width: 20%;
    }
}

@media only screen and (max-width: 767px) {
    .scroll-snap-mobile {
        flex-wrap: nowrap !important;
        overflow-x: scroll;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }
    .scroll-snap-mobile>[class*="col"] {
        scroll-snap-align: start;
    }
    .gutter-sm-8 {
        --bs-gutter-x: 2rem;
    }
}

@media only screen and (max-width: 374px) {
    .col-xs-12 {
        width: 100%;
        flex: 0 0 auto;
    }
}


/** Style for post **/

.ws-sgct h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.ws-sgct blockquote {
    font-size: 1.25em;
    width: 80%;
    margin: 64px auto;
    font-style: italic;
    color: #555555;
    padding: 1.2em 30px 1.2em 75px;
    border-left: 6px solid lightgray;
    line-height: 1.6;
    position: relative;
    background: ghostwhite;
    border-radius: 4px;
}

.ws-sgct blockquote::before {
    content: "❝";
    color: lightgray;
    font-size: 2.5em;
    position: absolute;
    left: 1rem;
    top: 0.25rem;
}

.ws-sgct blockquote::after {
    content: "";
}

.ws-sgct blockquote p {
    margin: 0 !important;
}

.ws-sgct code {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    font-size: 0.85rem;
    color: #e83e8c;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.ws-sgct p,
.ws-sgct table {
    margin: 0 0 15px;
    line-height: 1.8;
}

.ws-sgct p:last-child {
    margin-bottom: 0;
}

.ws-sgct table {
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

.ws-sgct table>tbody>tr>td,
.ws-sgct table>tbody>tr>th,
.ws-sgct table>tfoot>tr>td,
.ws-sgct table>tfoot>tr>th,
.ws-sgct table>thead>tr>td,
.ws-sgct table>thead>tr>th {
    border: 1px solid #ddd;
    padding: 7px 10px;
}

.ws-sgct h6 {
    font-size: 18px;
}

.ws-sgct h5 {
    font-size: 21px;
}

.ws-sgct h4 {
    font-size: 23px;
}

.ws-sgct h3 {
    font-size: 25px;
}

.ws-sgct h2 {
    font-size: 27px;
}

@media only screen and (max-width: 1023px) {
    .ws-sgct h6 {
        font-size: 15px;
    }
    .ws-sgct h5 {
        font-size: 18px;
    }
    .ws-sgct h4 {
        font-size: 21px;
    }
    .ws-sgct h3 {
        font-size: 23px;
    }
    .ws-sgct h2 {
        font-size: 25px;
    }
}

.ws-sgct iframe {
    margin: auto;
    width: 100%;
}

.ws-sgct img {
    margin-bottom: 10px;
}

.ws-sgct .syntaxhighlighter {
    padding: 10px 0;
}

.ws-sgct h2,
.ws-sgct h3,
.ws-sgct h4,
.ws-sgct h5,
.ws-sgct h6 {
    margin: 0 0 15px;
}


/* Components
--------------------------------------------- */


/* Button
--------------------------------------------- */

.button {
    padding: 7px 25px !important;
    display: inline-block;
    position: relative;
    border-radius: 9999px;
    outline: none;
    border: 1px solid transparent;
}

.button-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.button-primary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.button-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.button-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.button--white {
    background-color: #fff !important;
    border: 1px solid #313131;
    border-radius: 9999px;
    color: #313131;
}

.button--white:hover {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border-color: var(--secondary-color) !important;
}

body .woocommerce .button--white {
    background-color: #fff !important;
    border: 1px solid #313131 !important;
    border-radius: 9999px !important;
    color: #313131 !important;
}

body .woocommerce .button--white:hover {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border-color: var(--secondary-color) !important;
}

.button-center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* Breadcrumb
--------------------------------------------- */


/** Breadcrumb **/

.rank-math-breadcrumb {
    padding: 13px 0;
    color: #6b6b6b;
    font-size: 16px;
}

.rank-math-breadcrumb a {
    color: #6b6b6b;
}

.rank-math-breadcrumb a:hover {
    color: var(--secondary-color);
}

.rank-math-breadcrumb .last {
    color: var(--primary-color);
}

.rank-math-breadcrumb .separator {
    margin: 0 8px;
    content: url("data:image/svg+xml,%3Csvg width='10' height='12' viewBox='0 0 10 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11L6 6L1 1' stroke='%236B6B6B' stroke-width='0.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 11L9 6L4 1' stroke='%236B6B6B' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}


/* Menu mobile
--------------------------------------------- */


/** Menu Mobile **/

.menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    max-width: 320px;
    background-color: var(--secondary-color);
    z-index: 5555;
    transform: translateX(-100%);
    transition: 0.5s;
    overflow-y: scroll;
    padding-bottom: 50px;
    display: none;
    padding-top: 40px;
}

.menu-mobile ul {
    padding: 0 10px;
    list-style: none;
}

.menu-mobile ul li {
    position: relative;
}

.menu-mobile ul li a {
    color: #fff;
    font-size: 1.6rem;
    display: block;
    padding: 10px;
}

.menu-mobile ul li .li-plus {
    position: absolute;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: block;
    top: 0;
    right: 0;
    color: #fff;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.menu-mobile ul li .li-plus:before,
.menu-mobile ul li .li-plus:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: #fff;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -moz-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    -o-transform: translate(-50%, -50%) rotate(-90deg);
}

.menu-mobile ul li .li-plus:before {
    width: 11px;
    height: 2px;
}

.menu-mobile ul li .li-plus:after {
    width: 2px;
    height: 11px;
}

.menu-mobile ul li .clicked {
    transform: rotate(180deg);
}

.menu-mobile ul li .clicked.li-plus:before {
    display: none;
}

.menu-mobile ul li>ul {
    margin-top: 0;
    display: none;
}

.menu-mobile ul li>ul li {
    border: none;
    margin-bottom: 5px;
}

.menu-mobile ul li>ul li a {
    padding: 5px 5px 5px 25px;
}

.menu-mobile ul .current-menu-item>a {
    color: var(--primary-color);
    font-weight: 600;
}

.menu-mobile ul .current-menu-parent ul {
    display: block;
}

.menu-mobile .menu-mobile-close {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    top: 0;
    right: 10px;
}

.menu-mobile .menu-mobile-close svg path {
    stroke: #fff;
}

.menu-mobile.menu-mobile-active {
    transform: translate(0);
    display: block;
}

.menu-mobile-search {
    background-color: #fff;
    box-shadow: 0px 5px 14px -8px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
    width: 88%;
    margin: 10px auto;
    padding-right: 10px;
}

.menu-mobile-search button {
    border-radius: 10px 0 0 10px;
    padding: 5px 8px 8px 8px;
    border: none;
    outline: none;
    background-color: transparent;
}

.menu-mobile-search input {
    border-radius: 10px 0 0 10px;
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    padding-left: 15px;
}

.overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5554;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.overlay.overlay-active {
    opacity: 1;
    visibility: visible;
}

.menu-mobile__account {
    border-bottom: 1px solid #ffffff5c;
    padding: 10px 19px !important;
    margin-bottom: 10px;
}

.menu-mobile__account a {
    padding-left: 0 !important;
}

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

.menu-mobile__account svg {
    margin-right: 5px;
}

.menu-mobile__account svg path {
    fill: #fff;
}

.header__search-mobile-btn svg path {
    stroke: var(--primary-color);
}

.box-search_header {
    position: fixed;
    top: 30%;
    left: 50%;
    transition: 0.3s ease-in-out;
    animation: show_box_hd 0.5s forwards;
    text-align: center;
    z-index: 9999;
    display: none;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.box-search_header.active {
    display: block;
}

@keyframes show_box_hd {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) scale(0.7);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) scale(1);
    }
}

.box-search_header label {
    font-size: 26px;
    font-weight: 700;
    text-transform: capitalize;
    padding-bottom: 20px;
    color: var(--primary-color);
}

.box-search_header form {
    display: flex;
}

@media only screen and (max-width: 768px) {
    .box-search_header form {
        width: 80vw;
    }
}

.box-search_header form input {
    border: none;
    outline: none;
    width: 400px;
    height: 40px;
    padding-left: 10px;
    border: 1px solid #ccc;
    border-right: none;
}

@media only screen and (max-width: 768px) {
    .box-search_header form input {
        width: 100%;
    }
}

.box-search_header form button {
    width: 40px;
    background: var(--primary-color);
    border: none;
    outline: none;
    position: relative;
}

.box-search_header form button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.box-search_header form button svg path {
    stroke: #fff;
}

.box-search_header .search-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-search_header .search-close svg path {
    stroke: var(--primary-color);
}


/* Pagination
--------------------------------------------- */


/** Pagination **/

.hazo-pagination {
    padding: 40px 0;
}

.hazo-pagination ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
}

.hazo-pagination ul li {
    margin: 0 3px;
    font-weight: 500;
    font-size: 1.8rem;
    border: 2px solid #e3e7ea;
    border-radius: 4px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hazo-pagination ul li:hover {
    border-color: var(--primary-color);
}

.hazo-pagination ul li a {
    color: #687188;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.hazo-pagination ul li a:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.hazo-pagination ul li svg {
    height: 15px;
}

.hazo-pagination ul li svg path {
    fill: #cdcecd;
}

.hazo-pagination ul li:hover svg path {
    fill: #fff;
}

.hazo-pagination ul .active {
    border: 2px solid var(--primary-color);
}

.hazo-pagination ul .active a {
    color: #fff;
    background-color: var(--primary-color);
}


/* Header
--------------------------------------------- */

.header {
    background: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.header ul,
.header li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__logo {
    max-width: 190px;
    padding: 7px 0;
}

.header-inner {
    max-width: calc(100% - 190px);
    flex-basis: calc(100% - 190px);
    padding-left: 40px;
}

@media only screen and (max-width: 1439px) {
    .header__logo {
        max-width: 130px;
    }
    .header-inner {
        max-width: calc(100% - 130px);
        flex-basis: calc(100% - 130px);
        padding-left: 20px;
    }
}

@media only screen and (max-width: 1199px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 2222;
    }
    .header-inner {
        max-width: 100%;
        flex-basis: 100%;
        padding-left: 0;
    }
}

.header__top {
    border-bottom: 1px solid #cbcaca;
    padding: 13px 10px 13px 0;
}

@media only screen and (max-width: 1199px) {
    .header__top {
        justify-content: space-between;
        border: none;
        padding: 7px 0;
    }
}

.header__top ul li {
    margin: 0 13.5px;
}

.header__top ul li a {
    font-size: 12px;
    font-weight: 600;
    line-height: calc(15 / 12);
    color: var(--primary-color);
}

.header__top ul li a:hover {
    color: var(--secondary-color);
}

.header__top ul li.current-menu-item a {
    color: var(--secondary-color);
}

.header__search {
    border: 1px solid #234c20;
    box-sizing: border-box;
    border-radius: 35px;
    padding: 0 13px 0 13px;
    margin-left: 17.5px;
    margin-right: 10px;
    width: 205px;
    height: 37px;
}

.header__search input {
    max-width: calc(100% - 32px);
    flex-basis: calc(100% - 32px);
    padding: 4px 0 7px 0;
}

.header__search input::placeholder {
    color: #cbcbcb;
    font-size: 12px;
}

.header__search button {
    max-width: 32px;
    flex-basis: 32px;
}

.header__search input,
.header__search button {
    border: none;
    background-color: transparent;
    outline: none;
}

.header__account nav {
    margin-right: 10px;
}

.header__account nav li {
    margin: 0;
    position: relative;
}

.header__account nav li ul {
    position: absolute;
    top: 100%;
    width: 150px;
    background-color: #fff;
    box-shadow: 0px 0px 8px #0000001a;
    border-radius: 8px;
    z-index: 3333;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.header__account nav li ul li:not(:last-child) {
    border-bottom: 1px solid var(--lightgrey);
}

.header__account nav li ul li a {
    display: block;
    padding: 13px 12px;
}

.header__account nav li:hover ul {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.header__language {
    margin-left: 15px;
    line-height: 1;
}

@media only screen and (min-width: 1200px) {
    .header__language {
        margin-left: 20px;
    }
}

.header__cart {
    margin-left: 20px;
    position: relative;
    line-height: 1;
}

@media screen and (max-width:1199px) {
    .header__cart svg path {
        fill: var(--primary-color);
    }
    .header__language ul li a {
        font-size: 16px;
        line-height: 1;
    }
}

.header__cart span {
    position: absolute;
    width: 20px;
    height: 20px;
    color: #fff;
    background-color: var(--secondary-color);
    right: -10px;
    bottom: 10px;
    font-size: 12px;
}

.header__language ul {
    display: flex;
    align-items: center;
}

.header__language ul li {
    margin: 0;
}

.header__language ul li:not(:last-child):after {
    content: "/";
}

.header__menu {
    padding: 22px 0;
}

@media only screen and (max-width: 1439px) {
    .header__menu {
        padding: 15px 0;
    }
}

.header__menu ul li {
    position: relative;
    margin-right: 1px;
}

.header__menu ul li a {
    display: inline-block;
    padding: 13px 17px;
    line-height: 1;
    border-radius: 32px;
    color: #333;
    font-weight: 600;
}

@media only screen and (max-width: 1439px) {
    .header__menu ul li a {
        padding: 10px 13px;
    }
}

.header__menu ul li a:hover {
    background: var(--primary-color);
    color: #fff;
}

.header__menu ul li ul {
    position: absolute;
    top: calc(100% + 22px);
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
    width: fit-content;
    min-width: 250px;
    border-radius: 8px;
    left: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 2222;
}

.header__menu ul li ul:after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    bottom: calc(100% - 7px);
    left: 20px;
    box-shadow: -1px -1px 10px -2px rgba(0, 0, 0, 0.5);
}

.header__menu ul li ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #fff;
    z-index: 9;
    border-radius: 8px;
}

.header__menu ul li ul li {
    position: relative;
    z-index: 99;
    background-color: #fff;
}

.header__menu ul li ul li:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}

.header__menu ul li ul li a {
    display: block;
    padding: 6px 11px;
    line-height: 1.6;
    font-weight: 400;
}

.header__menu ul li ul li a:hover {
    background-color: #fff;
    color: var(--secondary-color) !important;
}

.header__menu ul li ul li.current-menu-item a {
    background-color: #fff;
    color: #333;
}

.header__menu ul li ul li ul {
    position: absolute;
    left: 100%;
    top: -6px;
}

.header__menu ul li ul li ul:after,
.header__menu ul li ul li ul:before {
    display: none;
}

.header__menu ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.header__menu ul .current-menu-item>a {
    background: var(--primary-color);
    color: #fff;
}

.header__menu ul .menu-item-has-children:before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    height: 22px;
    left: 0;
    top: 100%;
    background-color: transparent;
}

.header__menu ul .menu-item-has-children ul li.menu-item-has-children:before {
    display: none;
}

.header__bottom {
    background-color: #fff;
}

.header__bottom.active {
    position: fixed;
    width: 100%;
    left: 0;
    animation: stuck-header 1s;
    z-index: 999;
    top: 0;
    box-shadow: 0px -2px 10px 0px #807474;
}

.header__bottom.active .header__logo-sticky {
    display: block;
}

.header__bottom.active .header__menu {
    width: calc(100% - 130px);
    flex: 0 0 auto;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header__bottom.active .header__menu ul {
    justify-content: center;
}

.header__logo-sticky {
    display: none;
    width: 130px;
    flex: 0 0 auto;
    padding: 7px 0;
}

.header__bars {
    width: 66px;
}

.header__bars svg path {
    stroke: var(--primary-color);
}

.logo-mobile {
    width: 90px;
}

@keyframes stuck-header {
    0% {
        transform: translateY(-300px);
    }
    100% {
        transform: translateY(0);
    }
}


/* Home
--------------------------------------------- */


/** Home slider **/

.home-slider .carousel-cell__content {
    top: 55.9%;
}

@media only screen and (max-width: 1199px) {
    .home-slider .carousel-cell__content {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.home-slider .carousel-cell .home-slider__text,
.home-slider .carousel-cell .home-slider__link {
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    opacity: 0;
    visibility: hidden;
    transition-delay: 0.5s;
}

.home-slider .carousel-cell .home-slider__text {
    font-family: utmdt, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 150px;
    line-height: 1;
    color: #fff;
    text-shadow: 1px 0px 23px rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    -webkit-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.home-slider .carousel-cell .home-slider__link {
    -webkit-transition-duration: 0.7s;
    -o-transition-duration: 0.7s;
    transition-duration: 0.7s;
}

.home-slider .carousel-cell .button {
    font-size: 16px;
    padding: 17.5px 50px;
}

@media only screen and (max-width: 1023px) {
    .home-slider .carousel-cell .home-slider__text {
        font-size: 116px;
        margin-bottom: 30px;
    }
    .home-slider .carousel-cell .button {
        padding: 10px 30px 13px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .home-slider .carousel-cell .home-slider__text {
        font-size: 80px;
    }
    .home-slider .carousel-cell .button {
        font-size: 15px;
        padding: 10px 18px 13px 18px;
    }
}

.home-slider .carousel-cell.is-selected .home-slider__text,
.home-slider .carousel-cell.is-selected .home-slider__link {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.home-slider .carousel-cell picture {
    height: 100%;
    display: block;
}

@media only screen and (max-width: 1199px) {
    .home-slider .carousel-cell picture {
        height: 50vh;
    }
}

.home-slider .carousel-cell picture img {
    height: 100%;
    object-fit: cover;
}

.home-slider .flickity-button {
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.4);
    outline: none;
}

@media only screen and (max-width: 1023px) {
    .home-slider .flickity-button {
        display: none;
    }
}

.home-slider .flickity-button svg {
    display: none;
}

.home-slider .flickity-button-icon {
    width: 22%;
    height: 40%;
    color: #fff;
}

.home-slider .flickity-button.next:after,
.home-slider .flickity-button.previous:after {
    top: 50% !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    height: 30px;
}

.home-slider .flickity-button.next {
    right: -2%;
}

.home-slider .flickity-button.next:after {
    content: url("data:image/svg+xml,%3Csvg width='17' height='31' viewBox='0 0 17 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 28.4729L15 15.3547L2 2.23658' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    left: 35% !important;
}

@media only screen and (max-width: 1023px) {
    .home-slider .flickity-button.next:after {
        left: 30%;
    }
}

.home-slider .flickity-button.previous {
    left: -2%;
}

.home-slider .flickity-button.previous:after {
    content: url("data:image/svg+xml,%3Csvg width='17' height='31' viewBox='0 0 17 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 28.4729L2 15.3547L15 2.23658' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    right: 35% !important;
    left: unset;
}

@media only screen and (max-width: 1023px) {
    .home-slider .flickity-button.previous:after {
        right: 30%;
    }
}

@media only screen and (max-width: 1199px) {
    .home-slider .flickity-button {
        width: 100px;
        height: 100px;
    }
    .home-slider .flickity-button.next {
        right: -3%;
    }
    .home-slider .flickity-button.previous {
        left: -3%;
    }
}

@media only screen and (max-width: 1023px) {
    .home-slider .flickity-button {
        width: 70px;
        height: 70px;
    }
}

.home-slider .flickity-page-dots {
    bottom: 20px;
}

@media only screen and (min-width: 1024px) {
    .home-slider .flickity-page-dots {
        display: none;
    }
}

.home-slider .flickity-page-dots .dot {
    background-color: var(--secondary-color);
}


/** Home intro **/

.home-intro {
    padding: 123px 0;
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width: 1023px) {
    .home-intro {
        padding: 60px 0;
    }
}

.home-intro-inner {
    width: 38.6%;
    margin-left: auto;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.5);
    padding: 39px 0 47px 89px;
}

@media only screen and (max-width: 1199px) {
    .home-intro-inner {
        width: 63%;
    }
}

@media only screen and (max-width: 1023px) {
    .home-intro-inner {
        width: 100%;
        padding: 35px;
    }
}

@media only screen and (min-width: 1024px) {
    .home-intro-inner:after {
        position: absolute;
        content: "";
        left: 100%;
        top: 0;
        width: 1000%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
}

@media only screen and (max-width: 767px) {
    .home-intro-inner {
        padding: 15px;
    }
}

.home-intro-inner h2 {
    font-size: 28px;
}

.home-intro-inner p {
    line-height: 1.65;
}


/** Home Ingredient **/

.home-ingredient {
    padding: 40px 0 60px 0;
    position: relative;
}

@media only screen and (max-width: 1023px) {
    .home-ingredient {
        padding: 40px 0 20px 0;
    }
}

.home-ingredient:after {
    content: "";
    position: absolute;
    right: 0;
    top: 174px;
    background-image: url(../images/decor-1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 341px;
    padding-bottom: 26%;
    z-index: 1;
}

@media screen and (max-width: 1900px) {
    .home-ingredient:after {
        width: 200px;
        bottom: 0;
        top: unset;
    }
}

@media only screen and (max-width: 1365px) {
    .home-ingredient:after {
        display: none;
    }
}

.home-ingredient:before {
    content: "";
    position: absolute;
    left: 0;
    top: 210%;
    background-image: url(../images/decor-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 15%;
}

@media only screen and (max-width: 1900px) {
    .home-ingredient:before {
        width: 200px;
        top: 168%;
    }
}

@media only screen and (max-width: 1365px) {
    .home-ingredient:before {
        display: none;
    }
}

.home-ingredient-inner {
    margin-top: 31px;
    padding: 16px 0 60px 0;
}

@media only screen and (max-width: 1023px) {
    .home-ingredient-inner {
        padding-bottom: 40px;
    }
}

.home-ingredient__item .item__image {
    padding-bottom: 63.5%;
    margin-bottom: 13px;
}

.home-ingredient__item .item__name {
    font-size: 20px;
    margin-bottom: 18px;
}


/** Home Product **/

.home-product {
    padding: 24px 0 0 0;
}

@media only screen and (max-width: 767px) {
    .home-product {
        padding: 30px 0 0 0;
    }
}

.home-product-inner {
    margin-top: 31px;
}

.home-product-carousel {
    /* margin: 0; */
}


/** Home news **/

.home-news {
    margin: 48px 0 30px 0;
    position: relative;
}

.home-news:after {
    content: "";
    position: absolute;
    right: 0;
    top: -38%;
    padding-bottom: 25%;
    width: 387px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/decor-3.png);
}

@media only screen and (max-width: 1900px) {
    .home-news:after {
        display: none;
    }
}

.home-news-inner {
    padding-top: 60px;
}

@media only screen and (max-width: 1023px) {
    .home-news-inner {
        padding-top: 40px;
    }
}

.home-news .news__item-desc {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5 !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-news__carousel {
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .home-news__carousel .flickity-button {
        display: none;
    }
}

.home-news__carousel .flickity-page-dots {
    position: relative;
    bottom: unset;
}

.home-news__carousel .flickity-page-dots .dot {
    background-color: var(--secondary-color);
}

@media only screen and (min-width: 768px) {
    .home-news__carousel .flickity-page-dots {
        display: none;
    }
}


/** Home feedback **/

.home-feedback {
    padding: 30px 0;
    position: relative;
}

.home-feedback:before {
    content: "";
    background-image: url(../images/decor-4.png);
    position: absolute;
    left: 0;
    top: 0;
    width: 376px;
    background-size: contain;
    padding-bottom: 26%;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 1900px) {
    .home-feedback:before {
        /* display: none; */
        width: 200px;
        top: unset;
        bottom: -7%;
    }
}

@media screen and (max-width: 1366px) {
    .home-feedback:before {
        display: none;
    }
}

.home-feedback-inner {
    padding-top: 60px;
}

@media only screen and (max-width: 1023px) {
    .home-feedback-inner {
        padding-top: 40px;
    }
}

.home-feedback-carousel {
    margin-top: 31px;
}

@media only screen and (min-width: 1200px) {
    .home-feedback-carousel .carousel-cell:nth-child(odd) .feedback__item {
        padding-right: 43px;
    }
    .home-feedback-carousel .carousel-cell:nth-child(even) .feedback__item {
        padding-left: 43px;
    }
}

.home-feedback-carousel .flickity-page-dots {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: unset;
    margin-top: 40px;
}

.home-feedback-carousel .flickity-page-dots .dot {
    width: 4px;
    height: 4px;
    margin: 0 6px;
    border-radius: unset;
    background-color: var(--primary-color);
    opacity: 1;
}

.home-feedback-carousel .flickity-page-dots .is-selected {
    width: 16px;
    height: 16px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='6' width='4' height='4' fill='%23305901'/%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%23305901'/%3E%3C/svg%3E%0A");
}

.feedback__item-head {
    margin-bottom: 16px;
}

.feedback__item-avatar {
    width: 60px;
    height: 60px;
    margin-right: 11px;
}

.feedback__item-avatar img {
    width: 100%;
    height: 100%;
}

.feedback__item-info p {
    font-size: 18px;
}

.feedback__item-content {
    font-style: italic;
}

.feedback__item-content p {
    line-height: 1.75;
}


/** Home Partner **/

.home-partner-inner {
    padding: 50px 0 30px;
}

.partner__item img {
    width: 83.335%;
    height: 83.335%;
    object-fit: contain;
}


/** Home Contact **/

.home-contact {
    padding: 62px 0;
}

.home-contact-inner {
    width: 72%;
    flex: 0 0 auto;
    background: linear-gradient( 0deg, rgba(35, 76, 32, 0.8), rgba(35, 76, 32, 0.8)), rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 8px;
    padding: 26px 0;
}

.home-contact__form {
    width: 56.35%;
    margin: 0 auto;
}

.home-contact__form form {
    margin-top: 20px;
    position: relative;
    /* Firefox */
}

.home-contact__form form input::-webkit-outer-spin-button,
.home-contact__form form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.home-contact__form form input[type="number"] {
    -moz-appearance: textfield;
}

.home-contact__form form input,
.home-contact__form form textarea {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(7px);
    border-radius: 4px;
    border: 1px solid transparent;
    outline: none;
    padding: 7.5px 24px;
    margin-top: 15px;
    line-height: 1.85;
}

.home-contact__form form input::placeholder,
.home-contact__form form textarea::placeholder {
    color: #333;
}

.home-contact__form form button {
    width: 245px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    font-size: 16px;
    padding: 7.5px 0;
    margin-top: 35px;
    border: none;
    outline: none;
    color: #333;
}

.home-contact__form form button:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.home-contact__form form .ajax-loader {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media only screen and (max-width: 1199px) {
    .home-contact__form {
        width: 83%;
    }
}

@media only screen and (max-width: 1023px) {
    .home-contact-inner {
        width: 80%;
    }
}

@media only screen and (max-width: 767px) {
    .home-contact-inner {
        width: 100%;
    }
    .home-contact__form {
        width: 90%;
    }
}


/** Product Item **/

.product__item {
    background-color: #fff;
    transition: filter 0.3s;
    padding-bottom: 35px;
}

@media only screen and (max-width: 1023px) {
    .product__item {
        padding-bottom: 0;
    }
}

@media (hover) {
    .product__item:hover {
        filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
    }
}

.product__item-bottom {
    padding: 0 35px;
}

@media only screen and (max-width: 1023px) {
    .product__item-bottom {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 767px) {
    .product__item-bottom {
        padding: 0;
    }
}

.product__item-button {
    width: 120px;
    margin-left: auto!important;
    margin-right: auto!important;
    display: block;
}

.product__item-image {
    margin-bottom: 16px;
    padding-bottom: 91.93%;
}

.product__item-image img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.product__item-name {
    font-size: 16px;
    margin-bottom: 16px;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2 !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media only screen and (max-width: 767px) {
    .product__item-name {
        margin-bottom: 10px;
    }
}

.product__item-name a {
    color: #000;
}

.product__item-info {
    margin-bottom: 13px;
}

.product__item-info .info__rating {
    margin-right: 7px;
    line-height: 1;
}

.product__item .price {
    margin-bottom: 23px;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__item .price del {
    margin-right: 11px;
}

@media only screen and (max-width: 767px) {
    .product__item-name {
        font-size: 15px;
    }
    .product__item-info {
        flex-direction: column;
    }
    .product__item-info .info__rating {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 767px) and (max-width: 767px) {
    .product__item-info .info__rating {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .product__item-info svg {
        width: 12px;
        height: 12px;
    }
    .product__item .price {
        margin-bottom: 15px;
    }
    .product__item .price del span {
        font-size: 13px;
    }
    .product__item .price ins span {
        font-size: 15px;
    }
}

@media only screen and (max-width: 424px) {
    .product__item-name {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 374px) {
    .product__item-info {
        flex-direction: row;
    }
}

.product__item button {
    padding: 6.5px 25px !important;
}

.price {
    font-weight: 600;
}

.price del {
    color: var(--secondary-color);
    margin-right: 13px;
}

.price del span {
    color: var(--secondary-color);
}

.price del span {
    font-size: 16px;
}

.price ins {
    text-decoration: none;
}

.price span {
    color: var(--primary-variant);
    font-size: 18px;
}

@media screen and (max-width:767px) {
    .price span {
        font-size: 14px;
    }
}

.price .woocommerce-Price-amount.amount {
    margin: 0 5px;
}


/** Product page **/

.product-page-inner {
    padding: 60px 0 45px 0;
}

.product-page__category {
    margin-top: 24px;
}

.product__category-item {
    -webkit-transition: background-color 0.3s, box-shadow 0.3s;
    -o-transition: background-color 0.3s, box-shadow 0.3s;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.product__category-item p {
    color: #333;
    font-size: 20px;
    position: relative;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.product__category-item p:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
    z-index: 1;
}

.product__category-item p span {
    position: relative;
    z-index: 9;
}

.product__category-item:hover {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.product__category-item:hover p {
    color: #fff;
}

.product__category-item:hover p:after {
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .product__category-item p {
        font-size: 15px;
    }
}

.product__category-item-image {
    padding-bottom: 63.95%;
}


/** Product Detail **/

.product-detail__head {
    padding: 40px 0;
}

@media only screen and (min-width: 1024px) {
    .product-detail__head-inner {
        padding-left: 30px;
    }
}

@media only screen and (min-width: 1200px) {
    .product-detail__head-inner {
        padding-left: 50px;
    }
}

.product-detail__head-inner .price {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary-variant);
    font-size: 20px;
}

.product-detail__head-inner .price del {
    color: #6b6b6b !important;
}

.product-detail__carousel {
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

@media only screen and (max-width: 374px) {
    .product-detail__carousel {
        padding: 20px 10px;
    }
}

.product-detail__carousel img {
    object-fit: contain;
}

.product-detail__carousel-main .img-block {
    padding-bottom: 81%;
}

.product-detail__name {
    font-size: 24px;
    margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
    .product-detail__name {
        font-size: 21px;
    }
}

.product-detail__info {
    margin-bottom: 8px;
}

.product-detail__info .info__rating {
    line-height: 1;
    margin-right: 8px;
}

.product-detail__status {
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .product-detail__status {
        margin-bottom: 10px;
    }
}

.product-detail__status strong {
    color: #000;
}

@media only screen and (max-width: 767px) {
    .product-detail__status p {
        width: 100%;
        margin-bottom: 10px;
    }
}

.product-detail__status p:not(:last-child) {
    margin-right: 20px;
}

.product-detail__short-desc {
    font-size: 16px;
    margin-bottom: 28px;
}

.product-detail__short-desc p {
    margin-bottom: 10px;
}

.product-detail__cart .quantity {
    border: 1px solid #8c8c8c;
    border-radius: 9999px;
    overflow: hidden;
    /* Firefox */
}

.product-detail__cart .quantity button {
    width: 43px;
    background-color: #fff;
    outline: none;
    border: none;
    font-size: 18px;
    color: #8c8c8c;
}

.product-detail__cart .quantity button.minus {
    border-right: 1px solid #8c8c8c;
}

.product-detail__cart .quantity button.plus {
    border-left: 1px solid #8c8c8c;
}

.product-detail__cart .quantity .qty {
    width: 84px;
}

.product-detail__cart .quantity input {
    width: 100%;
    border: none;
    outline: none;
    height: 47px;
    text-align: center;
    font-size: 18px;
    color: #8c8c8c;
}

@media only screen and (max-width: 767px) {
    .product-detail__cart .quantity input {
        height: 41px;
    }
    .product-detail__cart .quantity .qty {
        width: 70px;
    }
}

@media only screen and (max-width: 424px) {
    .product-detail__cart .quantity .qty {
        flex: 1;
    }
}

.product-detail__cart .quantity input::-webkit-outer-spin-button,
.product-detail__cart .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-detail__cart .quantity input[type="number"] {
    -moz-appearance: textfield;
}

.product-detail__cart-submit {
    height: 47px;
    margin-left: 23px;
    padding-left: 50px;
    padding-right: 50px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .product-detail__cart-submit {
        height: 41px;
    }
}

@media only screen and (max-width: 424px) {
    .product-detail__cart-submit {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}

.product-detail__related {
    padding: 40px 0;
}

.product-detail__related .section__title {
    margin-bottom: 20px;
}

@media only screen and (max-width: 1023px) {
    .product-detail__related .section__title {
        margin-bottom: 10px;
    }
}

.product-detail__carousel-left {
    max-width: 84px;
    flex-basis: 84px;
}

.product-detail__carousel-left .product-carousel-nav {
    max-height: 355px;
    overflow-y: scroll;
    position: relative;
}

.product-detail__carousel-left .product-carousel-nav .carousel-cell {
    margin-bottom: 26px;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .product-detail__carousel-left .product-carousel-nav .carousel-cell {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 424px) {
    .product-detail__carousel-left .product-carousel-nav .carousel-cell {
        margin-bottom: 15px;
    }
}

.product-detail__carousel-left .product-carousel-nav .carousel-cell.is-nav-selected .carousel-cell__image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.product-detail__carousel-left .product-carousel-nav .carousel-cell__image {
    padding-bottom: 76.2%;
}

@media only screen and (max-width: 767px) {
    .product-detail__carousel-left .product-carousel-nav {
        max-height: 265px;
    }
}

@media only screen and (max-width: 424px) {
    .product-detail__carousel-left {
        max-width: 60px;
        flex-basis: 60px;
    }
    .product-detail__carousel-left .product-carousel-nav {
        max-height: 230px;
    }
}

.product-detail__carousel-right {
    max-width: calc(100% - 84px);
    flex-basis: calc(100% - 84px);
    padding-left: 38px;
}

.product-detail__carousel-right .carousel-cell__image {
    padding-bottom: 81.375%;
}

@media only screen and (max-width: 767px) {
    .product-detail__carousel-right {
        padding-left: 15px;
    }
    .product-detail__carousel-right .carousel-cell__image {
        padding-bottom: 100%;
    }
}

@media only screen and (max-width: 424px) {
    .product-detail__carousel-right {
        max-width: calc(100% - 60px);
        flex-basis: calc(100% - 60px);
    }
}

.product-detail__carousel .product-carousel-main .flickity-button {
    background-color: var(--lightgrey);
}

@media only screen and (max-width: 767px) {
    .product-detail__carousel .product-carousel-main .flickity-button {
        width: 30px;
        height: 30px;
    }
}

.product-detail__carousel .product-carousel-main .flickity-button svg {
    display: none;
}

.product-detail__carousel .product-carousel-main .flickity-button.previous:after,
.product-detail__carousel .product-carousel-main .flickity-button.next:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 18px;
}

@media only screen and (max-width: 767px) {
    .product-detail__carousel .product-carousel-main .flickity-button.previous {
        left: -10px;
    }
}

.product-detail__carousel .product-carousel-main .flickity-button.previous:after {
    content: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.7205 10.744L1.97632 5.9998L6.7205 1.25562' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

@media only screen and (max-width: 767px) {
    .product-detail__carousel .product-carousel-main .flickity-button.next {
        right: -10px;
    }
}

.product-detail__carousel .product-carousel-main .flickity-button.next:after {
    content: url("data:image/svg+xml,%3Csvg width='7' height='13' viewBox='0 0 7 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.23286 11.0099L5.97705 6.26567L1.23286 1.52148' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

@media (hover) {
    .product-detail__carousel .product-carousel-main .flickity-button:hover {
        background-color: var(--secondary-color);
    }
    .product-detail__carousel .product-carousel-main .flickity-button:hover.previous:after {
        content: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.7205 10.744L1.97632 5.9998L6.7205 1.25562' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }
    .product-detail__carousel .product-carousel-main .flickity-button:hover.next:after {
        content: url("data:image/svg+xml,%3Csvg width='7' height='13' viewBox='0 0 7 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.23286 11.0099L5.97705 6.26567L1.23286 1.52148' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }
}

.product-detail__tab {
    padding: 20px 0 40px 0;
}

.product-detail__tab nav ul li {
    padding-bottom: 5px;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.product-detail__tab nav ul li:not(:last-child) {
    margin-right: 60px;
}

.product-detail__tab nav ul li:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    display: block;
    background-color: var(--secondary-color);
    -webkit-transition: width 0.2s;
    -o-transition: width 0.2s;
    transition: width 0.2s;
}

@media (hover) {
    .product-detail__tab nav ul li:hover {
        color: var(--secondary-color);
    }
}

.product-detail__tab nav ul li.active {
    color: var(--secondary-color);
}

.product-detail__tab nav ul li.active:after {
    width: 100%;
}

.product-detail__tab-inner {
    padding-top: 20px;
}

.product-detail__tab-inner .tab-content {
    display: none;
}

.product-detail__tab-inner .tab-content.active {
    display: block;
}

.product-archive__head {
    padding: 40px 0;
}

.product-archive__head .section__title {
    margin-bottom: 24px;
}

.product-archive__head .product-archive__desc {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.product-archive__desc .term-description a {
    display: inline-block;
}

.product-archive__head .product-archive__desc.active {
    opacity: 1;
}

.product-archive__head .cuttr__readmore {
    color: var(--primary-variant);
    text-decoration: underline;
    cursor: pointer;
    display: block;
    text-align: center;
}

@media (hover) {
    .product-archive__head .cuttr__readmore:hover {
        color: var(--secondary-color);
    }
}

.product-archive__head .cuttr__readmore[aria-expanded="true"] {
    display: block;
    text-align: center;
    margin-top: 15px;
}

.product-archive__list {
    padding: 20px 0 0 0;
}

.product-archive__list .hazo-archive-template {
    padding-left: 11.165px;
    padding-right: 11.165px;
}

@media only screen and (min-width: 1024px) {
    .product-archive__left {
        width: 23.416%;
        padding-right: 20px;
        border-right: 1px solid var(--lightgrey);
    }
}

.product-archive__right {
    padding-bottom: 60px;
}

@media only screen and (min-width: 1024px) {
    .product-archive__right {
        padding-left: 16px;
        width: calc(100% - 23.416%);
    }
}

.product-archive__right .woocommerce-info {
    margin-top: 40px;
}

.product-archive-inner .view-more-button {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
    padding: 11.5px 61px;
    font-size: 16px;
}


/** Product Item **/

@media only screen and (max-width: 1199px) {
    .product__item-bottom {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 767px) {
    .product__item-bottom {
        padding: 0;
    }
}

.category-product-button {
    width: 100%;
    padding: 8px 24px;
    background-size: 8px 10px;
    border: 2px solid #c0ccc8;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-size: 18px;
    text-align-last: left;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M6.5 6L0.5 11.5L0.5 0.5L6.5 6Z' fill='%23999696'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='11' height='6' fill='white' transform='translate(0.5 11.5) rotate(-90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center right 10px;
}


/** News Item **/

.news__item {
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    height: 100%;
}

.news__item-bottom {
    padding: 14px;
}

.news__item-image {
    padding-bottom: 56.316%;
}

.news__item-title {
    font-size: 18px;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.news__item-desc {
    color: #333;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3 !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news__item:hover .news__item-title {
    color: var(--secondary-color) !important;
}


/** Archive News **/

.archive__news {
    padding: 40px 0;
}

.archive__news .view-more-button {
    margin-top: 45px;
    padding: 11.5px 61px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    font-size: 16px;
}

@media only screen and (max-width: 767px) {
    .archive__news .view-more-button {
        padding: 8px 30px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .archive__news .news__item-title {
        font-size: 15px;
        margin-bottom: 10px !important;
    }
    .archive__news .news__item-desc {
        display: -webkit-box !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3 !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .archive__news .news__item-bottom {
        padding: 10px;
    }
}


/** Single news **/

@media only screen and (max-width: 1023px) {
    .single__news {
        padding-bottom: 30px;
    }
}

.single__news-title {
    font-size: 24px;
}

.single__news-left {
    padding-bottom: 60px;
}

@media only screen and (min-width: 1024px) {
    .single__news-left {
        border-right: 1px solid var(--lightgrey);
        padding-right: 0;
    }
}

@media only screen and (max-width: 1023px) {
    .single__news-left {
        padding-bottom: 20px;
    }
}

.single__news-content {
    padding: 19px 20px 28px 0;
}

.single__news-content .ws-sgct {
    color: #333;
}

.single__news-info {
    margin-bottom: 26px;
}

@media only screen and (max-width: 767px) {
    .single__news-info {
        margin-bottom: 30px;
    }
}

.single__news-info p {
    color: var(--primary-variant);
}

.single__news-info .info-date:before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-variant);
    margin-right: 5px;
}

.single__news-social {
    padding: 10px 0 40px 0;
}

@media only screen and (max-width: 767px) {
    .single__news-social {
        padding-top: 10px;
        padding-bottom: 20px;
    }
}

.single__news-share {
    width: 30px;
    height: 30px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    margin-right: 20px;
}

.single__news-share svg {
    width: 50%;
    height: 50%;
}

.single__news-share:hover {
    background-color: var(--secondary-color) !important;
}

.single__news-share:hover svg path {
    fill: #fff !important;
}

.single__news-tag {
    padding-top: 10px;
}

.single__news-tag ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 0;
}

.single__news-tag ul li {
    border: 1px solid #919191;
    box-sizing: border-box;
    border-radius: 4px;
    margin: 5px 8px;
}

.single__news-tag ul li.tag-head {
    padding: 4px 15px;
}

.single__news-tag ul li a {
    font-size: 16px;
    font-weight: 500;
    display: block;
    color: #000;
    padding: 4px 15px;
}

.single__news-tag ul li a:hover {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.single__news-comment {
    padding: 40px 20px 20px 0;
}

@media only screen and (max-width: 1023px) {
    .single__news-comment {
        padding-bottom: 40px;
    }
}

.single__news-comment .comment-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.single__news-related {
    margin-top: 20px;
}

@media only screen and (min-width: 1024px) {
    .single__news-related {
        padding-right: 20px;
    }
}

.single__news-related .section__title {
    margin-bottom: 25px;
}

@media only screen and (max-width: 1023px) {
    .single__news-related {
        box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);
        border-radius: 8px;
        overflow: hidden;
    }
    .single__news-related .section__title {
        margin: 0;
        padding: 15px 16px;
        background-color: var(--secondary-color);
        font-weight: 600;
        color: #fff !important;
        font-size: 21px;
    }
    .single__news-related .related-list {
        padding-bottom: 37.5px;
        margin: 0;
    }
    .single__news-related .related-item {
        padding: 16px;
        border-bottom: 1px solid #e8e8e8;
    }
    .single__news-related .news__item {
        box-shadow: unset;
    }
    .single__news-related .news__item-title {
        font-size: 14px;
    }
    .single__news-related .news__item-image {
        width: 70px;
        flex: 0 0 auto;
        padding-bottom: 14.06%;
    }
    .single__news-related .news__item-bottom {
        width: calc(100% - 70px);
        flex: 0 0 auto;
        padding-left: 8px;
        font-weight: 500;
        display: -webkit-box !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2 !important;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-top: 0 !important;
    }
    .single__news-related .news__item-bottom a {
        color: #333;
    }
}

.single__news-right {
    padding-top: 23px;
}

@media only screen and (min-width: 1024px) {
    .single__news-right {
        padding-left: 24px;
    }
}

.contact {
    border-bottom: 1px solid var(--lightgrey);
}

.contact__map {
    height: 596px;
}

@media only screen and (max-width: 767px) {
    .contact__map {
        height: 375px;
    }
}

.contact__map iframe {
    height: 100%;
    width: 100%;
}

.contact-inner {
    margin-top: -137px;
    padding: 40px 132px 53px 132px;
    position: relative;
    z-index: 999;
}

.contact-inner .page__title {
    margin-bottom: 40px;
}

@media only screen and (max-width: 1023px) {
    .contact-inner {
        padding: 40px 30px;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-inner {
        padding: 30px 0;
    }
    .contact-inner .page__title {
        margin-bottom: 25px;
    }
}

.contact-inner .contact-info {
    line-height: 2;
}

.contact-inner .contact-info p {
    line-height: 2;
}

.contact-inner .contact-info ul li a {
    color: #333;
}

.contact-inner .contact-info ul li a:hover {
    color: var(--secondary-color);
}

.contact-inner .contact-info svg path {
    stroke: var(--primary-color);
}

.contact__form {
    margin-top: -16px;
    position: relative;
}

.contact__form textarea,
.contact__form input {
    padding: 11px 13px;
    background: #ebebeb;
    border: 1px solid transparent;
    outline: none;
    margin-top: 16px;
}

.contact__form button {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 9999px !important;
    background-color: var(--secondary-color) !important;
    color: #fff;
    width: 198px !important;
    padding: 12px;
    text-align: center;
    margin-top: 10px;
    border: none !important;
    outline: none;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

@media only screen and (max-width: 767px) {
    .contact__form button {
        width: 165px;
    }
}

.contact__form button:hover {
    background-color: var(--primary-color);
}

.contact__form .ajax-loader {
    position: absolute;
    right: 0;
    bottom: 0;
}


/** About **/

.about {
    padding: 40px 0;
}

@media only screen and (max-width: 767px) {
    .about {
        padding: 40px 0 20px 0;
    }
}

.about__block {
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .about__block {
        margin-bottom: 25px;
    }
}

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

.about__block-has-image .row {
    align-items: center;
}


/* Sidebar
--------------------------------------------- */


/** Sidebar **/

.sidebar__item {
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    overflow: hidden;
}

.sidebar__item-head {
    padding: 15px 16px;
    background-color: var(--secondary-color);
    font-weight: 600;
    color: #fff;
    font-size: 21px;
}

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

@media only screen and (max-width: 1023px) {
    .sidebar__item ul {
        display: none;
    }
}

.sidebar__item ul li:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}

.sidebar__item ul li a {
    display: block;
    padding: 10px 12px !important;
    color: #333;
    font-weight: 500;
}

.sidebar__item ul li .count {
    display: none;
}

@media (hover) {
    .sidebar__item ul li a:hover {
        color: var(--secondary-color);
    }
}

.sidebar__news-list {
    padding-bottom: 37.5px;
}

.sidebar__news-item {
    padding: 16px;
    border-bottom: 1px solid #e8e8e8;
}

.sidebar__news-item .item__image {
    width: 70px;
    flex: 0 0 auto;
    padding-bottom: 14.06%;
}

.sidebar__news-item .item__title {
    width: calc(100% - 70px);
    flex: 0 0 auto;
    padding-left: 8px;
    font-weight: 500;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2 !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar__news-item .item__title a {
    color: #333;
}

@media (hover) {
    .sidebar__news-item:hover .item__title a {
        color: var(--secondary-color);
    }
}


/** Sidebar Product **/

.sidebar-product {
    padding: 40px 0;
}

.sidebar-product .sidebar__item-head {
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0px 0px 7px #00000040;
}

.sidebar__item-toggle-btn {
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar__item-toggle-btn:after {
    content: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 1V11M1 6L11 6' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.sidebar__item-toggle-btn.clicked:after {
    content: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L11 1' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

@media only screen and (max-width: 1023px) {
    .sidebar-product {
        position: fixed;
        width: 85%;
        max-width: 350px;
        top: 0;
        left: -100%;
        height: 100vh;
        background-color: #fff;
        z-index: 5555;
        padding-top: 0;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
    .sidebar-product.active {
        left: 0;
    }
    .sidebar-product .sidebar__item {
        box-shadow: unset;
        border: 1px solid var(--lightgrey);
    }
    .sidebar-product .sidebar__item-head {
        font-size: 16px;
    }
    .sidebar-product .sidebar-product__list {
        padding: 10px 15px;
        overflow: auto;
        height: 100%;
    }
}

.sidebar-product__head-mobile {
    padding: 15px;
    color: #fff;
    background-color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.sidebar-product__close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}

.sidebar-product__close svg path {
    stroke: #fff;
}


/* Forms
--------------------------------------------- */


/* Modal
--------------------------------------------- */


/* Footer
--------------------------------------------- */


/** Footer **/

.footer {
    padding: 80px 0 85px 0;
}

.footer__item:not(.footer__menu) ul,
.footer__item:not(.footer__menu) li,
.footer__item:not(.footer__menu) ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul a,
.footer li a,
.footer ol a {
    color: #fff;
}

.footer ul a:hover,
.footer li a:hover,
.footer ol a:hover {
    color: var(--secondary-color);
}

.footer p {
    line-height: 1.8;
}

.footer__item-title {
    font-size: 18px;
    margin-bottom: 25px;
}

.footer__menu {
    font-size: 15px;
}

.footer__menu ul {
    list-style: disc;
    padding-left: 20px;
}

.footer__menu ul li {
    margin-bottom: 10px;
}

.contact-info ul li .li-icon {
    max-width: 15px;
    flex-basis: 15px;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.contact-info ul li .li-content {
    max-width: calc(100% - 15px);
    flex-basis: calc(100% - 15px);
}

.social-media-list {
    margin-top: 38px !important;
}

.social-media-list li a {
    width: 30px;
    height: 30px;
    background-color: #fff;
}

.social-media-list li a svg {
    height: 18px;
    width: 18px;
}

.social-media-list li a svg path {
    fill: #3a3027;
}

.social-media-list li a:hover {
    background-color: var(--secondary-color);
}

.social-media-list li a:hover svg path {
    fill: #fff;
}


/*Comment style*/

span.title_comment {
    font-size: 20px;
    color: #606664;
    line-height: 1.3em;
    font-weight: 700;
    margin: 0 0 15px;
    display: inline-block;
}

.comment-author.vcard {
    width: 25px;
}

#formcmmaxweb {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

#formcmmaxweb .nameuser {
    text-align: left;
}

#formcmmaxweb .avatarmw img {
    float: left;
    margin: 5px 10px 0 0;
    border: 1px solid #ccc;
    padding: 5px;
}

.comments-title-maxweb {
    margin: 30px 0;
    font-weight: normal;
}

.commentlist {
    margin-top: 10px;
}

.comment-author.vcard {
    float: left;
    clear: both;
    z-index: 2;
    position: relative;
    text-align: center;
}

.commentlist li {
    overflow: hidden;
    clear: both;
    margin-bottom: 10px;
}

.commentlist .children {
    margin-top: 10px;
}

.commentBody em {
    color: red;
}

.commentBody {
    position: relative;
    margin-left: 35px;
    overflow: hidden;
}

.comment-meta.commentmetadata {
    position: relative;
    padding: 0;
    margin: 0 0 5px;
}

.noidungcomment {
    font-size: 16px;
    line-height: 24px;
}

.cancel-comment-reply a {
    font-size: 14px;
    text-decoration: none;
    color: #a9883f;
}

.nocomments {
    border-color: #d98d8d;
    background-color: #ffcece;
    background-position: left -792px;
    color: #665252;
    padding: 10px;
}

.comment-meta.commentmetadata .ngaythang {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 12px;
}

.commentBody:hover .comment-meta.commentmetadata .ngaythang {
    opacity: 1;
}

.commentBody .reply {
    float: right;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

.comment-meta.commentmetadata .fn {
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: capitalize;
    font-size: 17px;
    line-height: 22px;
    margin-top: 2px;
}

ol.commentlist_mw,
ol.commentlist_mw ul.children {
    list-style: none;
}

ol.commentlist_mw li {
    margin-bottom: 10px;
}

ol.commentlist_mw>ul.children {
    margin: 10px 0 15px 35px;
    background: #f1f1f1;
    padding: 10px;
    position: relative;
}

ol.commentlist_mw>ul.children:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 14px;
    width: 0;
    height: 0;
    border-bottom: 10px solid #f1f1f1;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

div.error {
    color: red;
    font-size: 12px;
    text-align: left;
    line-height: 16px;
    margin: 3px 0 0;
}

.tools_comment a {
    color: #4a90e2;
    font-size: 14px;
    position: relative;
    padding: 0 15px 0 0;
    margin: 0 7px 0 0;
    line-height: 14px;
}

.tools_comment a:after {
    content: "";
    width: 4px;
    height: 4px;
    top: 50%;
    margin-top: -2px;
    background: #999;
    position: absolute;
    right: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.tools_comment a:last-child:after {
    display: none;
}

.tools_comment a:last-child {
    padding: 0;
    margin: 0;
}

.noidungcomment p {
    margin: 0 0 5px;
}

#formcmmaxweb input[type="submit"],
#formcmmaxweb input[type="button"],
#formcmmaxweb input[type="reset"],
#formcmmaxweb article.post-password-required input[type="submit"],
#formcmmaxweb li.bypostauthor cite span {
    padding: 6px 10px;
    padding: 0.428571429rem 0.714285714rem;
    font-size: 11px;
    font-size: 0.785714286rem;
    line-height: 1.428571429;
    font-weight: normal;
    color: #7c7c7c;
    background-color: #e6e6e6;
    background-repeat: repeat-x;
    background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
    background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
    background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
    background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
    background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}

#formcmmaxweb button,
#formcmmaxweb input,
#formcmmaxweb textarea {
    border: 1px solid #ccc;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    font-family: inherit;
    padding: 6px;
    padding: 0.428571429rem;
}

#formcmmaxweb button,
#formcmmaxweb input[type="submit"],
#formcmmaxweb input[type="button"],
#formcmmaxweb input[type="reset"] {
    cursor: pointer;
}

.reply a.comment-reply-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
}

.reply a.comment-reply-link:hover {
    color: #c7a611;
}

#formcmmaxweb p,
#formcmmaxweb input,
#formcmmaxweb textarea {
    width: 100%;
    background: transparent;
    outline: none;
    font-size: 14px;
}

#formcmmaxweb input,
#formcmmaxweb textarea {
    border: 1px solid #d7d7d7;
    color: #2e2e2e;
    display: block;
}

#formcmmaxweb input:focus,
#formcmmaxweb textarea:focus {
    border-color: var(--primary-color);
}

#formcmmaxweb p {
    margin-bottom: 10px;
    text-align: center;
}

#formcmmaxweb #commentform p {
    overflow: hidden;
}

#formcmmaxweb .name-email p {
    width: 50%;
    float: left;
}

#formcmmaxweb .name-email p:first-child {
    padding-right: 5px;
}

#formcmmaxweb .name-email p:last-child {
    padding-left: 5px;
}

#formcmmaxweb input#submit {
    width: auto;
    font-weight: 400;
    color: #fff;
    background: var(--primary-color);
    padding: 6px 20px;
    border: none;
    float: left;
    font-size: 16px;
    outline: none;
}

#formcmmaxweb input#submit:hover {
    background: #c7a611;
}

#formcmmaxweb ::-webkit-input-placeholder {
    color: #999999;
}

#formcmmaxweb ::-moz-placeholder {
    /* Firefox 18- */
    color: #999999;
}

#formcmmaxweb ::-moz-placeholder {
    /* Firefox 19+ */
    color: #999999;
}

#formcmmaxweb ::-ms-input-placeholder {
    color: #999999;
}


/*#comment style*/

.woocommerce .star-rating span {
    color: #ffb829;
}

.woocommerce-review-link {
    color: #000;
}

.product-detail__cart .single_variation_wrap {
    margin-top: 20px;
}

.product-detail__cart .variations {
    font-size: 16px;
}

.product-detail__cart .variations select {
    padding: 10px 15px;
    margin-left: 10px;
    border-radius: 5px;
    border: 1px solid #8c8c8c;
}

.product-detail__cart .variations .reset_variations {
    margin-left: 10px;
    color: red;
}

.product-detail__cart .single_add_to_cart_button {
    padding: 15px 27px !important;
}

.product-detail__cart .woocommerce-variation-add-to-cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.product-detail__cart .quantity {
    margin-right: 23px;
    width: max-content;
}

@media screen and (max-width: 767px) {
    .product-detail__cart .single_add_to_cart_button {
        padding: 15px !important;
    }
    .woocommerce .coupon button[type="submit"] {
        display: block !important;
        width: 100% !important;
        margin-top: 15px;
        padding: 13px !important;
        font-size: 18px !important;
    }
    .woocommerce .coupon .input-text {
        width: 100% !important;
        padding: 10px !important;
        margin-right: 0 !important;
        height: auto !important;
    }
    .woocommerce .woocommerce-message .button.wc-forward {
        padding: 7px 10px !important;
        display: block !important;
        width: 100% !important;
        margin-bottom: 10px !important;
    }
}

@media screen and (max-width: 374px) {
    .product-detail__cart .quantity {
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
    .product-detail__cart .single_add_to_cart_button {
        width: 100%;
        text-align: center;
    }
    .product-detail__cart .variations td {
        display: block;
        margin-bottom: 10px;
    }
}

.product-archive .see-more {
    margin-top: 40px;
}

.product-archive .see-more .button {
    padding: 14px 50px !important;
    font-size: 16px;
    font-weight: 400 !important;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.page-about h1 {
    font-size: 28px;
}

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

.woocommerce button.button.disabled {
    opacity: 1;
}

.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item.button-variable-item .variable-item-span {
    font-weight: 600;
}

@media screen and (max-width:1023px) {
    html:lang(vi) .lang-item-vi {
        display: none;
    }
    html:lang(en-GB) .lang-item-vi:after,
    html:lang(en-GB) .lang-item-en {
        display: none;
    }
}

.sidebar-product__list .widget_product_categories.sidebar__item {
    box-shadow: unset;
    border-radius: unset;
    overflow: unset;
    border: none;
}

.sidebar-product__list .widget_product_categories.sidebar__item .cat-parent {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.cat-parent .sidebar__item-toggle-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
}

.sidebar-product__list .widget_product_categories.sidebar__item .cat-item:not(.cat-parent) a {
    border-radius: 8px;
}

.sidebar-product__list .widget_product_categories.sidebar__item .cat-item>a {
    font-size: 18px;
    padding: 10px 15px;
    background-color: var(--secondary-color);
    font-weight: 600;
    color: #fff;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.sidebar-product__list .widget_product_categories.sidebar__item .cat-item ul li a {
    background-color: #fff;
    border-radius: unset;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-product__list .widget_product_categories.sidebar__item .cat-item ul li a:hover {
    color: var(--secondary-color);
}

.sidebar-product__list .product-categories>.cat-item {
    box-shadow: 0px 0px 7px rgb(0 0 0 / 25%);
    border-radius: 8px;
    margin-top: 30px;
}

.woocommerce table.shop_table_responsive tr td::before,
.woocommerce-page table.shop_table_responsive tr td::before {
    margin-right: 10px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    width: 30%;
}

@media screen and (max-width:1023px) {
    .sidebar-product__list .widget_product_categories .product-categories {
        display: block;
    }
    .woocommerce .cart-collaterals .cart_totals,
    .woocommerce-page .cart-collaterals .cart_totals {
        width: 100%;
    }
}

.woocommerce-form-register__submit,
.woocommerce-form-login__submit {
    padding: 10px 20px!important;
    margin-top: 15px!important;
}

.woocommerce-form-login__submit {
    margin-top: 0!important;
}

.woocommerce-Input {
    padding: 18px!important;
}

.wc-proceed-to-checkout .checkout-button {
    padding: 15px!important;
}

.woocommerce-LostPassword a {
    color: var(--secondary-color);
}

.product-detail__carousel-mb-nav .img-block,
.product-detail__carousel-mb .img-block {
    padding-bottom: 81%;
}

.product-detail__carousel-mb .img-block img {
    object-fit: contain;
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.product-detail__carousel-mb-nav .img-block img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.product-detail__carousel-mb-nav .is-nav-selected .img-block:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}