@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400&family=Mulish:wght@300;400&display=swap');

@font-face {
    font-family: Elbafarm-icons;
    src: url(fonts/elbafarm.woff);
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: Mulishhh;
    src: url('https://fonts.googleapis.com/css2?family=Mulish');
    font-display: swap;
    font-weight: 400;
}


@custom-media --motionOK (prefers-reduced-motion: no-preference);
@custom-media --dark (prefers-color-scheme: dark);

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

img,
a {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

button {
    touch-action: manipulation;
}

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

a {
    text-decoration: none;
    outline: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
}

input {
    -webkit-user-select: text;
}

li {
    list-style: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

[disabled] {
    pointer-events: none;
}

[visibility="false"] {
    visibility: hidden;
}

.icon {
    font-family: Elbafarm-icons;
    color: #000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    position: relative;
}

.icon>a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
}



.icon.cart::before {
    content: "\e902";
}

.icon.search::before {
    content: "\e901";
}

.icon.user::before {
    content: "\e903";
}

.icon.location::before {
    content: "\e906";
    pointer-events: none;
}

.icon.hamburger::before {
    content: "\e908";
}

.icon.hamburger {
    display: none;
}

#menu-btn:checked.icon.hamburger::before {
    content: "\e907";
}


.icon.plus {
    pointer-events: none;
}

.icon.plus::before {
    content: "\e904";
    transition: transform .35s ease, -webkit-transform .35s ease;
}

.icon.close::before {
    content: "\e907";
}

.icon.pause::before {
    content: "\e90d";
}

.icon.play::before {
    content: "\e90a";
}

.icon.arrow::before {
    content: "\e900";
}

.icon.ok::before {
    content: "\e909";
    color: #008000;
    margin-right: 10px;
    font-size: 20px;
}

.icon.ok {
    pointer-events: none;
}

.icon.wc-image::before {
    content: "\e90a";
    pointer-events: none;
    line-height: 0;
}


::selection {
    background-color: #ffc20e;
    color: #711471;
}

.supplements {
    --page-color: var(--reddish-orange);
}

.beauty-health {
    --page-color: var(--magenta);
}

.foods {
    --page-color: var(--green);
}

.health {
    --page-color: var(--pinkish-red);
}




html {
    background-color: #fff;
    box-sizing: border-box;
}

.html-color {
    background-color: var(--bluish-purple-dark);
}

body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-y: overlay;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeSpeed;
    color: #3d3935;
    font-family: 'Mulish', sans-serif;
    overscroll-behavior: none;
    box-sizing: border-box;
}



.header {
    width: 100%;
    background-color: #f6f6f6;
    position: relative;
    display: flex;
    flex-direction: column;
}

.header__top {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}



.header__top .searchform {
    position: absolute;
    padding: 0 17px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: none;
}

.header__top .searchform>div {
    width: 100%;
    height: 100%;
    display: flex;
}

.header__top .searchform input[type=text] {
    flex-basis: 95%;
}

.header__top .searchform input[type=submit] {
    flex-basis: 5%;
}

.header__top .searchform input {
    width: 100%;
    height: 100%;
}

.header_logo_nav {
    display: flex;
}

.header__logo {
    padding: 27px 27px;
    display: flex;
}


.header__logo>img {
    width: 148px;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.header__logo.current {
    background-color: #fff;
}

.header__utility {
    width: 100%;
    height: 100px;
    display: none;
    align-items: center;
    justify-content: space-evenly;
}


.header_logo_nav>.header__utility {
    display: none;
}

.header__utility .header__utility__text {
    text-align: center;
    background-color: transparent;
    z-index: 0;
    font-size: 11px;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Mulish';
    margin-top: 10px;
}

.header__nav {
    width: 100%;
    display: none;
}

.header__nav>ul {
    display: flex;
    width: 100%;
    padding: 0;
    flex-direction: column;
}

.header__nav>ul>.menu-item {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 50px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-left: 7px solid transparent;
    border-bottom: 1px solid #d4d1d1;
}

.header__nav>ul>.menu-item:last-child {
    border-bottom: 0;
}

.header__nav>ul>.menu-item:focus,
.header__nav>ul>.current-menu-item,
.header__nav>ul>.current-product-ancestor,
.header__nav>ul>.current-product_cat-ancestor {
    background-color: #fff;
    margin-left: 0;
    border-left-color: var(--page-color);
}


.header__nav>ul>.menu-item>a {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: left;
    background-color: transparent;
    transform: translateY(-50%);
    z-index: 0;
    padding: 0 10px;
    cursor: pointer;
    font-size: 16px;
    line-height: 12px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    outline: none;
}

.header__nav>ul>.menu-item>a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: -1;
    transform: translateY(-50%);
}


.overview__masthead {
    display: flex;
    max-height: 500px;
    overflow: hidden;
}


.masthead__content {
    padding: 36px;
    width: 100%;
    height: 100%;
    flex: 0 0 50%;
    font-size: 1.25vw;
}



.overview__masthead .masthead__content>h1,
.overview__categories.page h1 {
    font-family: 'Merriweather', serif;
    font-size: 4em;
    font-weight: 300;
    margin: .18em 0;
    line-height: 1.25;
    color: var(--page-color);
}

.overview__categories.page ul {
    margin: revert;
    padding: revert;
}

.overview__categories.page ul li {
    list-style: unset;
}

.overview__categories.page ul li a {
    text-decoration: revert; 
}

.overview__masthead .masthead__content>h3 {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.4em;
    margin: 0;
    color: #333;
}

.overview__masthead .masthead__content>p {
    font-size: 16px;
    font-weight: 400;
    color: #3d3935;
    margin-top: 5px;
    line-height: 1.8;
}

.overview__masthead .masthead__content>p:last-child {
    margin-bottom: 0;
}

.header__subnav {
    width: 100%;
    height: 50px;
    background-color: var(--page-color);
    display: none;
}


.header__subnav_items {
    width: 100%;
    max-width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}


.header__subnav_items>.item {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    margin: 0 0 0 .5em;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.norlt {
    position: unset !important;
}

.header__subnav_items>.item.active#dropdown::after,
.secondary-menu>.item.active#dropdown::after {
    border-top-color: var(--page-color);
    border-bottom-color: var(--page-color);
    border-top: 5px solid;
    border-bottom: unset;
}


#dropdown::after {
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-top-color: inherit;
    border-bottom-color: inherit;
    margin-right: 1ex;
}


.header__subnav_items>.item>.link {
    color: inherit;
    text-decoration: none;
    outline: 0;
    border: none;
    font-size: inherit;
    font-weight: inherit;
    padding: 15px 1ex;
    overflow: hidden;
}

.header__subnav_items .item .link {
    background-color: transparent;
    font-family: 'Mulish';
}

.header__subnav_items .submenu,
.secondary-menu .submenu {
    --border-w: 1px;
    display: none;
    position: absolute;
    top: 100%;
    left: -35px;
    width: auto;
    margin: 0;
    z-index: 26;
    padding: 0 35px 35px;
    background-color: #fff;
    border-bottom: var(--border-w) solid #bbb;
    border-left: var(--border-w) solid #bbb;
    border-right: var(--border-w) solid #bbb;
}

.header__subnav_items .active .submenu,
.secondary-menu .active .submenu {
    display: block !important;
}


.header__subnav_items .active .submenu.fullwidth,
.secondary-menu .active .submenu.fullwidth {
    display: grid !important;
    grid-template-columns: auto auto auto;
    column-gap: 35px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 35px;
}


.header__subnav_items>.item:last-child>.submenu {
    right: -35px;
    left: unset;
}

.header__subnav_items>.item .submenu .link,
.secondary-menu>.item .submenu .link {
    padding-top: 16px;
    text-align: left;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, .25);
    width: 100%;
    padding-bottom: .6rem;
    display: block;
    box-sizing: border-box;
    border-left: .4rem solid transparent;
    padding-left: .4rem;
    font-size: 16px;
    font-family: 'Mulish';
    color: #000;
    font-weight: 400;
}

.header__subnav_items>.item .submenu .current-cat,
.secondary-menu>.item .submenu .current-cat {
    border-left-color: var(--page-color) !important;
    color: var(--page-color) !important;
}


.overview__categories,
.wholesale-contanier {
    max-width: var(--maxPageWidth);
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

.overview__categories.page p {
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 1rem;
}


.overview__categories.prod {
    max-width: 100%;
}

.overview__categories__filters {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.overview__categories__filters h1 {
    line-height: 1.2;
    font-family: "Merriweather", serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--page-color);
    margin: 50px auto 30px;
}


.filters-navigation {
    width: 100%;
    display: none;
    --border: 1px solid #d4d1d1;
    border-top: var(--border);
    border-bottom: var(--border);
    position: relative;
}

.secondary-menu {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}


.secondary-menu>.item {
    font-family: 'Mulish';
    font-size: 16px;
    font-weight: 500;
    color: #212529;
    text-decoration: none;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.secondary-menu>.item>.link::before {
    content: '';
    position: absolute;
    width: calc(100% - 12px * 2);
    margin: 0 auto;
    height: 4px;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: var(--page-color);
    opacity: 0;
}


.secondary-menu>.item>.link:hover::before,
.secondary-menu>.item>.link.current-tab::before {
    opacity: 1;
}

.secondary-menu>.item>.link.current-tab {
    color: var(--page-color) !important;
}

.secondary-menu>.item>.link {
    color: inherit;
    text-decoration: none;
    outline: 0;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    padding: 16px 12px;
    overflow: hidden;
    background: transparent;
    position: relative;
}

.overview-top-field-name {
    text-align: center;
    max-width: 90%;
    margin: 70px auto 40px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 24px;
    line-height: 28px;
    color: #000;
    font-weight: 400;
}


.view_content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 70px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.prod>.view_content {
    max-width: 90%;
}

.view_content>.simple_term {
    width: 100%;
    flex-basis: 100%;
    padding-bottom: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    --padding: 5%;
}

.view_content>.simple_term::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--padding);
    width: calc(100% - var(--padding));
    height: calc(100% - var(--padding));
    background: linear-gradient(transparent 25%, rgba(0, 0, 0, .3));
    z-index: 2;
    pointer-events: none;
    margin: auto;
}


.view_content>.simple_term>.simple_term--name {
    position: absolute;
    bottom: 30px;
    text-align: center;
    font-size: 20px;
    text-transform: none;
    font-weight: 400;
    color: #fff;
    margin: 0 10px;
    font-weight: 600;
    z-index: 23;
}



.view_content>.simple_term>.simple_term--name::after {
    content: '';
    width: 100%;
    height: 5px;
    background-color: white;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    opacity: 0;
}

.view_content>.simple_term>img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: calc(var(--padding) / 2);
}

.view_content>.post {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    padding: 0 13px;
    align-items: center;
    position: relative;
}

.view_content>.post:not(.view_content>.post:first-child) {
    margin-top: 40px;
}

.view_content>.post>.left,
.view_content>.post>.right {
    display: flex;
}




.view_content>.post>.right>.post_content h1,
.view_content>.post>.right>.post_content h2,
.view_content>.post>.right>.post_content h3,
.view_content>.post>.right>.post_content h4,
.view_content>.post>.right>.post_content h5,
.view_content>.post>.right>.post_content h6 {
    margin-block: 5px;
    font-family: 'Merriweather';
}

.view_content>.post>.right>.post_content>a {
    display: block;
    width: max-content;
    margin-block: 15px;
}

.view_content>.post>.left>img {
    object-fit: cover;
}


.view_content>.post.one-col {
    grid-template-columns: repeat(1, 1fr);
    min-height: 450px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.view_content>.post>.block {
    z-index: 1;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.view_content>.post>.block>.post_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view_content>.post>.block>.post_content h1,
.view_content>.post>.block>.post_content h2,
.view_content>.post>.block>.post_content h3,
.view_content>.post>.block>.post_content h4 {
    color: #fff;
    font-size: 40px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5em;
}

.view_content>.post>.block>.post_content p {
    color: #fff;
    font-size: 18px;
    font-family: "Nunito Sans", sans-serif;
    margin: 0 0 0.8em;
}

.view_content>.post>.background {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: inherit;
}

.view_content>.post>.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    opacity: .43;
    pointer-events: none;
}

.view_content>.post>.background.force::before {
    background: transparent !important;
}


.view_content>.post>.background>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.views-row {
    display: flex;
    flex-basis: calc(100% - 10px);
    margin: 5px;
    background-color: #f4f5f5;
}

.product_teaser--wrap {
    text-decoration: none;
    position: relative;
    width: 100%;
    display: block;
    padding: 20px 0;
    overflow: hidden;
}

.product_teaser {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 100%;
    display: flex;
    flex-direction: column;
}


.product_teaser--figure {
    display: block;
    position: relative;
    height: unset;
    max-height: unset;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 0 100%;
}


.product_teaser--image {
    max-width: 80%;
    max-height: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    filter: saturate(1.1);
}

.product_teaser--title {
    font-size: 17px;
    color: #000;
    text-decoration: none;
    text-align: center;
    margin: 17px auto 0;
    max-width: 90%;
    font-weight: 500;
}


.product_teaser-price {
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: 'Mulish', sans-serif;
    font-size: 19px;
    padding: 0 10px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
}

.product_teaser-short-description {
    padding-inline: 20px;
    text-align: center;
    color: #777;
}

.taxonomy_term__main {
    max-width: 90%;
    display: flex;
    flex-direction: row;
    margin: 25px auto 0;
}

.woocommerce-breadcrumb {
    font-size: 17px;
    font-family: 'Mulish';
    color: #711471;
}

.woocommerce-breadcrumb a {
    text-decoration: underline;
    color: #711471;
}



.taxonomy_term__main h1 {
    margin-top: 16px;
    margin-bottom: 26px;
    font-size: 38px;
    line-height: 50px;
    text-transform: none;
    font-family: 'Merriweather', sans-serif;
    font-weight: 300;
}

.taxonomy_term__main p {

    line-height: 1.5;
    font-weight: 400;
    color: #3d3935;
    padding-bottom: 50px;
}


.taxonomy_category__main_left {
    width: 100%;
    /*flex-basis: 66.6%; */
    padding-right: 10px;
}


.taxonomy_category__main_right {
    display: none;
    width: 100%;
    flex-basis: 33.3%;
    padding-left: 10px;
}


.footer {
    width: 100%;
    background-color: var(--bluish-purple-dark);
    color: #fff;
    padding: 45px 0;
}

.footer>.footer__top {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer>.footer__top h2 {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 10px;
}

.footer>.footer__top a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    border-bottom: 1px solid transparent;
}

.footer>.footer__top p {
    margin: 3px 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.footer>.footer__top p sub {
    line-height: 0.3;
}

.footer__top>li {
    position: relative;
    width: 100%;
}

.footer__top ul {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 3vw;
    row-gap: 25px;
}

.footer__top>li.widget_mc4wp_form_widget {
    padding: 30px 0 35px;
    max-width: 100%;
    margin: 35px 0;
}

.footer__top>li.widget_mc4wp_form_widget::before,
.footer__top>li.widget_mc4wp_form_widget::after {
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    pointer-events: none;
}

.footer__top>li.widget_mc4wp_form_widget::before {
    border-top: 1px solid #fff;
    left: 0;
    width: 100%;
    top: 0;
}

.footer__top>li.widget_mc4wp_form_widget::after {
    border-bottom: 1px solid #fff;
    right: 0;
    bottom: 0;
    width: 100%;
}

.footer__top .mc4wp-form input[type="email"] {
    padding: 16px;
    font-size: 15px;
    font-family: 'Mulish';
    color: #666;
    display: block;
    width: 100%;
    border-radius: 0;
    border: 0;
    outline: none;
    margin: 20px 0;
}

.footer__top .mc4wp-form .sign-up {
    font-weight: 700;
    background-color: #ffc20e;
    outline: none;
    padding: 15px 37px;
    border: none;
    overflow-wrap: break-word;
    font-size: 15px;
    color: #900;
}

.footer__top .mc4wp-form .mc4wp-error * {
    color: #ff7272 !important;
}

.content-area {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 25px;
    position: relative;
}

.product {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.onsale {
    display: none;
    background-color: #bd0000;
    color: #fff;
    margin-bottom: 8px;
    padding: 0 12px;
    font-weight: 600;
    font-size: .875rem;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.8;
    width: max-content;
    user-select: none;
}

.summary>.onsale,
.product_teaser--wrap>.onsale {
    display: block;
}

.product_teaser--wrap>.onsale {
    position: absolute;
    top: 0;
    left: 0;
}

.woocommerce-product-gallery {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin-bottom: 25px;
}

.woocommerce-product-gallery--with-images {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid #dcddde;
    background-color: #fff;
}


.thumbnails-contanier {
    display: flex;
    height: 100%;
    overflow: auto;
    padding: 0;
    position: relative;
}

.thumbnails-contanier .item {
    position: relative;
    flex: 0 0 75px;
    width: 75px;
    margin: 20px 25px 0 0;
    border: 2px solid #dcddde;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.thumbnails-contanier .item.thumbItemActive {
    pointer-events: none;
    cursor: default;
    border-color: #999;
}

.thumbnails-contanier .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.summary,
.woocommerce-tabs,
.accordion-tab {
    width: 100%;
    margin-bottom: 25px;
}

.related {
    width: 100%;
    flex-basis: 100%;
}

.outofstock>.summary>.price {
    margin-block-start: 0;
}

.out-of-stock {
    margin-bottom: 25px;
    text-transform: uppercase;
}

.summary>.price {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    margin-block-start: 10px;
    flex-direction: column-reverse;
}

.summary>.price>del {
    font-size: 16px;
    text-decoration: none;
    margin-block-start: 9px;
    font-weight: 500;
}

del::before {
    content: 'Reg. ';
}

.price>ins,
.product_teaser-price>ins {
    color: #bd0000;
    text-decoration: none;
}

.table-view-list>tbody>tr>td>del,
.product_teaser-price>del {
    display: none;
}

.product_teaser-price>ins {
    color: currentColor;
}

.table-view-list>tbody>tr>td>ins {
    color: #50575e;
}

.summary>.cart {
    display: flex;
    align-items: flex-end;
    margin-bottom: 25px;
}


.content-area>.site-main>.shop-title h1 {
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 38px;
    line-height: 50px;
    font-family: 'Merriweather', sans-serif;
    font-weight: 300;
}

.content-area>.site-main>.shop-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
}

.woocommerce-product-gallery__image--placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
}

.woocommerce-product-gallery__wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
}

.woocommerce-product-gallery__wrapper [data-thumb] {
    display: none;
}

.woocommerce-product-gallery__wrapper [data-thumb]:first-child {
    display: block;
}

.wp-post-image {
    height: 100%;
    object-fit: scale-down;
    width: 100%;
}

.qty[type=number]::-webkit-inner-spin-button,
.qty[type=number]::-webkit-outer-spin-button {
    opacity: 1;
}

.qty[type=number]::-webkit-inner-spin-button {
    height: 52px;
}


.qty {
    width: 80px;
    padding: 14px 0 14px 15px;
    border: 1px solid #c5c5c5;
    background-color: #fff;
    outline: none;
    position: relative;
    font-weight: 600;
    font-family: 'Mulish';
    font-size: 19px;
    border-radius: 8px;
    color: #3d3935;
}

.quantity {
    display: flex;
    flex-direction: column;
}

.quantity label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 6px;
    letter-spacing: .5px;
}

.button {
    font-weight: 700;
    background-color: #ffc20e;
    outline: none;
    padding: 15px 37px;
    border: none;
    overflow-wrap: break-word;
    font-size: 14px;
    color: #900;
    min-height: 53px;
    text-transform: uppercase;
    line-height: 0;
}


.single_add_to_cart_button {
    margin-left: 15px;
}


.wc-tabs {
    display: none;
}


.woocommerce-tabs h2,
.related>h2 {
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 10px;
}


.related>h2 {
    font-weight: 500;
}


.js-cart-item-count {
    position: absolute;
    font-size: .70rem;
    font-family: 'Mulish';
    font-weight: 600;
    height: 1.375rem;
    width: 1.375rem;
    background-color: var(--page-color);
    color: #FFF;
    border-radius: 50%;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -10px;
    left: 50%;
    pointer-events: none;
}

.addtoany_shortcode {
    height: 24px;
    width: 24px;
}

.wc-share {
    display: flex;
    align-items: center;
    margin-right: 3px;
}

.wc-share>p {
    text-transform: uppercase;
    font-size: 17px;
    margin-right: 15px;
}

.addtoany_list {
    display: flex;
}

.a2a_overlay {
    backdrop-filter: none !important;
}


.accordion {
    width: 100%;
    margin-bottom: 25px;
    cursor: pointer;
}

.accordion:last-child {
    margin-bottom: 0;
}

.accordion .accordion--header {
    background-color: #f3f3f3;
    display: flex;
    align-items: center;
    height: 100%;
    transition: background-color .35s ease-out;
}


.accordion[data-enabled="true"] .accordion--header {
    background-color: var(--page-color);
}

.accordion[data-enabled="true"] .accordion--header .accordion--title_wrap {
    color: #fff;
}

.accordion[data-enabled="true"] .accordion--header .icon.plus::before {
    transform: rotate(45deg);
}

.accordion .accordion--header.famacy-list-header {
    background-color: #0f5c61;
}


.accordion .accordion--header .accordion--symbol {
    width: 67px;
    height: 67px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #fff;
    background-color: var(--page-color);
}


.accordion .accordion--header .accordion--title_wrap {
    margin-left: 20px;
    margin-right: 20px;
    min-height: 67px;
    display: flex;
    align-items: center;
}

.accordion .accordion--header .accordion--title_wrap .accordion--title {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    user-select: none;
}

.accordion .accordion--content {
    width: 100%;
    background-color: #f3f3f3;
    display: none;
    cursor: auto;
}

.accordion[data-enabled="true"] .accordion--content {
    display: block;
}




.accordion .accordion--content .accordion--content_wrap ol {
    display: grid;
    gap: 10px;
    padding-inline-start: 15px;
}

.accordion .accordion--content .accordion--content_wrap li {
    list-style: auto;
}

.accordion .accordion--content .accordion--content_wrap,
.accordion .accordion--content .accordion--content_wrap_table {
    padding: 15px 15px;
    width: 100%;
}

.accordion .accordion--content .accordion--content_wrap p {
    margin-top: 5px;
    margin-bottom: 16px;
    line-height: 25px;
}

.accordion .accordion--content .accordion--content_wrap p:last-child {
    margin-bottom: 0;
}

.accordion .accordion--content .accordion--content_wrap_table {
    display: flex;
    justify-content: center;
}

.woocommerce-Tabs-panel--description p {
    text-align: unset !important;
}




.table {
    width: 100%;
    border-collapse: collapse;
}

.table td,
.table th {
    padding: 5px;
    text-align: left;
    font-size: 16px;
    border: 1px solid #ccc;
}

.table th {
    padding: 5px 0 5px 5px;
    border: 0;
}

thead tr {
    border-bottom: 1px solid #ccc;
}

.table tbody tr {
    border-bottom: 1px solid #ccc;
}

.table tbody tr:last-child {
    border-bottom: 0;
}

.table tbody tr {
    background-color: #fff;
}


.store-locator {
    padding: 25px 0 0;
    background: #f3f3f3;
    width: 100%;
    height: 100%;
    max-height: 443px;
    position: relative;
    font-size: 14.5px;
}

.store-locator .heading {
    padding: 0 25px;
    margin-bottom: 10px;
}

.store-locator .heading h2 {
    font-weight: 700;
    font-family: "Merriweather", serif;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 35px;
}

.store-locator-input-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}


.store-locator .store-locator-street {
    width: 100%;
    appearance: none;
    border-radius: 0;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #3d3935;
    font-size: 18px;
    line-height: 18px;
    outline: none;
    resize: none;
}

.store-locator-submit.button {
    background: #0f5c61;
    color: #fff;
    padding: 15px;
}



.store-locator .body {
    width: 100%;
    height: 100%;
    min-height: 306px;
    max-height: 306px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
}

.store-locator .body .store {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    border-left: .4rem solid transparent;
}

.store-locator .body .store.active {
    border-left-color: var(--page-color) !important;
}

.store-locator .body .store#dropdown::after {
    content: unset;
}

.store-locator .body .store:nth-child(odd) {
    background-color: #fff;
}


.store-locator .body .store--title {
    width: 100%;
    text-align: left;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
    /* font-weight: 600; */
}

.store-locator .body .store.active .store--title {
    border-bottom: 1px solid #ccc;
}

.store-locator .body .store--title::after {
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-top-color: currentColor;
    border-bottom-color: currentColor;
}


.store-locator .body .store--sub_info {
    width: 100%;
    display: none;
}

.store-locator .body .store.active .store--sub_info {
    display: block;
}

.store-locator .body .store.active .store--title::after {
    border-top: 5px solid;
    border-bottom: unset;
}

.store-locator .body .sub_info--street,
.store-locator .body .sub_info--tel {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.store-locator .body .st-key,
.store-locator .body .st-val,
.store-locator .body .store--title {
    padding: 20px 10px;
}

.store-locator .body .st-key {
    text-align: left;
}

.store-locator .body .st-val {
    text-align: right;
}


.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 25px;
    position: relative;
}

.woocommerce-account .woocommerce {
    margin-bottom: 80px;
}

.search-contanier {
    max-width: 100% !important;
    width: 100%;
    padding: 1rem;
    margin: 0 auto !important;
    background-color: #fff;
}


.woocommerce-cart .woocommerce h1,
.woocommerce-checkout .woocommerce h1 {
    font-size: 38px;
    line-height: 50px;
    margin-top: 42px;
    margin-bottom: 27px;
    text-transform: none;
    font-family: "Merriweather", serif;
    font-weight: 300;
}


.woocommerce-cart .woocommerce-cart-form,
.checkout.woocommerce-checkout {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}


.woocommerce-cart-form__contents,
.col2-set {
    width: 100%;
    border: 1px solid #c5c5c5;
    padding: 0 20px;
    margin-bottom: 20px;
    background: #f6f6f6;
}

.woocommerce-cart-form__contents .section-header {
    margin: 20px 0 0;
    padding: 0;
    font-weight: 700;
    font-family: "Merriweather", serif;
    font-size: 24px;
    line-height: 30px;
}

.woocommerce-cart .cart-collaterals,
.order_review-right {
    width: 100%;
    height: 100%;
}


.woocommerce-cart .woocommerce-cart-form .cart_item {
    display: flex;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #c5c5c5;
}

.woocommerce-cart .woocommerce-cart-form .cart_item:last-child {
    border-bottom: transparent;
}

.woocommerce-cart .woocommerce-cart-form .product-thumbnail {
    width: 20%;
    margin-right: 20px;
    padding-top: 3px;
}

.woocommerce-cart .woocommerce-cart-form .product-thumbnail a {
    display: flex;
    justify-content: center;
}

.woocommerce-cart .woocommerce-cart-form .product-thumbnail a img {
    max-height: 165px;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.woocommerce-cart .woocommerce-cart-form .product-info-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.woocommerce-cart .woocommerce-cart-form .product-info-group--top {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.woocommerce-cart .woocommerce-cart-form .product-name {
    width: 100%;
    margin: 0 0 15px;
    font-size: 20px;
    font-family: "Merriweather", serif;
    font-weight: 800;
    text-decoration: underline;
    line-height: 0.8;
}

.woocommerce-cart .woocommerce-cart-form .product-name a {
    color: var(--bluish-purple);
    line-height: 1.2;
}

.woocommerce-cart .woocommerce-cart-form .product-price,
.woocommerce-cart .woocommerce-cart-form .product-subtotal {
    font-size: 18px;
    font-weight: 600;
}

.woocommerce-cart .woocommerce-cart-form .product-remove,
.woocommerce-cart .woocommerce-cart-form .product-update,
.woocommerce-checkout-review-order .edit-cart {
    font-family: 'Mulish';
    border: none;
    color: var(--bluish-purple-dark);
    font-weight: 400;
    background: 0 0;
    text-decoration: underline;
    font-size: 16px;
    margin-left: auto;
}

.woocommerce-checkout-review-order .edit-cart {
    margin-left: 0;
}

.woocommerce-cart .woocommerce-cart-form .product-update {
    margin-left: 18px;
    display: contents;
}

.woocommerce-cart .woocommerce-cart-form .product-remove a {
    color: var(--bluish-purple-dark);
}

.woocommerce-cart .woocommerce-cart-form .product-quantity {
    margin-right: 18px;
}

.woocommerce-cart .woocommerce-cart-form .product-info-group--bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.woocommerce-cart .woocommerce-cart-form .quantity label {
    display: none;
}


a.remove {
    margin-left: 10px;
}

.wc-proceed-to-checkout {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.wc-proceed-to-checkout a {
    width: 100%;
}

.wc-proceed-to-checkout>a>button {
    pointer-events: none;
}

.wc-proceed-to-checkout .button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-sidebar-section {
    border: 1px solid #c5c5c5;
    padding: 25px 25px 30px;
    margin: 0 0 24px;
}


.order-total {
    font-size: 24px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 20px;
}

.coupon {
    display: flex;
    flex-direction: column;

}

.coupon label {
    width: 100%;
    background-color: transparent;
    text-transform: none;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 25px;
}

.coupon_input {
    display: flex;
    width: 100%;
}

.woocommerce input[type=text]:not(.qty),
.woocommerce .input-text:not(.qty) {
    width: 100%;
    padding: 16px;
    border: 1px solid #ccc;
    color: #3d3935;
    font-size: 18px;
    border-radius: 0;
    outline: none;
    font-family: 'Mulish';
}

.coupon_input input {
    border-right: 0;
    width: 100%;
}

.coupon_input .button {
    background: var(--bluish-purple-dark);
    color: #fff;
}


.col2-set {
    padding: 25px 25px 30px;
}

.order_review-right {
    position: relative !important;
    top: unset !important;
}

.woocommerce-checkout-review-order {
    width: 100%;
    border: 1px solid #c5c5c5;
    padding: 25px 25px 30px;
    margin: 0 0 24px;
}

.woocommerce-billing-fields__field-wrapper .form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 460px;
    margin-bottom: 20px;
    margin-right: 20px;
}


.woocommerce-billing-fields__field-wrapper .form-row label {
    font-size: 14px;
    text-transform: uppercase;
    padding-bottom: 4px;
    letter-spacing: .5px;
    display: block;
    font-weight: 700;
    line-height: 25px;
}


.woocommerce-input-wrapper input {
    width: 100%;
}


.woocommerce-billing-fields h3,
#order_review_heading {
    font-size: 24px;
    line-height: 30px;
    position: relative;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
}

.woocommerce form .form-row .required {
    color: red;
    border: none;
    text-decoration: none;
}

.product-name {
    font-family: "Merriweather", serif;
    font-weight: 600;
    font-size: 18px;
    width: 100%;
    margin-bottom: 10px;
    line-height: 25px;
}

.cart_item--bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    line-height: 25px;
}

.cart_item {
    width: 100%;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid #c5c5c5;
}

.woocommerce-privacy-policy-text {
    margin: 26px 0;
}

.woocommerce-privacy-policy-text:last-child {
    margin-bottom: 0;
}

.checkout-product-total .coupon {
    margin-bottom: 26px
}

.woocommerce-privacy-policy-link {
    text-decoration: underline;
}


.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 6px;
}

.woocommerce-error {
    border: 1px solid #890014;
    padding: 10px 10px 10px 40px;
    background-color: #fef5f1;
}

.woocommerce-error>li {
    margin-bottom: 18px;
    list-style: unset;
    color: #8c2e0b;
}

.woocommerce-error>li:last-child {
    margin: 0;
}


.search-form {
    position: absolute !important;
    z-index: 10;
    display: flex;
    width: 100% !important;
    display: none;
    top: 0;
    margin: 0 !important;
}

.sOpen .search-form {
    display: flex !important;
}

.search-form>input {
    font-size: 15px !important;
    height: 60px;
}

.search-form #close-search-btn {
    position: absolute;
    right: -20px;
    font-size: 15px;
    top: 50%;
    transform: translate(50%, -50%);
}


p.woocommerce-result-count {
    padding-bottom: 20px;
}


.woocommerce-invalid-required-field input {
    border: 2px solid red !important;
}

.woocommerce-MyAccount-navigation ul {
    display: flex;
    justify-content: space-between;
}

.pad-hero {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pad-hero .m-hero {
    width: 100%;
    display: block;
    position: relative;
}

.m-hero li {
    width: 100vw;
    display: flex;
    position: relative;
    flex-direction: column-reverse;
}

.m-hero>li[data-active="true"] {
    display: flex;
}

.m-hero>li[data-active="false"] {
    display: none;
}

.text-navigation {
    width: 100%;
    flex-basis: 100%;
    background-color: var(--magenta);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    position: relative;
}

.text-navigation .info {
    display: block;
    width: 100%;
    max-height: 100%;
    padding: 32px 12% 90px 5%;
}


.text-navigation .info p {
    color: #fff;
    font-size: 17px;
    border-bottom: 1px solid;
    width: fit-content;
    padding-bottom: 4px;
}

.text-navigation .info h2 {
    margin-top: 8px;
    margin-bottom: 27px;
    font-size: 40px;
    line-height: 50px;
    text-transform: none;
    font-family: 'Merriweather', sans-serif;
    font-weight: 300;
    color: #fff;
}

.featured-hero {
    width: 100%;
    flex-basis: 100%;
}

.featured-hero img,
.featured-hero video {
    width: 100%;
    display: block;
    aspect-ratio: 1.7 / 1;
    user-select: none;
}

.featured-video {
    height: 100%;
    object-fit: cover;
    pointer-events: none
}

.pager {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    padding-inline: 5%;
    margin-top: 27px;
    margin-bottom: 8px;
    position: absolute;
    bottom: 0;
}


.pager button {
    position: relative;
    border: 0;
    outline: 0;
    width: 20px;
    height: 10px;
    margin-right: 10px;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
}

.pager button:last-child {
    margin-right: 0;
}

.pager button:not(.icon)::after,
.pager button:not(.icon)::before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    border: 1px solid transparent;
}


.pager button:not(.icon)::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-color: rgba(255, 255, 255, .8);
}


.pager button[data-active="true"] {
    background-color: rgb(255 255 255 / 100%);
}

.pager>.list {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

button.icon.pause:hover {
    opacity: 1;
    background-color: #fff;
    color: #000;
}

button.icon.pause {
    padding: 20px;
}

button.icon.pause[data-toggle="true"]::before {
    content: '\e90c';
}


.pager>button>span {
    display: none;
}

button.icon.pause[data-toggle="true"] span::before {
    content: 'Play Slides';
}

button.icon.pause[data-toggle="false"] span::before {
    content: 'Pause Slides';
}


.pager>button:hover>span {
    position: absolute;
    white-space: nowrap;
    left: 50px;
    pointer-events: none;
    display: flex;
    padding: 10px;
    top: 0;
    font-family: 'Mulish';
    color: #fff;
    border: 1px solid #ffff;
}


.pad-hero .controls {

    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    display: none;
}


.pad-hero .controls>button {
    padding: 0px;
    top: 0;
    color: #fff;
    border: 0;
    appearance: none;
    background-color: transparent;
    border-radius: 50%;
    will-change: transform;
    font-size: 28px;
}

.pad-hero .controls>button:nth-child(1) {}

.pad-hero .controls>button:nth-child(2) {
    transform: rotate(180deg);
}



.dialog-contanier {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0 0 0 / 20%);
}

.dialog-contanier>.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}



.dialog {
    display: block;
    background: #fff;
    border: 1px solid #c5c5c5;
    width: 100%;
    max-width: 875px;
    z-index: 1000;
}

.dialog-titlebar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 22px 1em 0;
}


.ui-dialog-title {
    font-size: 26px;
    font-family: 'Mulish';
    font-weight: 600;
    line-height: 1;
}


.ui-dialog-title::before {
    content: '';
    border-left: .4rem solid var(--page-color);
    margin-right: 10px;
}

.dialog-content {
    display: flex;
    padding: 0.5em 1em;
}

.dialog>.dialog-content>.left img {
    max-height: 30vh;
    width: auto;
}

.dialog>.dialog-content>.right {
    max-width: 575px;
    width: 100%;
    margin-left: 62px;
}


.ui-product>.title {
    margin-bottom: 25px;
    font-size: 32px;
    line-height: 0.8;
}



.product-info {
    font-size: 18px;
    line-height: 1;
    color: #3d3935;
    font-weight: 300;

    margin-bottom: 16px;
    border-bottom: 1px solid #d5d0d0;
}

.product-info>p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.product-info>p:last-child {
    margin-bottom: 15px;
}


.ui-product>.order,
.ui-product>.buttons {
    margin-bottom: 20px;
}


.label {
    display: inline;
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: bold;
}

.order .total {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    margin-top: 24px;
    margin-bottom: 16px;
}



/* Farmacia */



.wholesale-contanier {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 100%;
    width: 100%;
    padding: 1rem;
}


table.fixed {
    table-layout: fixed;
}

table.widefat {
    background: #fff;
}

table.widefat {
    border: 1px solid #ccc;
    box-shadow: 0 1px 1px rgb(0 0 0 / 4%);
}

.widefat {
    border-spacing: 0;
    width: 100%;
    clear: both;
    margin: 0;
}

.widefat * {
    word-wrap: break-word;
}

.widefat thead td.check-column {
    padding-top: 4px;
    vertical-align: middle;
}

.widefat .check-column {
    width: 1.2em;
    padding: 6px 0 25px;
    vertical-align: top;
}


.widefat thead td.check-column {
    padding: 11px 0 0 3px;
}

.widefat thead td {
    font-weight: 400;
}

thead td {
    line-height: 1.4em;
}

.widefat thead td {
    text-align: left;
    line-height: 1.3em;
    font-size: 14px;
}

.widefat thead td,
.widefat thead th {
    border-bottom: 1px solid #ccc;
}

.widefat td {
    color: #50575e;
}

.widefat td {
    font-size: 14px;
    line-height: 1.5em;
}

table.wp-list-table .column-thumb {
    width: 30px;
    text-align: center;
    white-space: nowrap;
}

table.wp-list-table span.wc-image {
    position: relative;
    height: 1em;
    width: 1em;
    margin: 0 auto;
    pointer-events: none;
    font-size: 15px;
    color: #3d3935;
}

table.wp-list-table .column-name {
    width: 22%;
}

.widefat th.sortable,
.widefat th.sorted {
    padding: 0;
}

table.wp-list-table .column-sku {
    width: 10%;
}

table.wp-list-table .column-is_in_stock {
    text-align: left !important;
    width: 5ch;
}

table.wp-list-table .column-price {
    width: 5.5ch;
}

table.wp-list-table .column-quantity {
    width: 5ch;
}

table.wp-list-table .column-addtocart {
    width: 6ch;
    text-align: end;
}

.column-addtocart .added_to_cart {
    display: none;
}


th.sortable a,
th.sorted a {
    display: block;
    overflow: hidden;
    padding: 8px;
    color: #3d3935;
}

th.sortable a span,
th.sorted a span {
    float: left;
    cursor: pointer;
    pointer-events: none;
}

th.sorted .sorting-indicator {
    visibility: visible;
}

.alternate,
.striped>tbody>:nth-child(odd),
ul.striped>:nth-child(odd) {
    background-color: #f3f3f3;
}

#the-list tr:last-child td,
#the-list tr:last-child th {
    border-bottom: none !important;
    box-shadow: none;
}


.wp-list-table a {
    transition: none;
    color: var(--bluish-purple);
}

.wp-list-table a:hover {
    text-decoration: underline;
}

.widefat a,
.widefat button.button-link {
    text-decoration: none;
}

table.wp-list-table td.column-thumb img {
    margin: 0;
    width: auto;
    height: auto;
    max-width: 40px;
    max-height: 40px;
    vertical-align: middle;
    mix-blend-mode: multiply;
}

table.wp-list-table img {
    margin: 1px 2px;
}

.widefat tfoot td,
.widefat th,
.widefat thead td {
    text-align: left;
    line-height: 1.3em;
    font-size: 15px;
}

.updates-table tbody td.check-column,
.widefat tbody th.check-column,
.widefat tfoot td.check-column,
.widefat thead td.check-column {
    padding: 11px 0 0 3px;
}

.updates-table td input,
.widefat tfoot td input,
.widefat th input,
.widefat thead td input {
    margin: 0 0 0 8px;
    padding: 0;
    vertical-align: text-top;
}

.widefat td,
.widefat th {
    padding: 8px 10px;
}

mark.instock,
span.instock {
    color: #75b53d;
}

mark.outofstock,
span.outofstock {
    color: #8c2e0b;
}

mark.onbackorder,
span.onbackorder {
    color: #ca4f16;
}

mark.instock,
mark.onbackorder,
mark.outofstock,
span.instock,
span.onbackorder,
span.outofstock {
    font-weight: 700;
    background: transparent none;
    line-height: 1;
}


button.woocommerce-button.button.woocommerce-form-login__submit {
    margin: 15px;
}

.wp-list-table .qty {

    padding: 11px 0 11px 11px;
    font-size: 15px;
    width: 60px;
}

.wp-list-table .qty[type=number]::-webkit-inner-spin-button {
    height: 42px;
}

.wp-list-table input[type=checkbox] {
    width: 16px;
    height: 16px;
}

.tablenav {
    display: flex;
    justify-content: space-between;
    height: 30px;
    margin: 6px 0 4px;
    padding-top: 5px;
}


.tablenav>.actions {
    display: flex;
}

.tablenav>.actions a {
    margin-left: 4px;

}


.button-outline {
    padding-inline: 5px;
}


.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}


.product_meta {
    margin-bottom: 10px;
}

.sku_wrapper {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 6px;
    letter-spacing: .5px;
}


.woocommerce-Tabs-panel--description ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.woocommerce-Tabs-panel--description li {
    list-style: unset;
}

.woocommerce-Tabs-panel--description p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.woocommerce-Tabs-panel--description ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}


.entry-summary .b2bwhs_shop_table {
    display: none;
}

span#select2-billing_state-container {
    display: none;
}

.woocommerce-table__product-purchase-note {
    display: none;
}


/*responsive*/

@media (max-width: 500px) {

    .table td,
    .table th {
        border: 0;
    }

    .table thead {
        display: none;
    }

    .table tbody tr:first-child {
        padding-top: 0;
    }

    .table tbody tr:last-child {
        padding-bottom: 0;
    }

    .table tbody tr {
        background-color: unset;
        padding: 15px 0;
    }

    .table,
    .table tbody,
    .table tr,
    .table td {
        display: block;
        width: 100%;
    }


    .table td {
        padding-left: 50%;
        text-align: right;
        position: relative;
    }

    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-size: 15px;
        font-weight: bold;
        text-align: left;
    }
}

@media only screen and (min-width: 501px) {
    .views-row {
        flex-basis: calc(50% - 10px);
    }
}


@media only screen and (min-width: 651px) {
    .view_content>.simple_term {
        flex-basis: 50%;
        padding-bottom: 50%;
    }


    .accordion .accordion--header .accordion--title_wrap .accordion--title {
        font-size: 28px
    }


    .accordion .accordion--content .accordion--content_wrap,
    .accordion .accordion--content .accordion--content_wrap_table {
        padding: 15px 25px;
        width: 100%;
    }

}

@media only screen and (min-width: 751px) {

    .footer>.footer__top {
        flex-wrap: unset;
    }

    .footer__top>li {
        width: unset;
    }

    .footer__top>li.widget_mc4wp_form_widget {
        padding: 0 3vw;
        max-width: 50%;
        margin: 0 3vw;
    }

    .footer__top>li.widget_mc4wp_form_widget::before {
        width: unset;
        border-top: unset;
        border-left: 1px solid #fff;
        left: 0;
    }

    .footer__top>li.widget_mc4wp_form_widget::after {
        width: unset;
        bottom: unset;
        border-bottom: unset;
        border-right: 1px solid #fff;
        right: 0;
    }

    .footer>.footer__top h2 {
        line-height: 34px;
        margin-top: 0;
        margin-bottom: unset;
    }

    .views-row {
        flex-basis: calc(33.33% - 10px);
    }

}


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

    .header__logo {
        padding: 27px 5%;
        background-color: #fff;
    }

    .header__nav>ul>.menu-item {
        background-color: #fbfbfb;
        margin-left: 0;
        border-left-color: var(--page-color);
        color: #000;
    }

    .header__nav>ul>.current-menu-item,
    .header__nav>ul>.current-product-ancestor,
    .header__nav>ul>.current-product_cat-ancestor {
        background-color: var(--page-color);
        color: #fff;
    }

    .header__nav>ul>.menu-item>a {
        color: currentColor;
    }

    .header_logo_nav {
        width: 100%;
        position: relative;
        background-color: white;
        justify-content: space-between;
        align-items: center;
    }

    .header_logo_nav>.header__utility {
        display: flex;
        width: 50%;
        max-width: 180px;
        justify-content: space-between;
        padding-right: 5%;
    }

    .icon.hamburger {
        border: 0;
        width: 21px;
        height: 21px;
        appearance: none;
        -webkit-appearance: none;
        outline: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .opened>.header__nav {
        display: block;
    }
}


@media only screen and (min-width: 961px) {

    .m-hero li {
        flex-direction: row;
    }

    .text-navigation {
        flex-direction: row;
        width: 36%;
        flex-basis: 36%;
        padding-bottom: 10%;
    }

    .text-navigation .info {
        padding: 32px 80px 0;
    }


    .featured-hero {
        width: 64%;
        flex-basis: 64%;
    }

    .pager {
        position: absolute;
        bottom: 0;
        justify-content: center;
        padding-inline: 0;
        margin-top: 0;
        margin-bottom: 0;
        max-width: 36vw;
        flex-basis: 36vw;
    }

    .search-contanier {
        display: none;
    }

    .content-area>.site-main>.shop-title {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .content-area>.site-main>.shop-title h1 {
        margin-bottom: unset;
    }

    .product {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .woocommerce-product-gallery__wrapper {
        height: 530px;
    }


    .thumbnails-contanier {
        display: flex;
        flex: 0 0 100px;
        height: 100%;
        overflow: auto;
        padding: 0;
        flex-direction: column;
        position: relative;
    }

    .thumbnails-contanier .item {
        margin: 0 25px 20px 0;
    }

    .woocommerce-product-gallery {
        width: 48%;
        flex-basis: 48%;
        margin-right: 4%;
        margin-bottom: 90px;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    .summary,
    .woocommerce-tabs,
    .accordion-tab {
        width: 48%;
        flex-basis: 48%;
        margin-bottom: 90px;
    }

    .woocommerce-tabs {
        margin-right: 4%;
    }

    .related {
        margin-bottom: 90px;
    }

    .related .view_content {
        flex-wrap: unset;
        justify-content: space-between;
    }


    .related .views-row:first-child {
        margin-left: 0;
    }

    .related .views-row:last-child {
        margin-right: 0;
    }

    .header__nav {
        display: block;
    }

    .filters-navigation {
        display: block;
    }

    .header__subnav {
        display: block;
    }

    .header__logo {
        padding: 6px;
        padding-bottom: 20px;
    }

    .header__top {
        padding: 20px 50px 0;
    }

    .header__top {
        flex-direction: row;
        align-items: flex-start;
    }

    .header__nav>ul {
        flex-direction: row;
        max-width: 925px;
        margin: 0 0 0 10px;
    }

    .header__utility {
        display: flex;
        max-width: 200px;
        height: 80px;
        justify-content: space-between;
        margin-left: 50px;
        position: relative;
    }

    .header__nav>ul>.menu-item {
        border-left-width: 5px;
        max-width: 25%;
        height: 80px;
        border-bottom: 0;
    }

    .header__nav>ul>.menu-item>a {
        text-align: center;
        padding: 0 10px 0 5px;
        font-size: 11px;
        text-transform: uppercase;
    }

    .header__nav>ul>.menu-item>a::after {
        height: 160px;
    }

    .store-locator {
        padding: 25px 8px 25px 25px;
        max-height: 376px;
    }

    .store-locator .heading {
        padding: unset;
    }

    .store-locator .body {
        max-height: 218px;
        min-height: 218px;
    }

    .store-locator .store-locator-street {
        max-width: 50%;
        margin-right: 10px;
    }


    .woocommerce-cart-form__contents,
    .col2-set {
        width: 59%;
        flex-basis: 59%;
        margin-right: 4%;
    }

    .woocommerce-cart .woocommerce-cart-form,
    .checkout.woocommerce-checkout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .woocommerce-cart .cart-collaterals,
    .order_review-right {
        width: 37%;
        flex-basis: 37%;
        position: sticky;
        top: 24px;
    }

    .woocommerce-cart .woocommerce-cart-form .product-thumbnail {
        width: 8vw;
        margin-right: 30px;
    }

    .woocommerce-cart .woocommerce-cart-form .cart_item {
        padding: 30px 0;
    }


    .col2-set {
        padding: 24px 50px 35px 92px;
    }

    .store-locator .body .st-key,
    .store-locator .body .st-val,
    .store-locator .body .store--title {
        padding: 15px 10px;
    }


    .wholesale-contanier {

        max-width: 90%;

    }


}


@media only screen and (min-width: 1001px) {
    .view_content>.simple_term {
        flex-basis: 33.33%;
        padding-bottom: 33.33%;
    }

    .footer__top ul {
        column-gap: 5vw;
    }

    .views-row {
        flex-basis: calc(25% - 10px);
        max-width: 340px;
    }

    .view_content>.post {
        grid-template-columns: repeat(2, 1fr);
    }

    .view_content>.post:nth-child(even) .left {
        order: 1;
    }

    .view_content>.post>.right {
        padding-inline: 40px;
    }



    .view_content>.post>.block {
        max-width: 55%;
    }


}




@media only screen and (min-width:1200px) {

    .header__subnav_items .active .submenu.fullwidth,
    .secondary-menu .active .submenu.fullwidth {
        grid-template-columns: auto auto auto auto;
        right: 0;
        left: 0;
    }

}




@media only screen and (min-width:1440px) {

    .view_content>.post.one-col {
        margin: 0 13px;
        padding: 0;
    }
}



@media only screen and (min-width: 1601px) {

    .footer>.footer__top,
    .content-area,
    .prod>.view_content,
    .taxonomy_term__main,
    .woocommerce-cart .woocommerce,
    .woocommerce-checkout .woocommerce,
    .wholesale-contanier {
        max-width: var(--maxPageWidth);
    }

    .woocommerce-account .woocommerce {
        max-width: 500px;
    }

    .logged-in.woocommerce-account .woocommerce {
        max-width: var(--maxPageWidth);
    }


}



/* Disable Hover on Mobile */

@media (hover: hover) and (pointer: fine) {

    .icon:hover {
        transition: opacity .15s ease;
        opacity: .6;
    }

    .pager button:not(.icon):not(.pager button[data-active="true"]):hover {
        background-color: rgb(255 255 255 / 20%);
    }

    .header__nav>ul>.menu-item:hover {
        background-color: #fff;
        margin-left: 0;
        border-left-color: var(--page-color);
    }

    .header__subnav_items>.item:hover,
    .header__subnav_items>.item.active {
        background-color: #fff;
        color: var(--page-color);
    }


    .header__subnav_items>.item:hover#dropdown::after,
    .secondary>.item:hover#dropdown::after {
        border-top-color: var(--page-color);
        border-bottom-color: var(--page-color);
    }

    .header__subnav_items>.item .submenu .link:hover,
    .secondary-menu>.item .submenu .link:hover {
        border-left-color: var(--page-color) !important;
        color: var(--page-color) !important;
    }

    .accordion .accordion--header:hover {
        transition: background-color .15s ease;
        background-color: #e2e2e2;
    }


    .button:hover {
        background-color: #f1a512;
        color: #900;
    }

    .wc-proceed-to-checkout>a:hover>.button {
        background-color: #f1a512;
        color: #900;
    }


    .footer__top .mc4wp-form .sign-up:hover {
        background-color: #f1a512;
        color: #900;
    }


    .footer>.footer__top a:hover {
        border-color: #fff;
    }

    .accordion[data-enabled="true"] .accordion--header:hover {
        background-color: var(--page-color);
    }


    .woocommerce-breadcrumb a:focus {
        outline: 2px;
        outline-offset: 4px;
        outline-style: double;
        outline-color: var(--page-color);
    }

    .store-locator-submit.button:hover {
        background-color: #0a474d;
        color: #fff;
    }

    .home .view_content>.simple_term:hover>.simple_term--name {
        /* color: var(--page-color); */
    }


    .view_content>.simple_term:hover>.simple_term--name::after {
        opacity: 1;
    }

}



/* Toast */

.gui-toast-group {
    position: fixed;
    z-index: 1;
    inset-block-end: 0;
    inset-inline: 0;
    padding-block-end: 5vh;

    display: grid;
    justify-items: center;
    justify-content: center;
    gap: 1vh;

    /* optimizations */
    pointer-events: none;
}

.gui-toast {
    --_duration: 3s;
    --_bg-lightness: 90%;
    --_travel-distance: 0;

    font-family: system-ui, sans-serif;
    color: black;
    background: hsl(0 0% var(--_bg-lightness) / 90%);

    max-inline-size: min(25ch, 90vw);
    padding-block: .5ch;
    padding-inline: 1ch;
    border-radius: 3px;
    font-size: 1rem;

    will-change: transform;
    animation:
        fade-in .3s ease,
        slide-in .3s ease,
        fade-out .3s ease var(--_duration);

    @media (--dark) {
        color: white;
        --_bg-lightness: 20%;
    }

    @media (--motionOK) {
        --_travel-distance: 5vh;
    }
}

@keyframes fade-in {
    from {
        opacity: 0
    }
}

@keyframes fade-out {
    to {
        opacity: 0
    }
}

@keyframes slide-in {
    from {
        transform: translateY(var(--_travel-distance, 10px))
    }
}