/**** GLOBAL ****/

:root {
    --body-font-size: 1rem;
}

main {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

#wrapper {
    background: transparent;
    padding-top: 0.5rem;
    box-shadow: none;
    flex-grow: 1;
}

.container {
    width: 100%;
    max-width: 88.25rem;
}

@media (min-width: 768px) and (max-width: 1462px) {
    .container {
        padding: 0 50px;
    }
}

body {
    font-family: "Raleway";
    line-height: normal;
    color: #242424;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
    box-shadow: none;
    text-transform: none;
    border: 0;
}

.btn-primary {
    border-radius: 0.25rem;
    background: #1C8C47;
    padding: 0.375rem 0.75rem;
    color: #F7F8F8;
    font-family: "Poppins";
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.0875rem;
    line-height: 1.625rem;
    text-transform: uppercase;
}

.btn-primary.active,
.btn-primary:active,
.open>.btn-primary.dropdown-toggle,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.btn-primary.dropdown-toggle.focus,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle:hover {
    background: #167039;
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary:disabled.focus,
.btn-primary:disabled:focus,
.btn-primary:disabled:hover {
    background-color: #dde4ee;
    color: #adb5bd;
}

.btn-secondary {
    border-radius: 0.25rem;
    background: #FFF;
    padding: 0.375rem 0.75rem;
    color: #0B381C;
    font-family: "Poppins";
    font-size: 0.875rem;
    font-weight: 300;
    line-height: normal;
}

.btn-secondary.active,
.btn-secondary:active,
.open>.btn-secondary.dropdown-toggle,
.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary.active.focus,
.btn-secondary.active:focus,
.btn-secondary.active:hover,
.btn-secondary:active.focus,
.btn-secondary:active:focus,
.btn-secondary:active:hover,
.open>.btn-secondary.dropdown-toggle.focus,
.open>.btn-secondary.dropdown-toggle:focus,
.open>.btn-secondary.dropdown-toggle:hover {
    background: #1C8C47;
    color: #FFF;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none;
}

.label,
label {
    color: #242424;
}

.card {
    box-shadow: none;
    border: none;
}

a {
    color: #11542B;
    transition: color 0.2s ease-in-out;
}

a:hover,
a:focus {
    color: #1C8C47;
    text-decoration: none;
    outline: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins";
    line-height: normal;
    font-weight: 300;
    margin-bottom: 0.625rem;
}

.h1,
.h2,
.h3 {
    color: #242424;
    text-transform: none;
}

.h1,
h1 {
    font-size: calc(var(--body-font-size)*2);
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.h2,
h2 {
    font-size: calc(var(--body-font-size)*1.75);
}

.h3,
h3 {
    font-size: calc(var(--body-font-size)*1.25);
}

.h4,
h4 {
    font-size: calc(var(--body-font-size)*1.125);
}

.h5,
h5 {
    font-size: var(--body-font-size);
}

.h6,
h6 {
    font-size: calc(var(--body-font-size)*.875);
}

h2:has(strong) {
    color: #565656;
    text-align: center;
    font-size: calc(var(--body-font-size)*1.5);
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: 0.075rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

h2 strong {
    color: #1C8C47;
    font-weight: 600;
    display: block;
}

p,
ul li {
    color: #242424;
    font-size: 0.875rem;
    line-height: 1.375rem;
    font-synthesis: none;
}

@media (max-width: 767px) {
    h2:has(strong) {
        font-size: calc(var(--body-font-size)*1);
    }
}

@media (min-width: 992px) {

    .btn-primary,
    .btn-secondary {
        padding: 0.375rem 4.28rem;
    }
}

@media (min-width: 768px) {
    a {
        transition: color 0.2s ease-in-out;
    }

    .btn-primary,
    .btn-secondary {
        transition: all 0.2s ease-in-out;
    }

    #wrapper {
        padding-top: 0.75rem;
    }

    p,
    ul li {
        font-size: 1rem;
    }
}

.hidden {
    display: none !important;
}

#main .page-content,
#main .page-header {
    margin-bottom: 0;
}

/**** HEADER ****/

#header a {
    color: #242424;
}

#header a:hover {
    color: #242424;
}

@media (max-width: 767px) {

    #header .header-top,
    #header {
        background: transparent;
    }
}

#header {
    background: #FFF;
    position: sticky;
    top: calc(var(--h-header-banner)*-1);
    z-index: 999;
}

@media (min-width: 768px) {
    #header {
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    }
}

#header .header-banner {
    background: #1C8C47;
    padding: 0.25rem 0;
    text-align: center;
}

#header .header-banner p {
    color: #FFF;
    font-weight: 300;
    font-size: 0.75rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    #header .header-banner p {
        font-size: 1rem;
    }
}

#header .header-top {
    padding: 0;
}

#header .header-top .container .row {
    display: flex;
    align-items: center;
}

.header-top--right {
    display: flex;
    justify-content: flex-end;
    position: unset;
}

.header-top--center,
#header .header-top>.container {
    position: unset;
}

#_desktop_logo h1 {
    font-size: 0;
    margin-bottom: 0;
}

#_desktop_cart,
#_desktop_user_info {
    position: relative;
    width: fit-content;
}

#_desktop_user_info .customer-name {
    font-family: "Poppins";
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 0.875rem;
}

#_desktop_user_info .account {
    display: flex;
    align-items: center;
}

#_desktop_cart {
    margin-left: 0.75rem;
}

#_desktop_cart .cart-products-count {
    color: #000;
    font-size: 0.625rem;
    font-weight: 600;
    background-color: #F8AA2F;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    min-width: 0.875rem;
    height: auto;
    aspect-ratio: 1/1;
    padding: 0 0.125rem 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1199.98px) {
    .header-top--left {
        order: 2;
        text-align: center;
    }

    .header-top--center {
        order: 1;
        display: flex;
        align-items: center;
    }

    .header-top--right {
        order: 3;
    }

    .search_widget--icon {
        margin-left: 0.75rem;
    }

    #header .header-top {
        padding: 0.75rem 0;
    }
}

@media (max-width: 991px) {
    #header .logo {
        width: 100%;
    }
}

#header .header-top .search-widget {
    min-width: auto;
    margin-right: 0.75rem;
}

#header .logo {
    width: 100%;
    max-width: 15rem;
}

/**** SEARCH WIDGET ****/

.search-widget .search_widget--form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: #FFF;
    z-index: 1;
    visibility: hidden;
    text-align: center;
}

.search-widget .search_widget--form .container {
    position: relative;
}

.search-widget.opened .search_widget--form {
    visibility: visible;
}

.search_widget--close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.search_widget--icon {
    cursor: pointer;
}

.header-top .search-widget form {
    width: 100%;
    max-width: 52.25rem;
    margin: auto;
    position: relative;
}

.header-top .search-widget form::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M21 21L16.7 16.7M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke="%23030E07" stroke-width="0.8" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
}

.search-widget form input[type=text] {
    border-radius: 0.25rem;
    border: 1px solid #B2B2B2;
    background: #FFF;
    height: 3rem;
    color: #242424 !important;
    font-family: "Poppins";
    font-weight: 300;
    line-height: 1.5rem;
    padding: 0.25rem 0.75rem;
    text-indent: 2.2rem;
}

.search-widget form input[type=text]:focus {
    outline: none;
}

#search_widget .background-overlay {
    position: absolute;
    top: var(--h-header-banner);
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#search_widget.opened .background-overlay {
    opacity: 1;
    visibility: visible;
}

.ui-menu.ui-jolisearch {
    border: 0;
    max-width: 52.25rem;
    padding: 0;
    position: fixed;
    top: 95px !important;
    border-radius: 0 0 2rem 2rem;
    width: 100% !important;
}

.ui-menu.ui-jolisearch .jolisearch-body .jolisearch-content {
    padding: 1.5rem;
}

.ui-menu.ui-jolisearch .jolisearch-body h4 {
    color: #242424;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    padding-bottom: 0.75rem;
    border-color: #C9C9C9;
    margin-bottom: 0.75rem;
    width: 6.75rem;
}

.ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .items-count {
    color: #1C8C47;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin-left: 0.3rem;
}

.ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .more-results {
    padding: 0;
    margin-top: 1.5rem;
}

.ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .more-results a {
    border: 0;
    color: #FFF;
    font-family: "Poppins";
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.5rem;
    letter-spacing: 0.04375rem;
    text-transform: uppercase;
    width: fit-content;
    margin: auto;
    border-radius: 0.25rem;
    background: #1C8C47;
    padding: 0.375rem 0.75rem;
    transition: all 0.2s ease-in-out;
}

.ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .more-results a:hover {
    background-color: #11542B;
    border: 0;
}

.ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .product {
    padding: 0;
    border: 0;
    border-radius: 0;
}

.ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .jolisearch-products__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.ui-menu .ui-menu-item a {
    padding: 0;
}

.ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .product .jolisearch-product {
    margin: 0;
    text-align: left;
    padding: 0;
    margin-top: 0.5rem;
    justify-content: space-between;
}

.ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .product .jolisearch-product span.product-name {
    color: #242424;
    font-size: 1rem;
    font-weight: 500;
    line-height: normal;
}

.ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .product .jolisearch-product .product-price {
    color: #242424;
    font-family: "Poppins";
    font-size: 0.875rem;
    font-weight: 275;
    line-height: normal;
    margin-top: 0.5rem;
}

.ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .product img {
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
    background: #FAF8F7;
    margin-bottom: 0;
}

.ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .product:hover,
.ui-menu .ui-menu-item a.no-results-found {
    background-color: transparent !important;
    border: 0 !important;
}

.ui-menu.ui-jolisearch .jolisearch-body {
    max-width: 52.25rem;
    width: 100%;
}

.ui-menu .ui-menu-item a.no-results-found {
    padding: 1.5rem;
    background: none !important;
}

.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
    margin: 0;
}

.ui-autocomplete-input.ui-autocomplete-loading {
    background-position: 98% center !important;
}

@media (max-width: 1199px) {
    .ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .jolisearch-products__list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .ui-menu.ui-jolisearch {
        width: 100% !important;
        border-radius: 0 0 1rem 1rem;
        top: 63px !important;
    }

    .ui-menu.ui-jolisearch .jolisearch-body .jolisearch-content {
        padding: 15px;
    }

    .ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .jolisearch-products__list {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-widget .search_widget--form {
        padding: 0.75rem 0;
    }

    .search-widget form input[type=text] {
        height: 2.5rem;
    }

    .ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .product:nth-child(n+5) {
        display: none;
    }

    .ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .product .jolisearch-product span.product-name {
        font-size: 0.875rem;
    }
}

@media (max-width: 400px) {
    .ui-menu.ui-jolisearch .jolisearch-body section[role="main"] .jolisearch-products__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/**** PRODUCT MINIATURE ****/

#products .product-miniature {
    margin: 0;
}

#products .thumbnail-container:focus .product-description:after,
#products .thumbnail-container:hover .product-description:after,
.product-miniature .thumbnail-container:focus .product-description:after,
.product-miniature .thumbnail-container:hover .product-description:after {
    display: none;
}

#products .thumbnail-container,
.product-miniature .thumbnail-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    box-shadow: none;
}

#products .thumbnail-container .product-thumbnail,
.product-miniature .thumbnail-container .product-thumbnail {
    height: auto;
}

#products .thumbnail-container .product-thumbnail img,
.product-miniature .thumbnail-container .product-thumbnail img {
    position: relative;
    width: 100%;
}

#products .thumbnail-container .thumbnail-top,
.product-miniature .thumbnail-container .thumbnail-top {
    background: #FAF8F7;
    border-radius: 0.25rem;
    overflow: hidden;
}

#products .thumbnail-container .product-description,
.product-miniature .product-description {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
    position: relative;
    box-shadow: none;
    margin-bottom: auto;
}

#products .product-title,
.product-miniature .product-title {
    margin-top: 0;
    text-align: left;
    font-size: 0;
}

#products .product-title a,
.product-miniature .product-title a {
    font-family: "Raleway";
    font-weight: 500;
    color: #242424;
    text-align: left;
}

#products .product-miniature .product-price-and-shipping,
.product-miniature .product-price-and-shipping {
    text-align: left;
    color: #242424;
    margin-top: 0.75rem;
}

.product-miniature .product-price-and-shipping .price {
    font-family: "Poppins";
    font-size: 0.75rem;
    font-weight: 300;
}

.product-miniature .thumbnail-top {
    position: relative;
}

#products .regular-price,
.product-miniature .regular-price,
.product-miniature .price-without-group-reduc {
    color: #A7A7A7;
    font-family: "Poppins";
    font-size: 0.75rem;
    font-weight: 275;
    text-decoration-line: line-through;
    margin-left: 0.25rem;
}

#products .product-miniature .product-flags li.product-flag,
.product-miniature .product-miniature .product-flags li.product-flag {
    min-width: auto;
    min-height: auto;
}

.product-flags li.product-flag.discount {
    display: none;
}

.product-flags li.product-flag.bio {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
}

.product-flags li.product-flag.bio img {
    width: 2.188rem;
}

@media (min-width: 768px) {

    #products .product-title a,
    .product-miniature .product-title a,
    .product-miniature .product-price-and-shipping .price,
    #products .regular-price,
    .product-miniature .regular-price,
    .product-miniature .price-without-group-reduc {
        font-size: 1rem;
    }
}

/**** PRODUCT FLAGS ****/

.product-flags li.product-flag {
    box-shadow: none;
    border-radius: 0.25rem;
    padding: 0.25rem;
    font-size: 0.625rem;
    font-weight: 600;
    line-height: normal;
    margin-top: 0.75rem;
    margin-left: 0.75rem;
    text-transform: none;
    background-color: #1C8C47;
    color: #fff;
    font-family: "Poppins";
    line-height: 1;
}

.product-flags li.product-flag.discount,
.product-flags li.product-flag.discount-amount,
.product-flags li.product-flag.discount-percentage {
    background-color: #1C8C47;
}

#products .product-miniature .product-flags li.product-flag,
.product-miniature .product-miniature .product-flags li.product-flag {
    font-weight: 400;
}

.product-flags li.product-flag.practitioner-discount {
    background-color: #e9e9e9;
    color: #242424;
}

/* .product-flags li.product-flag.discount {
    display: none;
} */

@media (min-width: 768px) {
    .product-flags li.product-flag {
        font-size: 0.875rem;
    }
}

/**** CATEGORY ****/

.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    row-gap: 1.25rem;
}

@media (min-width: 768px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 1.88rem;
        row-gap: 1.88rem;
    }
}

@media (min-width: 1100px) {
    .products {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-category {
    margin-bottom: 2.5rem;
}

#subcategories {
    margin-bottom: 3rem;
}

.block-category {
    min-height: auto;
}

.products-selection {
    margin-bottom: 1.5rem;
}

#subcategories .subcategories-list {
    margin-bottom: 0;
    display: flex;
    overflow-x: scroll;
    padding: 0 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#subcategories .subcategories-list::-webkit-scrollbar {
    display: none;
}

#subcategories .subcategories-list li:not(:last-of-type) {
    margin-right: 1rem;
}

#subcategories .subcategories-list a {
    white-space: nowrap;
    color: #242424;
    font-weight: 500;
    padding: 0.4125rem 0.625rem;
    border-radius: 0.25rem;
    border: 1px solid #242424;
    display: block;
    line-height: 1;
}

#subcategories .subcategories-list a:hover,
#subcategories .subcategories-list a:focus {
    background: #D2E8DA;
    border-color: #D2E8DA;
    color: #11542B;
}

@media (min-width: 768px) {
    #subcategories .subcategories-list a {
        transition: all 0.2s ease-in-out;
    }
}

.block-category h1 {
    text-align: center;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: 0.12rem;
}

.products-sort-order .select-title,
#search_filters_toggle {
    color: #242424;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.375rem;
    border: 0;
    background: #FFF;
    box-shadow: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
}

.products-sort-order .select-title img,
#search_filters_toggle img {
    margin-right: 0.5rem;
}

.products-sort-order .dropdown-menu {
    padding: 0;
    margin-top: 0.25rem;
    border-radius: 0.75rem;
    border: 1px solid #B2B2B2;
    overflow: hidden;
    background: #FFF;
    box-shadow: none;
}

.products-sort-order .select-list {
    font-family: "Poppins";
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0.75rem;
    transition: all 0.2s ease-in-out;
    position: relative;
    background: #FFF;
}

.products-sort-order .select-list:hover {
    background: #A4D1B5;
    color: #FFF;
}

.products-sort-order .select-list.current::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.75rem;
    background-image: url("../img/check.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 1rem;
    height: 1rem;
}

@media (min-width: 992px) {
    #subcategories .subcategories-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    #subcategories .subcategories-list li {
        margin-right: 1rem;
        margin-top: .5rem;
    }
}

@media (min-width: 768px) {
    .block-category h1 {
        letter-spacing: 0.12rem;
    }

    .products-selection {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .products-sort-order .select-title,
    #search_filters_toggle {
        border-radius: 0.75rem;
        border: 1px solid #B2B2B2;
        padding: 0.75rem 1.5rem;
    }

    #search_filters_toggle {
        margin-right: 0.75rem;
    }
}

@media (max-width: 991px) {
    #subcategories {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (max-width: 767px) {
    .category-cover {
        display: block;
    }

    .products-selection {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid #B2B2B2;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 0.75rem;
        border-left: 0;
        border-right: 0;
    }

    .products-sort-order .select-title,
    #search_filters_toggle {
        padding: 0.75rem 0;
    }

    .products-sort-order .select-title {
        border-right: 1px solid #B2B2B2;
    }

    .products-sort-order .dropdown-menu {
        border-radius: 0;
        width: 100vw;
        margin-top: 0;
        border-left: 0;
        border-right: 0;
    }
}

.category-description-seo {
    margin-top: 6rem;
    display: inline-block;
}

[data-read-more] ul {
    padding-left: 2.5rem;
}

.read-more-btn {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0;
    color: #242424;
    font-size: 0.875rem;
    font-weight: 400;
}

.read-more-btn svg {
    margin-left: 0.5rem;
}

#search_filters_wrapper {
    display: none;
}

#search_filters_wrapper.active {
    display: block;
}

#search_filters_wrapper #search_filters {
    position: absolute;
    z-index: 4;
    border-radius: 0.75rem;
    border: 1px solid #B2B2B2;
    box-shadow: none;
    padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    max-width: 33.4375rem;
    width: 100%;
    margin-bottom: 0;
}

#search_filters_wrapper #search_filters .facets-title {
    font-family: "Poppins";
    font-size: 1.5rem;
    font-weight: 500;
}

#_desktop_search_filters_clear_all {
    margin-bottom: 1rem;
}

#_desktop_search_filters_clear_all button {
    border-radius: 0.75rem;
    border: 0.5px solid #B2B2B2;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    background: #FFF;
}

#search_filters .facet {
    padding-top: 0;
}

#search_filters .facet .collapse {
    display: none;
}

#search_filters .facet .collapse.in {
    display: block;
}

#search_filters .facet .title {
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 500;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
}

#search_filters .facet .title img {
    transition: transform 0.3s ease-in-out;
}

#search_filters .facet .title[aria-expanded="true"] img {
    transform: rotate(180deg);
}

#search_filters .facet ul {
    margin-bottom: 0;
}

#search_filters .facet ul li:not(:last-of-type) {
    margin-bottom: 1rem;
}

#search_filters .facet .facet-label {
    display: flex;
    align-items: center;
}

#search_filters .facet .facet-label a {
    margin-top: 0.188rem;
    margin-left: 0.625rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.125rem;
    color: #242424;
}

#search_filters .facet .facet-label .custom-checkbox,
#search_filters .facet .facet-label .custom-radio {
    top: 0;
}

.custom-checkbox input[type="checkbox"] {
    margin-top: 0;
    width: 1rem;
    height: 1rem;
}

.custom-checkbox input[type="checkbox"]+span {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1px solid #B2B2B2;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facet .custom-checkbox input[checked]+span {
    background-color: #1C8C47;
    border-color: #1C8C47;
}

#search_filters_close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

@media (max-width: 767px) {
    #search_filters_wrapper {
        margin-left: -15px;
        margin-right: -15px;
        position: relative;
    }

    #search_filters_wrapper #search_filters {
        left: 0;
        top: -0.75rem;
        border-radius: 0;
        border-top: 0;
        border-left: 0;
        border-right: 0;
    }
}

/**** PAGINATION ****/

.pagination {
    margin: 0;
    margin-top: 1.5rem;
}

.pagination .page-list {
    box-shadow: none;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pagination .next,
.pagination .previous {
    float: unset;
}

.pagination a:not(.previous):not(.next) {
    letter-spacing: 0;
}

.pagination a {
    color: #666;
    font-weight: 400;
    font-family: "Poppins";
}

.pagination .current a {
    color: #2F786D;
    background: #E8F3ED;
    font-size: 0.875rem;
    border-radius: 50%;
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    justify-content: center;
    align-items: center;
}

/**** BREADCRUMB ****/

.breadcrumb {
    margin-bottom: 0.75rem;
}

#wrapper .breadcrumb li a {
    color: #242424;
    font-size: 0.75rem;
    font-weight: 400;
}

#wrapper .breadcrumb li:after {
    color: #242424;
    margin: 0 .3125rem;
    font-size: 0.75rem;
}

.breadcrumb .customer-logout {
    float: right;
    color: #242424;
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: underline;
}

.breadcrumb:has(.customer-logout) ol {
    float: left;
}

@media (min-width: 768px) {

    #wrapper .breadcrumb li a,
    #wrapper .breadcrumb li:after {
        font-size: 0.875rem;
    }

    .breadcrumb {
        margin-bottom: 1.5rem;
    }
}

/**** FOOTER ****/

#footer {
    background: #1C8C47;
    padding-top: 0;
    margin-top: 6rem;
}

.footer-container {
    margin-top: 0;
    padding: 1.5rem 0;
}

.footer-container .links .h3 {
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    #footer {
        margin-top: 3rem;
    }

    .footer-container .links ul {
        background-color: transparent;
    }

    .footer-container .links ul>li {
        padding: 0;
        border-bottom: 0;
        line-height: normal;
    }

    .footer-container .links ul>li a {
        color: #fff;
        font-size: 0.875rem;
        font-weight: 400;
    }

    .footer-container .links ul>li a img {
        margin-right: 0.5rem;
    }

    .footer-container li {
        margin-bottom: 0.625rem;
    }

    .footer-container .links .h3 {
        line-height: normal;
    }

    #product .footer-container {
        padding: 1.5rem 0 5.88rem;
    }

    .block_newsletter {
        padding-bottom: 0;
        border-bottom: 0;
        margin-bottom: 2.25rem;
    }

    .links .title {
        padding: 0.75rem 0;
        border-bottom: 0;
        position: relative;
    }

    .links .title::before {
        content: url("../img/minus.svg");
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        width: 1rem;
        height: 1rem;
        transition: all 0.2s ease-in-out;
    }

    .links .title::after {
        content: url("../img/minus.svg");
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1rem;
        height: 1rem;
    }

    .links .title[aria-expanded="true"]::before {
        transform: translateY(-50%) rotate(0);
    }

    .block-links {
        margin-bottom: 1rem;
    }

    .block-contact>a>img {
        width: fit-content;
        display: block;
    }
}

.copyright a {
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .copyright {
        text-align: center;
    }
}

.footer-container li a {
    color: #fff;
}

.footer-container li a:hover,
.footer-container li a:focus {
    color: #fff;
    text-decoration: underline;
}

.footer-container li:last-of-type {
    margin-bottom: 0;
}

.footer-container .links .h3 {
    color: #fff;
    font-weight: 600;
    text-transform: none;
    font-family: "Raleway";
}

.block-contact {
    margin-bottom: 3rem;
}

.block-contact>a>img {
    margin: 0 auto 1.5rem auto;
}

.block_newsletter p:not(.alert) {
    padding-top: 0;
}

.block_newsletter p.h5 {
    color: #fff;
    font-weight: 600;
    font-family: "Raleway";
}

#block-newsletter-label {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 0.875rem;
}

.block_newsletter form input[type=email] {
    border: 0;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid #fff;
}

.block_newsletter .newsletter-input-wrapper {
    display: flex;
    flex-direction: row-reverse;
}

.block_newsletter form .input-wrapper {
    width: 100%;
}

.block_newsletter form button[type=submit] {
    position: unset;
    border-bottom: 1px solid #fff;
}

.block_newsletter form input[type=email],
.block_newsletter form input[type=email]::placeholder {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 1;
}

.block_newsletter form input {
    height: 2.25rem;
}

.copyright a {
    font-weight: 600;
    color: #fff;
}

.copyright a:not(:last-of-type)::after {
    content: "-";
    margin: 0 .3125rem;
    color: #fff;
}

.block_newsletter form input[type=email]:focus {
    border: 0;
    border-bottom: 1px solid #fff;
    padding: 0;
}

/**** PRODUCT ****/

.product-discount-infos {
    display: flex;
    align-items: center;
}

.customer-group-price,
.product-discount-info {
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    margin-left: 1rem;
}

.product-discount-info {
    background: #1C8C47;
}

.customer-group-price {
    background: #e9e9e9;
}

.customer-group-price span,
.product-discount-info span {
    font-family: "Poppins";
    font-size: 0.875rem;
    font-weight: 400;
}

.customer-group-price span {
    color: #242424;
}

.product-discount-info span {
    color: #FFF;
}

@media (max-width: 1199px) {
    .product-discount-info {
        margin-left: 0;
        margin-right: 1rem;
    }

    .customer-group-price {
        margin-left: 0;
    }

    .product-discount-infos {
        margin-top: 0.75rem;
    }

    .customer-group-price,
    .product-discount-info {
        text-align: center;
    }

    .customer-group-price span,
    .product-discount-info span {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {

    .customer-group-price,
    .product-discount-info {
        padding: 0.375rem 0.55rem;
    }

    .product-discount-info {
        margin-right: 0.5rem;
    }
}

@media (max-width: 991px) {
    #product_cover {
        padding: 0;
    }
}

@media (min-width: 992px) {
    #product_thumbs {
        margin-top: 1.88rem;
    }
}

#product_thumbs .swiper-wrapper {
    justify-content: center;
}

#product_thumbs .swiper-slide {
    width: auto;
}

#product #content {
    max-width: 100%;
}

#product_cover {
    margin-top: 0;
    background: #F8FAF7;
}

#product_cover .swiper-slide {
    width: 100% !important;
}

#product_cover img {
    box-shadow: none;
    max-height: 37.5rem;
    height: 100%;
    width: 100%;
}

@media (min-width: 768px) {
    #product_cover {
        border-radius: 0.25rem;
        overflow: hidden;
    }
}

#product_thumbs .swiper-slide {
    height: auto;
    cursor: pointer;
}

#product_thumbs .swiper-slide img {
    border: 1px solid #B2B2B2;
    border-radius: 0.25rem;
}

#product_thumbs .swiper-slide-thumb-active img {
    border: 1px solid #242424;
}

@media (max-width: 991px) {
    #product_thumbs {
        margin-top: 0.75rem;
    }

    #product_thumbs .swiper-slide img {
        width: 3rem;
        height: 3rem;
    }
}

.product-zoom-in {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: #FFF;
    border: 0;
    border-radius: 50%;
    padding: 0.25rem;
    z-index: 1;
    cursor: pointer;
}

.product-description-short p,
.product-description-short ul li {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.elementor-element ul:not(.description-bullet-list),
.product-description-short ul,
.product-description ul:not(.description-bullet-list) {
    padding-left: 2.5rem;
    list-style: disc;
}

.product-reference {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0;
}

.product-description-seo {
    margin-top: 6rem;
}

@media (min-width: 768px) {
    .product-container {
        display: grid;
        grid-template-columns: 1fr 50%;
        grid-template-areas:
            "left1 right"
            "left2 right";
        align-items: start;
        margin-top: 6rem;
    }

    .product-container .left-part.first {
        grid-area: left1;
    }

    .product-container .left-part.second {
        grid-area: left2;
    }

    .product-container .right-part {
        grid-area: right;
        grid-row-end: none;
    }
}

@media (min-width: 992px) {
    .product-container {
        grid-template-columns: 1fr 57%;
    }

    .product-container .right-part {
        padding: 0 3rem;
    }
}

@media (max-width: 767px) {
    .product-container .right-part {
        margin-top: 2.25rem;
    }

    .product-container .left-part.second,
    .product-description-seo {
        margin-top: 3rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-container {
        column-gap: 1.88rem;
    }
}

.product-add-to-cart {
    margin-top: 1.5rem;
}

.product-quantity .add {
    flex: 1;
}

.product-quantity .add,
.product-quantity .qty {
    margin-bottom: 0;
}

.product-actions .add-to-cart {
    height: auto;
    padding-top: 0.375rem;
    width: 100%;
}

.product-quantity .qty {
    margin-right: 1.5rem;
}

.bootstrap-touchspin {
    max-width: 6.3125rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    box-shadow: none;
    border-radius: 0.25rem;
    border: 1px solid #B2B2B2;
    overflow: hidden;
}

.bootstrap-touchspin #quantity_wanted,
.bootstrap-touchspin input.js-cart-line-product-quantity {
    height: 100%;
    text-align: center;
    padding: 0;
    width: 40%;
    color: #242424;
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5rem;
    border: 0;
}

.bootstrap-touchspin .input-group-btn-vertical {
    width: 100%;
    position: absolute;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.js-touchspin.bootstrap-touchspin-up,
.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.js-touchspin.bootstrap-touchspin-down {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 30%;
    padding: 0;
    border: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.js-touchspin.bootstrap-touchspin-up i,
.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.js-touchspin.bootstrap-touchspin-down i {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    line-height: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.js-touchspin.bootstrap-touchspin-up i::after,
.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.js-touchspin.bootstrap-touchspin-down i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bootstrap-touchspin .input-group-btn-vertical .touchspin-up:after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M5 12H19M12 5V19" stroke="%23242424" stroke-width="0.8" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.bootstrap-touchspin .input-group-btn-vertical .touchspin-down:after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M5 12H19" stroke="%23242424" stroke-width="0.8" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.js-touchspin.bootstrap-touchspin-up {
    right: 0;
    border-left: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.js-touchspin.bootstrap-touchspin-down {
    left: 0;
    border-right: 0;
}

.product-description {
    margin-top: 6rem;
}

@media (max-width: 767px) {
    .bootstrap-touchspin {
        height: 2.063rem;
    }

    .product-description {
        margin-top: 3rem;
    }
}

@media (min-width: 992px) {
    .product-description>.row {
        display: flex;
        align-items: center;
    }
}

.img-description img {
	border-radius: 0.75rem;
}

.right-column-desc {
    position: relative;
}

.right-column-desc::before {
    content: "";
    position: absolute;
    left: 0.313rem;
    top: 0.188rem;
    width: 0.125rem;
    height: 100%;
    background: #1C8C47;
}

.right-column-desc>* {
    padding-left: 2.25rem;
    position: relative;
	font-size: 0.875rem;
}

.right-column-desc p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.188rem;
    width: 0.75rem;
    height: 0.75rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #1C8C47;
}

.right-column-desc+a {
    color: #1C8C47;
    font-family: "Poppins";
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.5rem;
    letter-spacing: 0.04375rem;
    text-decoration: underline;
    text-transform: uppercase;
    padding-left: 2.25rem;
}

@media (max-width: 991px) {
    .img-description {
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 0.75rem;
    }
	
	.img-description img {
		border-radius: 0;
	}
}

.custom-tabs {
    margin-top: 0.75rem;
}

.custom-tabs p:not(.nav-title),
.custom-tabs li,
.custom-tabs td {
    font-size: 0.875rem;
}

.nav-item:not(:last-of-type) {
    border-bottom: 1px solid #B2B2B2;
}

.nav-title {
    font-family: "Poppins";
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 2.5rem;
    letter-spacing: 0.05625rem;
    padding: 0.75rem 0;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-title img {
    transition: transform 0.3s ease-in-out;
}

.nav-title[aria-expanded="true"] img {
    transform: rotate(180deg);
}

.nav-item ul li {
    position: relative;
}

.nav-item ul {
    padding-left: 1.2rem;
}

.nav-item table tbody tr {
    border-bottom: 1px solid #E6E6E6;
}

.nav-item table tbody tr:first-of-type td,
.nav-item table tbody tr:first-of-type p {
    font-weight: 600;
}

.nav-item table tbody tr p {
    margin-bottom: 0;
}

.nav-item table tbody tr td {
    padding: 0.625rem 0.625rem 0.625rem 0;
}

.nav-item table {
    margin-bottom: 1.25rem;
    width: 100%;
}

@media (max-width: 767px) {
    .nav-title {
        padding: 0.5rem 0;
    }

    #product .product-quantity {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 2;
        padding: 1.25rem 0.938rem;
        background: #E8F3ED;
    }

    .product-quantity .qty {
        margin-right: 0.75rem;
    }
}

#extra_3 {
    scroll-margin-top: var(--h-header);
}

.product-discounts {
    margin-bottom: 0;
}

.product-prices {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.product-prices div {
    margin-bottom: 0;
}

.current-price {
    margin-right: 0.5rem;
}

.current-price span {
    font-family: "Poppins";
    font-size: 1.125rem;
    font-weight: 300;
    color: #242424;
}

.product-discount .regular-price,
.product-discount .price-without-group-reduc {
    color: #A7A7A7;
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 300;
    margin-right: 0.5rem;
    text-decoration: line-through;
}

.product-information {
    margin-top: 1.5rem;
    color: #242424;
}

.product-prices .tax-shipping-delivery-label {
    color: #242424;
    margin-right: 1rem;
}

/**** SWIPER ****/

.see-all-products {
    margin: 1.5rem auto 0;
    width: fit-content;
    display: block;
}

.swiper {
    margin-top: 6rem;
}

.swiper-slide {
    height: auto;
}

.swiper .product-miniature {
    height: 100%;
}

.swiper h2 {
    margin-bottom: 0rem;
}

.swiper-header {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.custom-button-prev {
    margin-right: 1.5rem;
}

.custom-button-next {
    margin-left: 1.5rem;
}

@media (max-width: 767px) {
    .custom-button-prev {
        margin-right: 1rem;
    }

    .custom-button-next {
        margin-left: 1rem;
    }
}

.swiper-pagination {
    bottom: 1.5rem !important;
}

.swiper-pagination-bullet {
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.50);
    width: 1.5rem;
    height: 0.5rem;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #FFF;
}

@media (max-width: 767px) {
    .swiper {
        padding: 0 15px;
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 3rem;
    }

    .swiper-header {
        display: flex;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .swiper-nav {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
}

.swiper:not(.swiper-initialized) .swiper-slide {
    width: 20.656rem;
    overflow: hidden;
}

/**** HOME ****/

#index #wrapper {
    padding-top: 0;
}

#index #wrapper>.container-fluid {
    padding: 0;
}

#featured_products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    display: grid;
}

@media (min-width: 768px) {
    .p-sticky {
        position: sticky;
        top: var(--h-header);
    }
}

.product-grid .elementor-row {
    align-items: flex-start;
}

/**** CART ****/

#promo-code {
    display: block !important;
    transition: none !important;
}

.block-promo .block-promo>p {
    display: none;
}

.block-promo.promo-highlighted {
    padding: 0;
    font-size: 0.875rem;
    text-align: left;
}

.cart-grid-right .promo-discounts {
    padding: 0;
    text-align: left;
    margin-top: 1rem;
}

.cart-grid-right .promo-discounts .cart-summary-line .label {
    font-size: 0.875rem;
    color: #242424;
    font-weight: 400;
}

.cart-detailed-totals {
    background: #F9F9F9;
    border-radius: 0.25rem;
}

.cart-grid-body {
    margin-bottom: 0;
}

.card-block.cart-summary-totals .cart-summary-line.cart-total {
    background: transparent;
    padding: 0;
}

#cart h1 {
    text-align: center;
}

.card-block.checkout {
    margin-top: 2rem;
    padding-bottom: 0.5rem;
}

.cart-detailed-actions a {
    width: 100%;
}

.cart-grid-body .cart-overview {
    padding: 0;
}

.card {
    margin-bottom: 0;
}

.cart-item:not(:last-of-type) {
    border-bottom: 1px solid #E3E3E3;
}

.cart-summary-line {
    margin-bottom: 0;
}

.cart-summary-line .value {
    font-size: 0.875rem;
}

.cart-summary-line:not(:last-of-type) {
    margin-bottom: 0.75rem;
}

.card-block.cart-summary-totals {
    padding: 1.25rem;
    position: relative;
}

.card-block.cart-summary-totals::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2.5rem);
    height: 1px;
    background: #E3E3E3;
}

.card-block {
    padding: 1.25rem;
}

.cart-advantages-block {
    padding-bottom: 0;
}

.card-title {
    color: #242424;
    font-size: 1rem;
    font-weight: 700;
    line-height: 0.9375rem;
    letter-spacing: 0.06rem;
    margin-bottom: 1rem;
}

.cart-advantages {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F2F2F2;
}

.cart-advantages .cart-advantages-item {
    flex: 1;
    cursor: pointer;
}

.cart-advantages .cart-advantages-item .cart-advantages-item-title {
    color: #000;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 0.9375rem;
    letter-spacing: 0.0525rem;
    margin-bottom: 0.625rem;
    width: fit-content;
    position: relative;
}

.cart-advantages .cart-advantages-item.opened .cart-advantages-item-title {
    font-weight: 700;
}

.cart-advantages .cart-advantages-item.opened .cart-advantages-item-title::before {
    position: absolute;
    content: "";
    bottom: -0.688rem;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background: #000;
}

.block-promo {
    margin-top: 1rem;
    margin-bottom: 0;
}

.block-promo>p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.block-promo .promo-code {
    padding: 0;
}

.block-promo .promo-code form {
    display: flex;
}

.block-promo .promo-input {
    color: #666;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 0.9375rem;
    letter-spacing: 0.045rem;
    border-radius: 0.25rem;
    border: 1px solid #B2B2B2;
    padding: 0.625rem;
    width: 100%;
    margin-right: 0;
    height: auto;
    text-indent: 0;
}

.block-promo .promo-input+button {
    color: #167039;
    font-family: "Poppins";
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5rem;
    width: 4.875rem;
    border-radius: 0.25rem;
    background: #FFF;
    margin-left: 0.625rem;
    cursor: pointer;
    border: 1px solid #167039;
    transition: all 0.2s ease-in-out;
    padding: 0 1rem;
    margin-top: 0;
}

.block-promo .promo-input+button:hover {
    background: #167039;
    color: #FFF;
}

.promo-name {
    margin-bottom: 0;
    margin-top: 1rem;
}

.promo-name .voucher-action {
    display: flex;
    align-items: center;
}

.promo-name .voucher-action a {
    line-height: 1;
}

.promo-name .voucher-action span {
    margin-right: 0.75rem;
    color: #167039;
    font-weight: 600;
}

.product-line-grid-body .product-line-info a {
    color: #242424;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: 0.0675rem;
}

.cart-grid-body a.label:hover {
    color: #167039;
}

.product-line-grid-right .cart-line-product-actions,
.product-line-grid-right .product-price,
.product-line-grid-right .cart-line-product-actions .remove-from-cart,
.product-line-grid-right .product-price .remove-from-cart {
    color: #242424;
    line-height: 1;
}

.product-line-grid-right .cart-line-product-actions .remove-from-cart,
.product-line-grid-right .product-price .remove-from-cart {
    margin-top: 0;
}

.product-line-grid-right.product-line-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.product-line-grid-right.product-line-actions .price {
    margin: 0 2rem;
}

.product-line-grid-right.product-line-actions .bootstrap-touchspin {
    height: 2rem;
}

@media (max-width: 767px) {
    .product-line-grid-right.product-line-actions {
        justify-content: space-between;
        margin-top: 1rem;
    }

    .product-line-grid-body {
        margin-bottom: 0;
    }

    .cart-grid-right .cart-summary {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 768px) {
    .product-line-grid {
        display: flex;
        align-items: center;
    }
}

/**** CHECKOUT ****/

#checkout .cart-summary {
    background: #F9F9F9;
    border-radius: 0.25rem 0.25rem 0 0;
}

#checkout .checkout-summary {
    background: #F9F9F9;
    border-radius: 0 0 0.25rem 0.25rem;
}

body#checkout #header .header-nav .logo {
    width: 100%;
    max-width: 18rem;
    max-height: auto;
}

body#checkout #wrapper {
    padding-top: 6rem;
}

body#checkout #header {
    box-shadow: none;
}

body#checkout #header .header-nav {
    box-shadow: none;
    text-align: center;
}

body#checkout section.checkout-step {
    box-shadow: none;
    padding: 0;
}

body#checkout #footer {
    box-shadow: none;
    background: #329C5B;
    color: #FFF;
    padding: 2rem 0;
}

body#checkout #footer p {
    color: #E8F3ED;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75rem;
}

body#checkout #footer p a {
    color: #E8F3ED;
    font-weight: 600;
    line-height: normal;
}

body#checkout #footer .secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

body#checkout #footer .secure-payment svg {
    margin-right: 0.19rem;
}

.cart-summary-products {
    border-radius: 0.25rem 0.25rem 0 0;
    background: #F9F9F9;
    padding-bottom: 0;
}

body#checkout .cart-detailed-totals {
    border-radius: 0 0 0.25rem 0.25rem;
}

.cart-summary-products>p {
    font-weight: 700;
    line-height: 1.75rem;
    letter-spacing: 0.06rem;
}

.media-list {
    margin-bottom: 0;
}

.media-list .media:not(:last-of-type) {
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

body#checkout #cart-summary-product-list img {
    border: 0;
    width: 4rem;
}

.media-left {
    padding-right: 1.5rem;
}

#cart-summary-product-list .product-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: 0.06rem;
}

#cart-summary-product-list .product-quantity {
    color: #666;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 0.9375rem;
    letter-spacing: 0.045rem;
}

#cart-summary-product-list .product-price {
    color: #242424;
    font-family: "Poppins";
    font-size: 0.875rem;
    font-weight: 400;
    line-height: normal;
}

body#checkout .checkout-step .step-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.75rem;
    letter-spacing: 0.075rem;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body#checkout .condition-label {
    margin-left: 0;
    margin-top: 0;
}

body#checkout section.checkout-step .content {
    padding: 0 0 2rem;
}

.nav-inline .nav-item {
    border-bottom: 0;
}

.nav-item .nav-link.active {
    border-bottom: 1px solid;
}

body#checkout a:hover {
    color: #242424;
}

body#checkout section.checkout-step .form-footer {
    text-align: left;
}

body#checkout section.checkout-step #customer-form,
body#checkout section.checkout-step #delivery-address,
body#checkout section.checkout-step #invoice-address,
body#checkout section.checkout-step #login-form {
    margin: 0;
}

body#checkout section.checkout-step {
    border-color: #E3E3E3;
}

body#checkout section.checkout-step h1 {
    position: relative;
}

body#checkout section.checkout-step h1.step-edit {
    display: none;
}

body#checkout section.checkout-step.-reachable.-complete h1 .step-edit {
    margin-right: 0;
    color: #242424;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3125rem;
    display: flex;
    align-items: center;
    text-transform: math-auto;
    margin-top: 0;
}

body#checkout section.checkout-step.-reachable.-complete h1 .step-edit svg {
    margin-right: 0.13rem;
}

body#checkout section.checkout-step .forgot-password {
    margin-left: 0;
}

body#checkout section.checkout-step .address-item.selected {
    border: 0;
    border-radius: 0.25rem;
    background: #E8F3ED;
}

body#checkout section.checkout-step .address-footer {
    text-align: left;
    padding-left: 2.2rem;
    padding-top: 0;
}

body#checkout section.checkout-step .add-address a {
    color: #242424;
    display: flex;
    align-items: center;
    font-weight: 600;
    text-decoration: underline;
}

body#checkout section.checkout-step .add-address a svg {
    margin-right: 0.25rem;
}

body#checkout section.checkout-step .radio-block,
body#checkout section.checkout-step header.h4 {
    margin-bottom: 0;
}

body#checkout section.checkout-step .radio-block {
    padding-bottom: 0.625rem;
}

body#checkout section.checkout-step .address-item {
    border: 0;
    border-radius: 0.25rem;
    background: #F9F9F9;
}

body#checkout section.checkout-step #delivery-addresses,
body#checkout section.checkout-step #invoice-addresses,
body#checkout section.checkout-step .add-address {
    margin-top: 0;
}

body#checkout section.checkout-step .add-address {
    margin-bottom: 1.5rem;
}

body#checkout section.checkout-step .delete-address,
body#checkout section.checkout-step .edit-address {
    color: #000;
    font-family: "Poppins";
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5rem;
    text-decoration: underline;
}

body#checkout .cancel-address {
    color: #000;
    font-family: "Poppins";
    float: left;
}

body#checkout section.checkout-step .carrier-delay,
body#checkout section.checkout-step .carrier-name {
    display: block;
}

body#checkout section.checkout-step .delivery-option p {
    margin-bottom: 0;
}

body#checkout section.checkout-step .delivery-option p.carrier-name {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 0.6875rem;
    text-transform: uppercase;
    margin-bottom: 0.56rem;
}

body#checkout section.checkout-step .delivery-option p.carrier-delay {
    color: #313235;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 0.9375rem;
    letter-spacing: 0.0525rem;
    margin-bottom: 0.69rem;
}

body#checkout section.checkout-step .delivery-option p.carrier-price {
    font-family: "Poppins";
    font-size: 0.875rem;
    font-weight: 400;
}

body#checkout section.checkout-step .delivery-option label {
    margin-bottom: 0;
    width: 100%;
}

body#checkout section.checkout-step .delivery-option {
    border-radius: 0.25rem;
    border: 1px solid #B2B2B2;
    background: transparent;
    max-width: 27.5625rem;
    display: flex;
    padding: 0.69rem;
}

body#checkout section.checkout-step .delivery-option.selected {
    background: #E8F3ED;
    border: 1px solid #E8F3ED;
}

body#checkout section.checkout-step .delivery-option .custom-radio {
    margin-right: 0.75rem;
}

.payment-options .payment-item {
    border-radius: 0.25rem;
    border: 1px solid #B2B2B2;
    padding: 1.25rem;
}

.payment-options .payment-item:has(.payment-option.selected) {
    background: #E8F3ED;
    border: 1px solid #E8F3ED;
}

.definition-list dl dd:nth-of-type(2n),
.definition-list dl dt:nth-of-type(2n),
.definition-list dl dd,
.definition-list dl dt {
    background: transparent;
    padding: 0;
}

@media (max-width: 767px) {
    body#checkout #footer {
        padding: 0.75rem 0;
    }

    body#checkout #footer p {
        font-size: 0.75rem;
    }

    body#checkout #footer p a {
        font-size: 1rem;
    }

    body#checkout #wrapper {
        padding-top: 3rem;
    }

    body#checkout .checkout-step .step-title {
        font-size: 1.125rem;
        padding: 0.94rem 0;
    }

    body#checkout #header #_desktop_logo {
        margin-top: 1rem;
    }

    body#checkout .btn-primary {
        width: 100%;
    }

    body#checkout .cancel-address {
        width: stretch;
        text-align: center;
    }

    body#checkout section.checkout-step .address-item {
        flex: 0 0 100%;
    }

    body#checkout section.checkout-step .payment-options .payment-option {
        display: flex;
        align-items: center;
    }

    body#checkout section.checkout-step .payment-options label {
        width: 100%;
    }

    body#checkout section.checkout-step .payment-options .custom-radio {
        margin-right: 1rem;
    }

    .payment-options .payment-item {
        padding: 1rem;
    }
}

body#checkout section.checkout-step .payment-options .payment-option {
    margin-bottom: 0;
}

.payment-options .payment-item:not(:last-of-type) {
    margin-bottom: 0.75rem;
}

body#checkout section.checkout-step .payment-options label {
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
    display: block;
    text-align: left;
}

body#checkout .additional-information {
    margin-left: 2.075rem;
    margin-top: 1.25rem;
}

body#checkout .additional-information p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

body#checkout .payment-option label img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

#checkout-payment-step .content {
    padding: 0 0 2rem;
}

body#checkout section.checkout-step .payment-options label span {
    font-weight: 700;
    line-height: 0.6875rem;
}

body#checkout section.checkout-step .address-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/**** FORM ****/

.form-control-label {
    padding-top: 0;
    margin-bottom: 0.31rem;
    color: #242424;
    line-height: 0.9375rem;
}

.form-control {
    border-radius: 0.25rem !important;
    border: 1px solid #B2B2B2;
    color: #242424;
    padding: 0.25rem 0.75rem;
    background-color: transparent;
    height: 3.125rem;
    line-height: 2.25;
    font-size: 0.875rem;
}

select.form-control:not([size]):not([multiple]) {
    height: 3.125rem;
}

.form-control:focus {
    color: #242424;
    border-color: #B2B2B2;
}

.form-control:focus,
.input-group.focus {
    outline: none;
}

.input-group .input-group-btn {
    height: auto;
    position: absolute;
    right: 0;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
}

.input-group .input-group-btn>.btn[data-action=show-password] {
    line-height: 1;
    background: transparent;
    cursor: pointer;
}

body#checkout .custom-checkbox span {
    margin-top: 0.125;
    margin-right: 0.5rem;
}

.custom-checkbox label {
    display: flex;
    margin-bottom: 0;
}

.form-group .custom-checkbox input[type="checkbox"]+span {
    border-radius: 0.125rem;
    border: 1px solid #313235;
    margin-right: 0.5rem;
    width: 0.9375rem;
    height: 0.9375rem;
    aspect-ratio: 1/1;
}

#customer-form .radio-inline,
#delivery-address .radio-inline,
#invoice-address .radio-inline,
#login-form .radio-inline {
    margin-bottom: 0;
    display: inline-flex;
    font-size: 0.75rem;
    line-height: 0.9375rem;
    letter-spacing: 0.045rem;
    color: #242424;
}

#customer-form .radio-inline:not(:last-of-type),
#delivery-address .radio-inline:not(:last-of-type),
#invoice-address .radio-inline:not(:last-of-type),
#login-form .radio-inline:not(:last-of-type) {
    margin-right: 1.5rem;
}

.custom-radio {
    border: 1px solid #313235;
    width: 0.875rem;
    height: 0.875rem;
    margin-right: 0.25rem !important;
}

.custom-radio input[type=radio] {
    width: 0.875rem;
    height: 0.875rem;
}

.custom-radio input[type=radio]:checked+span {
    background: #313235;
    width: 0.5rem;
    height: 0.5rem;
}

.form-control-valign {
    display: flex;
    padding-top: 0;
}

.form-control-valign .form-control-label {
    margin-bottom: 0;
    margin-right: 1.5rem;
}

.form-group {
    width: 100%;
}

#customer-form>section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#login-form>section {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control-comment {
    color: #666;
    font-size: 0.75rem;
    font-style: italic;
    font-weight: 300;
    line-height: 0.9375rem;
    letter-spacing: 0.045rem;
}

.js-address-form .form-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 767px) {

    .form-control,
    select.form-control:not([size]):not([multiple]) {
        height: 2rem;
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    #customer-form>section {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {

    #checkout #customer-form>section,
    #checkout .js-address-form .form-fields {
        padding-right: 2rem;
    }

    .half-width {
        width: 45%;
    }
}

/**** MY ACCOUNT ****/

.page-addresses .address,
.page-authentication #content {
    box-shadow: none;
}

.page-customer-account #content {
    box-shadow: none;
    padding: 0;
    color: #242424;
    margin-bottom: 0;
}

.page-customer-account .page-footer {
    text-align: center;
    margin-bottom: 0;
    margin-top: 0.75rem;
}

.page-customer-account .page-footer a span {
    color: #000;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 0.9375rem;
    letter-spacing: 0.045rem;
    text-decoration: underline;
}

.page-authentication #content {
    padding: 0;
}

.page-authentication #wrapper,
.page-password #wrapper {
    padding-top: 2rem;
}

.page-authentication h1,
#password h1,
.page-customer-account h1 {
    text-align: center;
}

.separator-or {
    font-size: 1rem;
    font-weight: 700;
    line-height: 0.9375rem;
    letter-spacing: 0.06rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.no-account a {
    color: #000;
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    text-decoration: underline;
}

.no-account a:hover,
.no-account a:focus {
    color: #11542B;
}

.login-form {
    margin-bottom: 1.75rem;
}

@scope (.page-authentication #login-form) {
    .form-footer {
        text-align: center;
    }

    .form-group {
        margin-left: auto;
        margin-right: auto;
    }

    .half-width {
        width: 100%;
        max-width: 25rem;
    }
}

#submit-login {
    width: 100%;
    max-width: 25rem;
}

#authentication #login-form>section {
    margin-bottom: 0;
}

.login-form {
    margin-top: 2rem;
}

.page-customer-account #content .forgot-password {
    text-align: left;
    margin-top: 0.75rem;
    padding-bottom: 0;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 0.9375rem;
    width: 100%;
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
    color: #242424;
}

.forgotten-password {
    padding: 0;
}

.forgotten-password .form-fields .center-email-fields {
    flex-direction: column;
    max-width: 25rem;
    width: 100%;
    margin: auto;
}

.forgotten-password .form-fields .email {
    width: 100%;
}

.forgotten-password .form-fields label.required {
    text-align: left;
}

.forgotten-password .form-fields .email input {
    margin-bottom: 1.5rem;
    height: 3.125rem;
}

.send-renew-password-link {
    padding: 0;
    max-width: 28.6875rem;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.forgotten-password .form-fields .center-email-fields button {
    height: auto;
    padding: 0.375rem 0.75rem;
}

#authentication .custom-checkbox label {
    padding-left: 0;
}

.register-form>p {
    text-align: center;
    font-size: 0.875rem;
}

.page-authentication #content {
    max-width: 65rem;
}

.register-form #customer-form {
    margin-top: 3rem;
    max-width: 55rem;
    margin-left: auto;
    margin-right: auto;
}

.register-form #customer-form .form-footer {
    text-align: center;
}

.register-form #customer-form .form-footer p {
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 0.9375rem;
}

.register-form #customer-form .form-footer p a {
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.page-customer-account #content-wrapper,
#my-account #content,
#addresses #content {
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

#my-account h1,
#addresses h1 {
    text-align: center;
}

.page-my-account #content .links a {
    text-align: left;
}

.page-my-account #content .links .link-item {
    box-shadow: none;
    border-radius: 0.25rem;
    border: 0.5px solid #B2B2B2;
    padding: 1.44rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease-in-out;
    background: #FFF;
}

.page-my-account #content .links .link-item:hover {
    background: #f9f9f9;
}

.page-my-account #content .links .link-content {
    display: flex;
    flex-direction: column
}

.page-my-account #content .links .link-title {
    color: #242424;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 0.6875rem;
    text-transform: math-auto;
}

.page-my-account #content .links .link-subtitle {
    color: #313235;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 0.9375rem;
    letter-spacing: 0.0525rem;
    margin-top: 0.81rem;
    text-transform: none;
}

.header-content {
    margin-bottom: 2rem;
}

#main .page-header {
    margin-bottom: 1.25rem;
}

#history .order-item .order-name {
    color: #000;
    font-size: 0.875rem;
    line-height: 0.9375rem;
    letter-spacing: 0.0525rem;
    margin-bottom: 0;
}

#history .order-item .order-total {
    margin-bottom: 0;
}

#history .order-item {
    border-radius: 0.25rem;
    border: 0.5px solid #B2B2B2;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#history .order-item>a {
    margin-top: 1.44rem;
    color: #000;
    font-family: "Poppins";
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5rem;
    text-decoration: underline;
}

#history .order-item .order-left {
    width: 80%;
}

#history .orders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.88rem;
    row-gap: 1.88rem;
}

.page-addresses .address {
    border-radius: 0.25rem;
    border: 0.5px solid #B2B2B2;
}

.page-addresses .address .address-body address {
    min-height: auto;
}

.page-addresses .address .address-body {
    padding: 1rem 1rem 0;
}

.page-addresses .address .address-footer {
    border-top: 0;
    padding: 0 1rem 1rem;
}

.page-addresses .address .address-footer a {
    color: #242424;
}

.page-addresses .address .address-footer a span {
    text-decoration: underline;
}

.page-addresses .addresses-footer a {
    font-size: 0.75rem;
    font-weight: 600;
}

.page-addresses .addresses-footer a span {
    text-decoration: underline;
}

.page-addresses .addresses-footer a,
.page-addresses .addresses-footer a:hover {
    color: #242424;
}

.page-addresses .addresses-footer a svg {
    position: relative;
    top: 0.188rem;
}

/**** ORDER CONFIRMATION ****/

#img_order_confirmation {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 1.5rem;
}

#img_order_confirmation img {
    width: 100%;
    height: auto;
}

#order-confirmation #wrapper {
    padding-top: 0;
}

#order-items {
    border-right: 0;
}

.order-confirmation-list li {
    display: flex;
}

.order-confirmation-list li p {
    margin-bottom: 0;
}

#order-items .order-line:not(:last-of-type) {
    border-bottom: 1px solid #E3E3E3;
}

#order-items .order-confirmation-table table {
    border-radius: 0.25rem;
    background: #F9F9F9;
}

#order-items table tr.total-value {
    background-color: transparent;
    border-top: 1px solid #E3E3E3;
}

#order-items table tr.total-value td:last-of-type {
    font-size: 1.125rem;
}

#order-items table tr td {
    padding: 1rem;
}

#order-items .details span {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: 0.0675rem;
}

#content-hook_order_confirmation .download-invoice {
    color: #000;
    font-family: "Poppins";
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5rem;
    text-decoration: underline;
}

#order-details,
#content-hook_payment_return {
    margin-top: 2rem;
    border-radius: 0.25rem;
    background: #F9F9F9;
    padding: 1.5rem 1.5rem 0.875rem;
}

#order-details ul {
    margin-bottom: 0;
}

#order-details h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
}

/**** MODAL ****/

.modal-backdrop.in {
    opacity: 1;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.2);
}

#blockcart-modal .modal-dialog {
    max-width: 58.25rem;
    width: 100%;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#blockcart-modal .modal-content {
    border: 0;
}

#blockcart-modal .modal-body {
    padding: 0;
    display: flex;
    align-items: stretch;
}

#blockcart-modal .modal-body .modal-right-part {
    padding: 1.5rem;
    background: #FFF;
}

#blockcart-modal .modal-body .modal-right-part,
#blockcart-modal .modal-body .modal-left-part {
    width: 50%;
}

#blockcart-modal .modal-body .modal-left-part img {
    height: 100%;
    object-fit: cover;
}

.product-added {
    display: flex;
    align-items: center;
}

.product-added .product-img {
    margin-right: 0.75rem;
}

.product-added .product-img img {
    border-radius: 0.25rem;
    background: #FAF8F7;
    width: 3.75rem;
    height: 3.75rem;
}

#blockcart-modal .product-name {
    color: #242424;
    font-size: 1rem;
    font-weight: 500;
}

#blockcart-modal .product-price {
    color: #242424;
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 300;
    margin-top: 0.38rem;
}

#blockcart-modal .product-added-to-cart {
    margin-left: auto;
    text-align: center;
}

#blockcart-modal .product-added-to-cart>span {
    font-size: 0.75rem;
}

#blockcart-modal .product-added-to-cart .cart-icon {
    position: relative;
    margin-bottom: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

#blockcart-modal .product-added-to-cart .cart-icon span {
    color: #000;
    font-size: 0.625rem;
    font-weight: 600;
    background: #F8AA2F;
    border-radius: 50%;
    position: absolute;
    aspect-ratio: 1 / 1;
    height: 0.875rem;
    top: 0;
    right: -0.125rem;
    line-height: 1.4;
}

#blockcart-modal button.close {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
}

#blockcart-modal .cart-content-btn {
    text-align: center;
    margin-top: 1.5rem;
}

@media (max-width: 767px) {
    #blockcart-modal .modal-body .modal-right-part {
        width: 100%;
    }

    .products-add-to-cart>p {
        font-size: 1rem;
    }

    .products-list .product-item .name {
        font-size: 0.875rem;
    }

    .products-list .product-item .feature {
        font-size: 0.75rem;
    }

    .products-add-to-cart {
        margin-top: 1rem;
    }
}

/**** CMS ****/

#main .page-footer {
    margin-bottom: 0;
}

.page-content.page-cms {
    padding: 0;
}

.page-content.page-cms ul {
    padding-left: 2.5rem;
    list-style: disc;
}

#cms.cms-id-34 .breadcrumb,
#cms.cms-id-35 .breadcrumb,
#cms.cms-id-36 .breadcrumb,
#cms.cms-id-37 .breadcrumb,
#cms.cms-id-38 .breadcrumb {
    max-width: 88.25rem;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) and (max-width: 1462px) {

    #cms.cms-id-34 .breadcrumb,
    #cms.cms-id-35 .breadcrumb,
    #cms.cms-id-36 .breadcrumb,
    #cms.cms-id-37 .breadcrumb,
    #cms.cms-id-38 .breadcrumb {
        padding: 0 35px;
    }
}

@media (max-width: 767px) {

    #cms.cms-id-34 .breadcrumb,
    #cms.cms-id-35 .breadcrumb,
    #cms.cms-id-36 .breadcrumb,
    #cms.cms-id-37 .breadcrumb,
    #cms.cms-id-38 .breadcrumb {
        padding: 0;
    }
}

.page-content.page-cms:has(.cms-page) {
    text-align: left;
}

@scope (.cms-page) {
    .text-green {
        color: #329C5B;
    }

    .text-white {
        color: #FFF;
    }

    h2 {
        font-size: 1.25rem;
        font-weight: 500;
        text-transform: uppercase;
    }

    h3 {
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
    }

    .h3 {
        color: #242424;
        font-size: 1rem;
        font-weight: 500;
    }

    .cms-hero {
        margin-bottom: 3rem;
    }

    .cms-hero-bg {
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 25.0625rem;
        position: relative;
    }

    .cms-hero h1 {
        color: #FFF;
        text-align: center;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.50);
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.75rem;
        letter-spacing: 0.12rem;
    }

    .cms-hero .subtitle {
        color: #FFF;
        text-align: center;
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.80);
        font-family: "Poppins";
        font-size: 1.75rem;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.105rem;
        text-transform: uppercase;
    }

    .intro-content {
        max-width: 63rem;
        margin: 0 auto;
        text-align: center;
    }

    .cms-outro {
        text-align: center;
        margin-top: 6rem;
    }

    .cms-outro .h2 {
        color: #329C5B;
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.375rem;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .cms-reward {
        margin-top: 3rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
        text-align: center;
    }

    .cms-reward h2,
    .cms-reward p {
        color: #FFF;
    }

    .cms-reward .value {
        font-size: 0.875rem;
        font-style: italic;
        margin-bottom: 0;
    }

    .cms-split {
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        position: relative;
        margin-top: 6rem;
    }

    .cms-split.align-top {
        align-items: flex-start;
    }

    .bg-light-green {
        background: #E8F3ED;
    }

    .bg-green {
        background: #1C8C47;
    }

    .bg-aqua-green {
        background: #329C5B;
    }

    .cms-split:not(.reverse) .split-text {
        padding: 0 3rem;
    }

    .cms-split.align-top:not(.reverse) .split-text {
        padding-top: 2.75rem;
    }

    .cms-split .split-image {
        background: #FFF;
    }

    .cms-split:not(.reverse) .split-image {
        text-align: right;
    }

    .cms-split.reverse {
        flex-direction: row-reverse;
    }

    .cms-split.reverse .split-text {
        padding-right: 3rem;
    }

    .cms-split .split-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .split-detail {
        padding: 1.25rem 2rem;
        width: calc(100% + 8rem);
        position: relative;
        left: -8rem;
        margin-top: 2.75rem;
    }

    .split-text .list {
        position: relative;
    }

    .split-text .list::before {
        content: "";
        position: absolute;
        left: 0.313rem;
        top: 0.188rem;
        width: 0.125rem;
        height: 100%;
        background: #1C8C47;
    }

    .split-text .list>p {
        padding-left: 2.25rem;
        position: relative;
    }

    .split-text .list>.title::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.188rem;
        width: 0.75rem;
        height: 0.75rem;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        background: #1C8C47;
    }

    .split-text .title {
        font-family: "Poppins";
        font-weight: 500;
        margin-bottom: 0;
    }

    .split-text .subtitle {
        color: #666;
        font-size: 0.875rem;
    }

    .split-image,
    .split-text {
        flex: 1 1 50%;
    }

    .split-image img {
        width: 100%;
        height: auto;
        max-height: 32.5rem;
        object-fit: cover;
    }

    .separator {
        width: 0.125rem;
        height: 5.625rem;
        background: #FFCE43;
        margin: auto;
        position: relative;
        margin-bottom: 1.28rem;
    }

    .separator::after {
        content: "";
        width: 0.55188rem;
        height: 0.55188rem;
        display: block;
        background: #329C5B;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }

    @media (max-width: 767px) {
        .cms-split {
            flex-direction: column;
        }
    }
}

.mt-0 {
    margin-top: 0;
}

.call-to-action::before {
    content: "";
    background: #329C5B;
    position: absolute;
    bottom: 100%;
    width: 100%;
    height: 2rem;
    left: 0;
}

.separator.big::after {
    width: 1.19319rem;
    height: 1.19319rem;
    background: #71BC8E;
    bottom: -1.25rem;
}

.separator.big {
    z-index: 1;
}

.call-to-action {
    position: relative;
    padding: 2.5rem 0 4rem;
}

.call-to-action p {
    color: #FFF;
    font-size: 1.25rem;
    line-height: 2;
}

.objectives-wrapper {
    display: flex;
    align-items: stretch;
    max-width: 106rem;
    margin: auto;
}

@media (min-width: 1696px) {
    .objectives-wrapper .objectives-image img {
        border-radius: 0.25rem;
    }
}

.objectives-wrapper .objective-item .objective-number {
    display: flex;
    align-items: center;
}

.objectives-wrapper .objective-item .objective-details {
    padding-left: 2.25rem;
}

.objectives-wrapper .objective-item .objective-details ul {
    list-style: none;
    padding-left: 0;
}

.objectives-wrapper .objective-item .objective-details ul li {
    position: relative;
    display: flex;
}

.objectives-wrapper .objective-item .objective-details ul li:not(:last-of-type) {
    margin-bottom: 1rem;
}

.objectives-wrapper .objective-item .objective-details ul li::before {
    content: "";
    width: 0.375rem;
    height: 0.375rem;
    display: block;
    background: #329C5B;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    margin-right: 0.75rem;
    position: relative;
    top: 0.438rem;
}

.objectives-wrapper .objective-item .objective-details ul li p {
    margin-bottom: 0;
}

.objectives-wrapper .objective-item .objective-number p {
    font-family: "Poppins";
    font-weight: 500;
    line-height: 1rem;
    margin-bottom: 0;
}

.objectives-wrapper .objective-item .objective-number .number {
    color: #000;
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.1875rem;
    width: 1.8125rem;
    height: 1.8125rem;
    background: #FFCE43;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.44rem;
    aspect-ratio: 1 / 1;
}

.objectives-wrapper .objectives-image,
.objectives-wrapper .objectives-content {
    width: 50%;
}

.objectives-wrapper .objectives-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 43.188rem;
}

.objectives-wrapper .objectives-image {
    text-align: right;
}

.objectives-wrapper .objectives-content {
    padding-left: 1.81rem;
    padding-right: calc((100% - 86.375rem) / 2);
    align-self: center;
}

.objective-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.summary-section {
    padding: 3rem 0;
    color: #FFF;
    position: relative;
    margin-bottom: 1.25rem;
}

.summary-section::after {
    content: url("/img/cms/summary-right-leaves.svg");
    position: absolute;
    right: 0;
    bottom: 0;
}

.evolution-section,
.summary-section,
.call-to-action {
    text-align: center;
}

.evolution-section {
    margin-bottom: 1.25rem;
}

.page-content.page-cms .summary-section ul,
.page-content.page-cms .evolution-section ul {
    list-style: none;
}

.summary-section ul li {
    color: #FFF;
}

.evolution-section ul li:not(:last-of-type),
.summary-section ul li:not(:last-of-type) {
    margin-bottom: 1rem;
}

.evolution-section ul li,
.summary-section ul li {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.evolution-section ul li::before,
.summary-section ul li::before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 0.4375rem;
    height: 0.4375rem;
    position: relative;
    top: -0.125rem;
    right: 0.375rem;
}

.evolution-section ul li::before {
    background: #329C5B;
}

.summary-section ul li::before {
    background: #FFCE43;
}

.analysis-section {
    margin-bottom: 1.25rem;
}

.comparison-section {
    margin-top: 0.69rem;
}

.comparison-subtitle {
    font-family: "Poppins";
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.1875rem;
    margin-bottom: 0;
}

.comparison-grid {
    display: flex;
    max-width: 37rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 1.75rem auto 0.69rem;
}

.comparison-card {
    width: 17.4375rem;
    height: 7.5rem;
    border: 0.5px solid #B2B2B2;
    background: #FFF;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.comparison-card:last-of-type {
    margin: auto;
}

.comparison-card:not(:last-of-type) {
    margin-bottom: 1.31rem;
}

.comparison-card .comparison-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 0.9375rem;
    letter-spacing: 0.0525rem;
    margin-top: 0.06rem;
    margin-bottom: 0.25rem;
}

.comparison-card .comparison-source {
    text-align: center;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 0.9375rem;
    letter-spacing: 0.0375rem;
    margin-top: auto;
    margin-bottom: 0;
}

.comparison-card .comparison-number {
    color: #329C5B;
    text-align: center;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    line-height: 1.1875rem;
}

.comparison-card .comparison-number .large-number {
    font-size: 1.25rem;
}

.comparison-card .comparison-number .small-text {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.carbon-results {
    border: 0.5px solid #B2B2B2;
    background: #FFF;
    padding: 0.81rem 3.87rem 1.87rem;
}

.carbon-section .container,
.evolution-section .container,
.analysis-section .container,
.summary-section .container {
    max-width: 55rem;
}

.carbon-results .cr-item {
    display: flex;
    align-items: center;
}

.carbon-results .cr-item p {
    margin-bottom: 0;
}

.carbon-results .cr-item:not(:last-of-type) {
    margin-bottom: 0.94rem;
}

.carbon-results .cr-item .year {
    color: #329C5B;
    font-family: "Poppins";
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.1875rem;
    text-transform: uppercase;
    width: 2.875rem;
    height: 2.875rem;
    background: #FFF3D1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.38rem;
    aspect-ratio: 1 / 1;
}

.text-center {
    text-align: center;
}

.cms-block.bg-light-green {
    padding: 2.13rem 0;
}

.activities {
    display: flex;
    max-width: 37rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    margin-top: 2.5rem;
    position: relative;
}

.activities .yellow-line {
    position: absolute;
    left: calc(50% - 1px);
    bottom: 0px;
    height: 0.125rem;
    background: rgb(255, 206, 67);
}

.activities .activity {
    width: 13.4375rem;
    height: 7.875rem;
    border: 0.5px solid #B2B2B2;
    background: #FFF;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 4.44rem;
}

.activities .activity.left::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 0.125rem;
    background: #FFCE43;
}

.activities .activity.bottom::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0.125rem;
    height: 4.44rem;
    background: #FFCE43;
}

.activities .activity img {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
}

.activities .activity p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.cms-img-block {
    text-align: center;
}

.cms-img-block img {
    margin-bottom: 0.88rem;
}

@media (max-width: 1400px) {
    @scope (.cms-page) {
        .cms-split:not(.reverse) .split-text {
            padding: 0 1rem;
            padding-right: 1rem;
        }
    }
}

@media (max-width: 767px) {
    @scope (.cms-page) {

        p,
        ul li {
            text-align: justify;
        }

        .cms-split {
            margin-top: 3rem;
        }

        .cms-hero {
            margin-bottom: 1.31rem;
        }

        .cms-hero-bg {
            height: 19.6875rem;
        }

        .cms-hero h1 {
            font-size: 1.25rem;
        }

        .cms-hero .subtitle {
            font-size: 0.875rem;
        }

        .cms-split:not(.reverse) .split-text {
            padding-top: 1.31rem;
        }

        .cms-split.reverse {
            margin-top: 0;
        }

        .cms-split.reverse .split-image {
            margin: 0 -15px 1.31rem;
        }

        .cms-split.reverse .split-text {
            padding: 0;
        }

        .cms-split.reverse {
            flex-direction: column;
        }

        .split-detail {
            left: -15px;
            width: calc(100% + 30px);
            padding: 1rem 15px;
        }

        .cms-reward {
            padding: 1.5rem 15px;
            margin-top: 1.31rem;
        }

        .cms-reward p {
            text-align: center;
        }

        .cms-outro .h2 {
            text-align: center;
            font-size: 1rem;
        }

        .cms-outro .h2 br {
            display: none;
        }

        .cms-outro {
            margin-top: 3rem;
        }

        h2 {
            font-size: 1rem;
        }
    }

    .activities .activity {
        width: 8.9375rem;
        height: auto;
        margin-bottom: 3.5rem;
        padding-top: 2rem;
    }

    .activities .activity.bottom::after {
        height: 3.5rem;
    }

    .activities .activity p {
        font-size: 0.75rem;
        text-align: center;
    }

    .comparison-card {
        width: 10.4375rem;
        height: auto;
    }

    .comparison-card:not(:last-of-type) {
        margin-bottom: 0.75rem;
    }

    .objectives-wrapper {
        flex-direction: column;
    }

    .objectives-wrapper .objectives-image,
    .objectives-wrapper .objectives-content {
        width: 100%;
    }

    .objectives-wrapper .objectives-image {
        margin-bottom: 1.31rem;
    }

    .carbon-results {
        padding: 1rem;
    }

    .cms-block.bg-light-green,
    .cms-block.bg-green,
    .cms-block.bg-aqua-green {
        padding: 1.5rem 15px;
    }

    .objectives-wrapper .objectives-content {
        padding-left: 0;
    }

    .call-to-action p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5rem;
    }

    .summary-section::after {
        display: none;
    }

    .page-content.page-cms .summary-section ul,
    .page-content.page-cms .evolution-section ul {
        padding-left: 0;
    }

    .evolution-section ul li,
    .summary-section ul li {
        text-align: center;
    }

    .comparison-grid,
    .activities {
        max-width: 25rem;
    }
}

@media (max-width: 1024px) {
    .cms-block:not(.bg-light-green, .bg-green, .bg-aqua-green) {
        background: none !important;
        margin: 0;
    }
}

@media (min-width: 768px) {
    .call-to-action .cta-text:first-of-type {
        margin-bottom: 0;
    }
}

.partners {
    margin-top: 6rem;
}

.partners .partners-content h3 {
    font-size: 1.5rem;
    color: #1C8C47;
}

.partners .partner {
    margin-bottom: 2rem;
}

.partners .partner h4 {
    font-size: 1.5rem;
}

.partners .partner a {
    margin-top: 1rem;
	text-decoration: underline;
    color: #000;
    font-weight: 600;
}

.partners .partner img {
    width: 100%;
    height: auto;
    max-width: 11.25rem;
}

.partners .partners-list {
    margin-bottom: 3rem;
}

@media (max-width: 767px) {
    .partners .partner img {
        max-width: 6.25rem;
    }

    .partners .partners-content h3,
    .partners .partner h4 {
        font-size: 1.2rem;
    }
}

/**** CONTACT ****/

#contact h1 {
    text-align: center;
}

#contact .contact-wrapper {
    display: flex;
    align-items: flex-start;
}

#contact .contact-wrapper .contact-content {
    margin-right: 7.25rem;
}

#contact .contact-wrapper .contact-info {
    width: 40%;
    background: #E8F3ED;
    padding: 2rem;
}

#contact .contact-info p {
    color: #666;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 0.9375rem;
    letter-spacing: 0.0525rem;
}

#contact .contact-info p.contact-title {
    color: #329C5B;
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75rem;
    text-transform: uppercase;
}

#contact .contact-info>a {
    color: #000;
    text-align: center;
    font-family: "Poppins";
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact .contact-info>a svg {
    margin-right: 0.625rem;
}

#contact .contact-info>a svg path {
    transition: all 0.2s ease-in-out;
}

.wpcfu input[type="radio"] {
    accent-color: #329C5B;
}

@media (hover: hover) {
    #contact .contact-info>a:hover {
        color: #11542B;
    }

    #contact .contact-info>a:hover svg path {
        fill: #11542B;
    }
}

.grecaptcha-badge {
	display: none;
}
