/*
Theme Name: Zenmar
Description: Zenmar
Version: 1.0
*/

:root {
    scroll-behavior: auto;
    --orange: #f26921;
    --gray-1: #424242;
    --dark: #050404;
}

html {
    font-size: 10px;
}

body {
    font-family: 'Mulish', sans-serif;
    font-size: 1.6rem;
    color: #000;
    background: #fff;
    overflow-x: hidden;
    max-width: 100%;
}

.row {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.row > div {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container {
    padding: 0 1.5rem;
}

.page-header {
    border-bottom: 1px solid #f0f0f0;
    background: #f9f9f9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.page-header .page-logo img {
    height: 8rem;
}

@media (max-width: 767px) {
    .page-header .page-logo img {
        height: auto;
        max-width: 110px;
    }
}

@media (max-width: 520px) {
    .page-header .page-logo img {
        height: auto;
        max-width: 70px;
    }

    .button--icon-chevron.button--bg-black:after,
    .btn--icon-chevron.btn--bg-black:after {
        display: none;
    }
}

.page-header .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.page-header .right {
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.page-header .cart-link {
    font-size: 1.8rem;
    padding-left: 5.8rem;
    position: relative;
    display: inline-block;
    margin-left: 2rem;
}

@media (max-width: 767px) {
    .page-header .cart-link {
        padding-left: 3.8rem;
    }
}

@media (min-width: 768px) {
    .page-header .cart-link {
        padding-left: 3.8rem;
    }
}

@media (min-width: 1500px) {
    .page-header .cart-link {
        margin-left: 4rem;
    }
}

.page-header .cart-link:before {
    content: '';
    width: 3.5rem;
    height: 3.5rem;
    border: 2px solid #050404;
    position: absolute;
    top: 50%;
    margin-top: -1.6rem;
    left: -5px;
    background: url(assets/images/icon-cart.svg) center center no-repeat;
    border-radius: 50%;
}

.page-header .cart-link .count {
    color: var(--orange);
}

.page-header .btn--my-account {
    margin-left: 1.5rem;
    padding-right: 3.5rem;
    min-height: 4.5rem;
}

.header-email {
    padding: 0 1.2rem;
}

@media (max-width: 520px) {
    .page-header .btn--my-account {
        margin-left: 0.5rem;
        font-size: 1.4rem;
        min-height: 4rem;
    }

    .page-header .cart-link .count {
        display: none;
    }

    .text-header-bar {
        font-size: 1.4rem;
    }
}

#menu-top {
    margin: 0 0 0 auto;
    display: flex;
}

#menu-top li {
    margin-left: 2rem;
}

.page-content {
    padding-top: 20rem;
    padding-bottom: 10rem;
    overflow: hidden;
}

#index .page-content {
    padding-top: 11.5rem;
}

@media (max-width: 640px) {
    .page-content {
        padding-top: 15rem;
    }
}

.content-block:not(:last-child) {
    margin-bottom: 7rem;
}

.woocommerce-message {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .woocommerce-message .btn {
        margin-left: auto;
    }
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    top: 50%;
    margin-top: -1.3rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: #fff;
    border: 1px solid #d0d5dd;
    padding: 1.6rem 2rem;
    color: #545e71;
    font-size: 1.5rem;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: #d0d5dd;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    font-size: 1.7rem;
    font-weight: 500;
    background: var(--orange) !important;
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 1rem 3.5rem !important;
    display: inline-flex;
    align-items: center;
    min-height: 5.5rem;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
    width: 100%;
    float: none;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    float: none;
    width: 100%;
}

@media (min-width: 992px) {
    .row--gap-medium {
        margin: 0 -4rem;
    }

    .row--gap-medium > div {
        padding: 0 4rem;
    }
}

.products {
    margin-bottom: 3rem;
}

.products > div {
    margin-bottom: 3rem;
}

.products .product-box {
    border: 1px solid #e0e0e0;
    padding: 3rem;
}

.product-box img {
    mix-blend-mode: darken;
    margin-bottom: 2rem;
}

.product-box .product-name {
    margin-bottom: 1rem;
    font-size: 2.6rem;
}

@media (max-width: 1399px) {
    .product-box .product-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 1199px) {
    .product-box .product-name {
        font-size: 2rem;
    }
}

.product-box .product-price {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .product-box .product-price {
        font-size: 1.8rem;
    }
}

.product-box .product-price .old-price {
    text-decoration: line-through;
    opacity: 0.5;
}

.product .certificate {
    display: inline-block;
    padding-left: 5rem;
    position: relative;
    font-weight: 700;
    margin-bottom: 6rem;
}

.product .certificate:before {
    content: '';
    width: 3rem;
    height: 3.6rem;
    background: url(assets/images/icon-pdf.svg);
    background-size: 3rem 3.6rem;
    position: absolute;
    left: 0;
    top: -0.6rem;
}

.product .row--boxes {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.product .row--boxes .box {
    border: 1px solid rgb(193 191 191 / 30%);
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.07);
}

.img-icon-woo {
    max-height: 52px !important;
}

@media (max-width: 767px) {
    .product .row--boxes .box {
        margin-bottom: 1.5rem;
    }
}

.product .row--boxes .box .title {
    font-weight: 400;
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.product .row--boxes .box .text *:last-child {
    margin-bottom: 0;
    color: #000;
    font-weight: 700;
    font-size: 2.4rem;
}

.product .product-name {
    margin-bottom: 2rem;
    display: flex;
    font-size: 3rem;
}

@media (max-width: 991px) {
    .product .product-name {
        font-size: 2.4rem;
    }

    .container-menu {
        padding-bottom: 0.5rem !important;
    }
}

.single-product .product .price {
    color: var(--orange) !important;
    font-size: 2.4rem !important;
}

@media (max-width: 991px) {
    .single-product .product .price {
        font-size: 2.4rem !important;
    }
}

@media (max-width: 520px) {
    form.cart .qib-container + button[type='submit']:not(#qib_id):not(#qib_id) {
        font-size: 1.5rem;
    }
}

.single-product .product .price del {
    color: #000;
}

.single-product .product .price ins {
    text-decoration: none;
    font-weight: 500 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: none;
}

.woocommerce-product-details__short-description {
    margin-bottom: 4rem;
}

.woocommerce span.onsale {
    background: var(--orange);
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-slider-top-wrap {
    position: relative;
    margin-bottom: 3.5rem;
}

.product-image-slider-prev-arrow,
.product-image-slider-next-arrow {
    width: 5.2rem;
    height: 5.2rem;
    background: #000;
    border: 1px solid #000;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -2.6rem;
    background: #fff url(assets/images/chevron-1.svg) center center no-repeat;
    background-size: 0.8rem 1.4rem;
    z-index: 99;
}

.product-image-slider-prev-arrow {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    left: 2rem;
}

.product-image-slider-next-arrow {
    right: 2rem;
}

.product-image-slider-bottom {
    margin: 0 -1.5rem;
}

.product-image-slider-bottom .slide {
    margin: 0 1.5rem;
}

.product-image-slider-bottom .thumb {
    border: 1px solid #e0e0e0;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.product-image-slider-bottom .slick-current .thumb {
    border-color: var(--orange);
}

.woo-variation-swatches
    .variable-items-wrapper
    .variable-item:not(.radio-variable-item) {
    box-shadow: none;
    border: 1px solid #e0e0e0;
}

.woo-variation-swatches
    .variable-items-wrapper
    .variable-item:not(.radio-variable-item).selected,
.woo-variation-swatches
    .variable-items-wrapper
    .variable-item:not(.radio-variable-item).selected:hover {
    box-shadow: none;
    border: 1px solid var(--orange);
}

.woo-variation-swatches
    .variable-items-wrapper
    .variable-item:not(.radio-variable-item):focus,
.woo-variation-swatches
    .variable-items-wrapper
    .variable-item:not(.radio-variable-item):hover {
    box-shadow: none;
}

.woocommerce .button.single_add_to_cart_button {
    background: #050404 !important;
    border-radius: 2.6rem;
    height: 5.2rem !important;
    display: inline-flex;
    align-items: center;
    padding: 0 5.5rem 0 3.5rem !important;
}

.woocommerce .button.single_add_to_cart_button:after {
    content: '';
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    top: 50%;
    right: 1.8rem;
    margin-top: -1.2rem;
    background: #fff url(assets/images/icon-cart.svg) center center no-repeat;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 520px) {
    .woocommerce .button.single_add_to_cart_button:after {
        display: none;
    }

    .woocommerce .button.single_add_to_cart_button {
        padding: 0 2.5rem 0 3.5rem !important;
    }
}

.qib-container:not(#qib_id):not(#qib_id) {
    height: 5.2rem;
    border-radius: 2.6rem;
    border: 1px solid #e0e0e0;
    display: inline-flex !important;
    align-items: center;
    padding: 0 1rem;
}

.qib-button:not(#qib_id):not(#qib_id),
.qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
    background: none !important;
    border: none !important;
    font-size: 1.7rem !important;
}

.qib-button:not(#qib_id):not(#qib_id) {
    font-size: 2.4rem !important;
}

.woocommerce-tabs {
    padding-top: 5rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    margin: 0 0 4rem 0;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    color: #050404;
    background: none;
    font-size: 1.8rem;
    border-bottom: 2px solid transparent;
}

@media (min-width: 768px) {
    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        font-size: 2.6rem;
    }
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-weight: 400;
    padding: 1rem 0;
    color: #050404;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    color: var(--orange);
    border-bottom: 2px solid var(--orange);
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after {
    display: none;
}

.page-footer {
    background: #000;
    padding: 5rem 0;
    font-size: 1.5rem;
    color: #fff;
}

.page-footer * {
    color: #fff;
}

.page-footer p {
    margin: 0;
}

@media (min-width: 992px) {
    .row--gap-big {
        margin-left: -3rem;
        margin-right: -3rem;
    }

    .row--gap-big > div {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.button,
.btn {
    display: inline-flex !important;
    font-size: 1.7rem;
    font-weight: 400;
    min-height: 5.2rem;
    border-radius: 2.6rem;
    padding: 0 3.5rem 0 3.5rem;
    align-items: center;
    justify-content: center;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.button--bg-black,
.btn--bg-black {
    background: #050404;
    color: #fff;
}

.button--bg-black:hover,
.btn--bg-black:hover {
    background: #050404;
    color: #fff;
}

.button--bg-orange,
.btn--bg-orange {
    background: var(--orange);
    color: #fff;
}

.button--bg-orange:hover,
.btn--bg-orange:hover {
    background: var(--orange);
    color: #fff;
}

.button--icon-chevron,
.btn--icon-chevron {
    padding-right: 5.5rem;
}

@media (max-width: 520px) {
    .button--icon-chevron,
    .btn--icon-chevron {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .page-header .cart-link {
        padding-left: 4.8rem;
    }
}

.button--icon-chevron:after,
.btn--icon-chevron:after {
    content: '';
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    top: 50%;
    right: 1.8rem;
    margin-top: -1.2rem;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.button--icon-chevron:hover:after,
.btn--icon-chevron:hover:after {
    right: 1.3rem;
}

.button--icon-chevron.button--bg-orange:after,
.btn--icon-chevron.button--bg-orange:after {
    background: #fff url(assets/images/chevron-2.svg) center center no-repeat;
    background-size: 0.5rem 0.9rem;
}

.button--icon-chevron.button--bg-black:after,
.btn--icon-chevron.btn--bg-black:after {
    background: #fff url(assets/images/chevron-1.svg) center center no-repeat;
    background-size: 0.5rem 0.9rem;
    display: none;
}

.button--bg-white,
.btn--bg-white {
    background: #fff;
    color: #050404;
    border: 2px solid transparent;
}

.button--bg-white:hover,
.btn--bg-white:hover {
    border-color: #050404;
}

.heading--size-1 {
    font-size: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 767px) {
    .heading--size-1 {
        font-size: 3rem;
        padding-top: 2rem;
        margin-bottom: 2rem;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    margin: 0 0 2rem 0;
    font-weight: 700;
    line-height: normal;
}

h1 {
    font-size: 4rem;
    margin-bottom: 4rem;
}

h2 {
    font-size: 3.5rem;
}

@media (max-width: 767px) {
    h2 {
        font-size: 2.6rem;
    }
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 2.6rem;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    line-height: 3.4rem;
}

p {
    margin: 0 0 2.5rem 0;
    line-height: 3.4rem;
}

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

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

img {
    max-width: 100%;
    height: auto;
    border: 0;
}

.alignleft,
img.alignleft {
    display: inline;
    float: left;
    margin-right: 24px;
    margin-top: 4px;
}
.alignright,
img.alignright {
    display: inline;
    float: right;
    margin-left: 24px;
    margin-top: 4px;
}
.aligncenter,
img.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.to-animate {
    opacity: 0;
}

.block-type-4 .about-box {
    border: 1px solid #e0e0e0;
    padding: 4rem 2rem;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    margin-bottom: 2rem;
}
.block-type-4 .about-box p {
    margin-bottom: 0;
    font-size: 3rem;
    color: var(--orange);
    font-weight: 600;
}

.block-type-4 .about-box p span {
    color: #000;
    font-weight: 400;
    display: block;
    margin-top: 1rem;
    font-size: 2rem;
}

.block-type-5 .slider-wrap {
    position: relative;
}

.block-type-5 .slider-wrap .slider-arrow-prev,
.block-type-5 .slider-wrap .slider-arrow-next {
    position: absolute;
    top: 50%;
    margin-top: -2.5rem;
    width: 5rem;
    height: 5rem;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    border-radius: 50%;
}

.block-type-5 .slider-wrap .slider-arrow-prev svg,
.block-type-5 .slider-wrap .slider-arrow-next svg {
    width: 1.4rem;
}

.block-type-5 .slider-wrap .slider-arrow-prev svg path,
.block-type-5 .slider-wrap .slider-arrow-next svg path {
    fill: #fff;
}

.block-type-5 .slider-wrap .slider-arrow-prev {
    left: 1rem;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.block-type-5 .slider-wrap .slider-arrow-next {
    right: 1rem;
}

.block-type-5 .slider-wrap .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.block-type-5 .slider-wrap .bg:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
}

.block-type-5 .slider {
    position: relative;
    z-index: 10;
    color: #fff;
    padding: 10rem 6rem;
}

@media (max-width: 991px) {
    .block-type-5 .slider img {
        margin-bottom: 4rem;
    }
}

.block-type-5 .slider .row {
    align-items: center;
}

.block-type-5 .slider .heading {
    color: #fff;
}

.block-type-5 .text p {
    font-size: 2rem;
    font-weight: 600;
}

.block-type-6 .question {
    font-size: 22px;
    font-weight: 500;
    padding: 20px 30px 20px 60px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid #dadde2;
}

.block-type-6 .question::after {
    content: '\002B';
    font-size: 30px;
    position: absolute;
    left: 20px;
    transition: 0.2s;
    font-weight: 400;
}

.block-type-6 .question.active::after {
    transform: rotate(45deg);
}
.block-type-6 .question.active {
    background-color: #ededed;
    border-right: 1px solid rgba(10, 25, 55, 0.15);
    border-left: 1px solid rgba(10, 25, 55, 0.15);
}

@media (max-width: 991px) {
    .block-type-6 .question {
        font-size: 20px;
    }
}

.block-type-6 .answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.block-type-6 .answer {
    padding: 30px 60px 30px 60px;
    line-height: 1.5rem;
    border-right: 1px solid rgba(10, 25, 55, 0.15);
    border-left: 1px solid rgba(10, 25, 55, 0.15);
}

@media (max-width: 991px) {
    .block-type-6 .answer {
        padding: 30px;
    }
}

.block-type-6 .answer p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 20px;
}

.block-type-8 .content {
    background-color: #f9f9f9;
    padding: 2rem;
}

.block-type-8 .content h3 {
    font-size: 2.2rem;
}

.block-type-8 .content .date {
    color: var(--orange);
    font-size: 1.4rem;
}

.block-type-8 .content .meta {
    margin-bottom: 1.5rem;
}

.block-type-8 .box {
    margin-bottom: 3rem;
}

.row-blog-content h1.blog-title {
    margin-top: 5rem;
    font-size: 3.6rem;
}

.image-wrapper {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    font-size: 0;
}
.image-wrapper img {
    max-width: 100%;
    transition: transform 0.3s ease-in-out;
}
.image-wrapper:hover img {
    transform: scale(1.2);
}

.product-sections-nav {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem 0 2rem 0;
}

.product-sections-nav li {
    margin-right: 0.5rem;
}

.product-sections-nav li a {
    background: var(--orange) !important;
    color: #fff;
    padding: 1.5rem 3rem;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.product-sections-nav li a:hover {
    background: var(--dark) !important;
}

@media only screen and (max-width: 768px) {
    .product-sections-nav li a {
        padding: 0.7rem 1rem;
    }
}

.product-sections-nav li a:hover {
    background: var(--orange);
}

.product-sections > div {
    border-bottom: 1px solid #c1bfbf;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.product-sections > div *:last-child {
    margin-bottom: 0;
}

.opinions-woo {
    padding: 2rem 0;
}
.opinions-woo .heading {
    margin-bottom: -4rem;
}

.opinions-woo #reviews {
    padding-top: 8rem;
}

.woocommerce-page .upsells {
    margin-bottom: 3rem;
}

.video-about .wp-video {
    margin-left: auto !important;
    margin-right: auto !important;
}

section#about-us {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

#responsive-form {
    max-width: 800px /*-- change this to get your desired form width --*/;
    margin: 0 auto;
    width: 100%;
}
.form-row {
    width: 100%;
}
.column-half,
.column-full {
    float: left;
    position: relative;
    padding: 0.65rem;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

/**---------------- Media query ----------------**/
@media only screen and (min-width: 48em) {
    .column-half {
        width: 50%;
    }
}

.wpcf7 input[type='text'],
.wpcf7 input[type='email'],
.wpcf7 textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    color: rgb(88, 89, 91);
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.wpcf7 input[type='text']:focus {
    background: #fff;
}
.wpcf7 textarea {
    height: 150px;
}
.wpcf7-submit {
    float: right;
    background: #f26921;
    color: #fff;
    text-transform: uppercase;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
}
.wpcf7-submit:hover {
    background: #f26921;
}
span.wpcf7-not-valid-tip {
    text-shadow: none;
    font-size: 12px;
    color: #fff;
    background: #ff0000;
    padding: 5px;
}
div.wpcf7-validation-errors {
    text-shadow: none;
    border: transparent;
    background: #f9cd00;
    padding: 5px;
    color: #9c6533;
    text-align: center;
    margin: 0;
    font-size: 12px;
}
div.wpcf7-mail-sent-ok {
    text-align: center;
    text-shadow: none;
    padding: 5px;
    font-size: 12px;
    background: #59a80f;
    border-color: #59a80f;
    color: #fff;
    margin: 0;
}

p.terms {
    line-height: 1.5 !important;
}

#menu-overlay {
    position: fixed;
    top: 11rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 7.7rem);
    background: #fff;
    z-index: 99999;
    padding: 3rem 0 3rem 0;
    display: none;
    border-top: 1px solid #e5dedb;
}

@media (min-width: 992px) {
    #menu-overlay {
        display: none !important;
    }
}

#menu-overlay a {
    text-decoration: none;
}

#menu-overlay p {
    text-align: center;
}

.menu-top-mobile {
    font-size: 1.7rem;
    color: #4b5d6d;
}

.menu-top-mobile a {
    text-decoration: none;
}

.menu-top-mobile li {
    padding-left: 0;
}

.menu-top-mobile li:before {
    display: none;
}

.menu-top-mobile > li {
    margin-bottom: 1rem;
    position: relative;
}

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

.menu-top-mobile ul {
    display: none;
    padding: 1rem 0 2rem 0;
}

.menu-top-mobile .sub-menu-open {
    display: block;
}

.menu-top-mobile .menu-item-has-children > span {
    width: 2.5rem;
    background: url(assets/images/chevron-5.svg) center center no-repeat;
    background-size: 2rem 1rem;
    height: 3.2rem;
    margin-left: 2rem;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.menu-top-mobile .sub-menu-open > span {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.menu-top-mobile ul {
    margin-left: 1rem;
}

.menu-top-mobile ul ul {
    margin-left: 2rem;
}

.menu-top-mobile li:last-child ul:last-child {
    padding-bottom: 0rem;
}

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

#menu-overlay .scrollbar-macosx {
    height: 100%;
}

#menu-overlay .scroll-x {
    display: none !important;
}

.hamburger {
    float: right;
    margin: 1rem -1.5rem 0 0;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before,
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
    background-color: #5d0736;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    height: 0.2rem;
}

.hamburger.is-active:hover,
.hamburger:hover {
    opacity: 1;
}

.hamburger {
    margin-left: auto;
}

.menu-top-wrap .menu-section {
    font-size: 3.6rem;
    line-height: 4.3rem;
}

.woocommerce-Reviews-title,
#reply-title {
    font-size: 2rem;
    font-weight: 700;
}

#reply-title {
    margin-bottom: 2rem;
    display: block;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
    display: none;
}

.woocommerce #reviews #comments ol.commentlist {
    padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin: 0;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    height: 55px;
    min-width: 120px;
}

.woocommerce-cart .coupon button.button {
    background-color: #4a4948 !important;
}

#review_form_wrapper {
    margin-bottom: 5rem;
}

.container-bar {
    padding-bottom: 0 !important;
    justify-content: end;
}
.container-menu {
    padding-top: 0 !important;
}

.icon-sm {
    width: 20px;
    height: 20px;
}

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

@media (max-width: 991px) {
    .contact-box {
        margin-top: 6rem;
    }
}

.contact-box {
    background-color: #f9f9f9;
    padding: 30px 22px;
}

.contact-box a {
    background-color: var(--orange);
    padding: 14px 28px;
    display: block;
    color: #fff;
    margin-bottom: 1.5rem;
    transition: 0.7s ease;
}

.contact-box a:hover {
    background-color: var(--dark);
}

.img-contact-us {
    padding: 3rem;
    padding-top: 0;
}

.ml-embedded strong {
    color: var(--dark) !important;
}

#mlb2-17548425.ml-form-embedContainer
    .ml-form-embedWrapper
    .ml-form-embedBody
    .ml-form-checkboxRow
    .label-description::before {
    left: -2.5rem !important;
}

@media (max-width: 767px) {
    .ml-embedded {
        margin: 4rem 0 !important;
    }
}

.img-mail {
    max-width: 17px;
}

.btn-message {
    color: #fff;
    background-color: var(--orange);
    padding: 1em 2rem;
    display: block;
    min-width: 100%;
    text-transform: uppercase;
    text-align: center;
    transition: 0.7s ease;
}

.btn-message:hover {
    background-color: #050404;
    color: #fff;
}

.contact-link {
    font-size: 2.4rem;
    display: block;
}

hr.contact-line {
    margin: 2rem 0;
}

.woocommerce-checkout-payment .custom-checkbox {
    padding-left: 0.3rem;
}

.woocommerce-terms-and-conditions-wrapper p.validate-required {
    margin-bottom: 0;
    padding-bottom: 0;
}

.cky-consent-container .cky-consent-bar {
    padding: 85px 25px !important;
}

.cky-consent-container {
    left: 50% !important;
    transform: translateX(-50%);
    min-width: 95%;
}
