
:root {
    /* --- colors --- */

    /* brand */
    --brand-nude: #F7F1EA;
    --brand-nude-2: #FFEDED;
    --brand-dark-purple: #403357;
    --brand-dark-purple-tint: #584476;
    --brand-red: #FF5D47;
    --brand-yellow: #FFD633;
    --brand-green: #66BC66;
    --brand-blue: #0EB6D0;

    /* tints */
    --tint-red: #FF9E91;
    --tint-green: #A3D7A3;
    --tint-lilac: #8D859A;
    --tint-purple: #9B8FAD;
    --tint-grey: #8d829a;
    --tint-orange: #efb882;
    --tint-pink: #feb0aa;
    --tint-yellow: #FFE785;
    --tint-blue: #6ED3E3;

    /* global */
    --global-white: #ffffff;
    --global-light-blue: #F5F5F5;
    --global-grey: #D8D8D8;
    --global-dark-grey: #797979;
    --global-text-black: #414141;
    --global-black: #000000;

    /* border radius */
    --global-border-radius: 20px;
    --global-border-radius-large: 30px;
}


@media(max-width: 767.98px){
    :root {
        /* border radius */
        --global-border-radius: 15px;
        --global-border-radius-large: 24px;
    }
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden!important;
}

#main-content {
    min-height: 70vh;
}


/* width */
::-webkit-scrollbar {
    width: 13px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #FFFFFF;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--brand-dark-purple);
    border-radius: 20px;
    cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--brand-red);
}
/* --- Container Settings --- */
.container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.container {
    width: 1800px;
    max-width: 100%;
}

/*** Block Frames - For Blocks that need white space around them ***/
.framed_desktop {
    max-width: calc(100% - 120px);
}

@media(max-width: 1399.98px) {
    .framed_desktop {
        max-width: calc(100% - 90px);
    }
}

@media(max-width: 991.98px) {
    .container-padding {
        padding-left: 40px;
        padding-right: 40px;
    }

    .framed_desktop {
        max-width: 100%;
    }
    /*** Add this if you want the frame to happen on mobile too ***/
    .framed_mobile {
        max-width: calc(100% - 80px);
    }
}

@media(max-width: 767.98px) {
    .container-padding {
        padding-left: 30px;
        padding-right: 30px;
    }
    .framed_mobile {
        max-width: calc(100% - 60px);
    }
}

@media(max-width: 575px) {
    .container-padding {
        padding-left: 15px;
        padding-right: 15px;
    }
    .framed_mobile {
        max-width: calc(100% - 30px);
    }
}
@media(max-width: 1400px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media(max-width: 991.98px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media(max-width: 767.98px) {
    .container {
        padding-left: 0px;
        padding-right: 0px;
    }

    /*.container-padding {*/
    /*    padding-left: 15px;*/
    /*    padding-right: 15px;*/
    /*}*/
}
span.dot::before {
    content: '';
    background-color: var(--global-white);
    border-radius: 100%;
    margin: 0px 10px;
    width: 5px;
    height: 5px;
    position: relative;
    display: inline-flex;
    justify-content: center;
}
span.dot {
    position: relative;
}
.brand-yellow_background span.dot::before {
    background-color: var(--global-text-black);
}

/*** Background Colors ***/
.brand-nude_background {
    background-color: var(--brand-nude);
}
.brand-nude-2_background {
    background-color: var(--brand-nude-2);
}
.brand-dark-purple_background {
    background-color: var(--brand-dark-purple);
}
.brand-dark-purple-tint_background {
    background-color: var(--brand-dark-purple-tint);
}
.brand-red_background {
    background-color: var(--brand-red);
}
.brand-yellow_background {
    background-color: var(--brand-yellow);
}
.brand-green_background {
    background-color: var(--brand-green);
}
.brand-blue_background {
    background-color: var(--brand-blue);
}
/* Tints */
.tint-red_background {
    background-color: var(--tint-red);
}
.tint-green_background {
    background-color: var(--tint-green);
}
.tint-lilac_background {
    background-color: var(--tint-lilac);
}
.tint-purple_background {
    background-color: var(--tint-purple);
}
.tint-grey_background {
    background-color: var(--tint-grey);
}
.tint-orange_background {
    background-color: var(--tint-orange);
}
.tint-pink_background {
    background-color: var(--tint-pink);
}
/* Mono */
.global-white_background {
    background-color: var(--global-white);
}
.global-light-blue_background {
    background-color: var(--global-light-blue);
}
.global-grey_background {
    background-color:var(--global-grey);
}
.global-dark-grey_background {
    background-color: var(--global-dark-grey);
}
.global-text-black_background {
    background-color: var(--global-text-black);
}
.global-black_background {
    background-color: var(--global-black);
}
/* Colours */
.white {
    color: var(--global-white);
}
.brand-nude {
    color: var(--brand-nude);
}
.brand-nude-2 {
    color: var(--brand-nude-2);
}
.brand-dark-purple {
    color: var(--brand-dark-purple);
}
.brand-dark-purple-tint {
    color: var(--brand-dark-purple-tint);
}
.brand-red {
    color: var(--brand-red);
}
.brand-yellow {
    color: var(--brand-yellow);
}
.brand-green {
    color: var(--brand-green);
}
.brand-blue {
    color: var(--brand-blue);
}


.global-border-radius {
    border-radius: var(--global-border-radius) !important;
    overflow: hidden;
}
.global-border-radius-large {
    border-radius: var(--global-border-radius-large);
}


img {
    max-width: 100%;
}
p:empty {
    display: none;
}
a {
    color: var(--tint-grey);
}
a,
a:before,
a:after {
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
a.link-dark {
    color: #47515A;
}
a,
a:visited,
a:focus {
    color: inherit;
}
a:hover {
    color: var(--brand-red)
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}
a.fill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
a.fill.videoPlayBtn {

}
a.fill.videoPlayBtn:hover {
    opacity: 0.75;
}
.bg-image-absolute {
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;

}
ins span.woocommerce-Price-amount bdi{
	text-decoration: none !important;
}
ins{
	text-decoration: none !important;
}

form.woocommerce-cart-form ins {
	display: block;
}
.static {
    position: static;
}
a.read-more-button {

}

ul.nav.pills > li {
    padding-right: 10px;
}
ul.nav.pills > li > a {
    /*background-color: #eeebf2;*/
    /*padding: 12px 24px;*/
    /*border-radius: 10px;*/
    /*display: block;*/
    /*text-align: center;*/
    /*text-decoration: none;*/
    /*font-family: "stolzl", sans-serif;*/
    /*font-size: 13px;*/
    /*line-height: 1;*/
    /*color: var(--brand-dark-purple);*/
    /*transition: ease all 0.3s;*/
    /*margin-bottom: 10px;*/
    background-color: #FFDFDA;
    padding: 12px;
    border-radius: 10px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: "stolzl", sans-serif;
    font-size: 13px;
    line-height: 1;
    color: var(--brand-dark-purple);
    transition: ease all 0.3s;
    cursor: pointer;
    box-shadow: none;
    margin-bottom: 0;
    font-weight: 600;
}
ul.nav.pills > li > a:hover {
    background-color: var(--brand-red);
    color: var(--global-white);
}

@media (max-width: 767.98px) {
    ul.nav.pills > li > a {
        font-size: 11px;
        padding: 9px 17px;
        margin-bottom: 5px;
    }

    ul.nav.pills > li {
        padding-right: 5px;
    }
}

.grid-margin {
    margin-left: -15px;
    margin-right: -15px;
}
.grid-padding,
.gp {
    padding: 15px;
}
body {

}
h1,h2,h3,h4,h5,h6 {

}

b {

}
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featherlight .featherlight-content {
    padding: 0;
    border-bottom: none;
}
/** Desktop type styles **/

h1 {
}


h2 {

}
h3 {

}
h4 {

}

h6 {

}

.s13 {
    font-size: 13px;
}
.fullwidth {
    width: 100%;
}
.space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.uppercase {
    text-transform: uppercase;
}
.font-weight-normal {
    font-weight: normal!important;
}
p.accent {

}
.rounded-corners {
    overflow: hidden;
}
header {

}

header.sticky {

}
header.plain {
}
header.plain .container {

}

footer.plain .container {

}

.woocommerce-product-and-category-search-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    opacity: 1;
}
.woocommerce-product-and-category-search-input::-moz-placeholder { /* Firefox 19+ */
    opacity: 1;
}
.woocommerce-product-and-category-search-input:-ms-input-placeholder { /* IE 10+ */
    opacity: 1;
}
.woocommerce-product-and-category-search-input:-moz-placeholder { /* Firefox 18- */
    opacity: 1;
}

img.logo {
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    max-width: none;
}
.relative {
    position: relative;
}

footer {
}
footer a:hover {
    opacity: 0.75;
}
.footer-columns > .column {
}

p.footer-menu-heading {

}
.footer-nav {

}
.footer-nav li {
    display: block;
    width: 100%;
}
.footer-nav li a {


}
.footer-nav-column li {
    width: 100%;
}
.footer-nav-column li a {

}
.footer-nav-column li a:hover {
    opacity: 0.65;
}
ul.social-links li {
    display: inline-block;
    margin-right: 24px;
}
ul.social-links li a {
    display: block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

ul.social-links li a.facebook {

}
ul.social-links li a.twitter {

}
ul.social-links li a.youtube {
;
}
.footer-top {

}
.footer-bottom  {

}
.footer-bottom p,
.footer-bottom a {
    text-decoration: none!important;
    margin-bottom: 0;
}
footer .social-links {

}
footer .social-links a {
    margin-right: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}
.footer-copyright span {

}
a.nwlink {

}
#menu-footer_bottom_menu li {
    padding: 0 10px 0 0;
    /*border-right: 1px solid #ED1C24*/
}
#menu-footer_bottom_menu li:first-of-type {
    padding-left: 0;
}
#menu-footer_bottom_menu li:last-of-type:after {
    display: none;
}
#menu-footer_bottom_menu li:after {
    content: "|";
    color: #ED1C24;
}
#menu-footer_bottom_menu li a {

}



.featherlight-next:hover,
.featherlight-previous:hover {
    background: transparent;
}
.featherlight-next span, .featherlight-previous span {
    width: 40px;
    height: 40px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}
.featherlight-next span {

}
.featherlight-previous span {

}
.featherlight-next span img.emoji, .featherlight-previous span img.emoji {
    display: none!important;
}

.image-square {
    position: relative;
    width:100%;
    padding-bottom: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.image-4-3 {
    position: relative;
    width:100%;
    padding-bottom: 75%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.image-square.object > img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.image-rectangle-3-1 {
    position: relative;
    width:100%;
    padding-bottom: 33.3333%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.image-16-9 {
    position: relative;
    width:100%;
    padding-bottom: 56.25%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.image-circle {
    position: relative;
    width:100%;
    padding-bottom: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    border-radius: 50%;
}
.image-circle > img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}


/*** Awesome ACF Image Settings ***/

.image-4by3 {
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
}

.image-16by9 {
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}


.image-4by3 > img,
.image-16by9 > img,
.image-square > img {
    position: absolute;
    top: 0;
    object-position: center;
    left: 0;
    object-fit: cover;
    bottom: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    width: 100%;
}


.image-4by3.size-contain > img,
.image-16by9.size-contain > img,
.image-square.size-contain > img {
    object-fit: contain;
}


p,
ul,
ul li,
ol,
ol li,
a {

}

p,
ul,
ul li,
ol,
ol li {

}


.container.no-container-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.website-image {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.one-col-post-container {
    margin-bottom: 50px;
}

blockquote {

}

blockquote,
blockquote p {

}

.round-corners-box {
    border-radius: var(--global-border-radius) !important;
    overflow: hidden;
}


/*** Breadcrumbs ***/

div#ftb-breadcrumbs p.ftb-breadcrumbs > span,
div#ftb-breadcrumbs p.ftb-breadcrumbs > span > a,
div#ftb-breadcrumbs p.ftb-breadcrumbs > span > a:hover,
div#ftb-breadcrumbs p.ftb-breadcrumbs > span > a:visited {
    text-decoration: underline;
    color: #999999;
}

div#ftb-breadcrumbs p.ftb-breadcrumbs > span > a:hover {
    color: var(--brand-red);
}

div#ftb-breadcrumbs p.ftb-breadcrumbs > span.bread-slash {
    text-decoration: none;
}

div#ftb-breadcrumbs p.ftb-breadcrumbs {
    font-family: "tenon", sans-serif;
    font-weight: 300; /* book */
    font-style: normal;
    font-size: 13px;
    line-height: 24px;
    padding: 49px 0 15px;
    margin: 0;
}
div#ftb-breadcrumbs p.ftb-breadcrumbs > span > a {
    padding-left: 6px;
    padding-right: 6px;
}
div#ftb-breadcrumbs p.ftb-breadcrumbs > span:first-of-type > a {
    padding-left: 0;
    padding-right: 6px;
}
div#ftb-breadcrumbs p.ftb-breadcrumbs > span.current {
    color: var(--global-black);
    padding-left: 6px;
    cursor: default;
}

@media(max-width: 575px) {
    div#ftb-breadcrumbs p.ftb-breadcrumbs > span,
    div#ftb-breadcrumbs p.ftb-breadcrumbs > span > a,
    div#ftb-breadcrumbs p.ftb-breadcrumbs > span > a:hover,
    div#ftb-breadcrumbs p.ftb-breadcrumbs > span > a:visited {
        font-size: 10px;
    }

    div#ftb-breadcrumbs p.ftb-breadcrumbs > span > a {
        padding-left: 3px;
        padding-right: 3px;
    }
    div#ftb-breadcrumbs p.ftb-breadcrumbs > span:first-of-type > a {
        padding-left: 0;
        padding-right: 3px;
    }
}

/* Crumbs on blogs/resources/single pages */
body.single div#ftb-breadcrumbs {
    padding-top: 100px;
}

/* Crumbs on product pages pages */
body.single.single-ftb-product div#ftb-breadcrumbs,
body.single.single-ingredient div#ftb-breadcrumbs {
    padding-top: 0;
}

@media(max-width: 1199.98px) {
    body.single div#ftb-breadcrumbs {
        padding-top: 0;
    }

    body.single.single-ftb-product div#ftb-breadcrumbs,
    body.single.single-ingredient div#ftb-breadcrumbs {
        margin-bottom: 0;
        padding-bottom: 0;
    }


    div#ftb-breadcrumbs p.ftb-breadcrumbs {
        padding: 30px 0 45px;
    }

    body.single-ftb-product div#ftb-breadcrumbs p.ftb-breadcrumbs {
        padding: 30px 0 10px;
    }

}


@media(max-width: 767.98px) {
    div#ftb-breadcrumbs p.ftb-breadcrumbs {
        padding: 30px 0 15px;
    }

    body.tax-food-types div#ftb-breadcrumbs p.ftb-breadcrumbs,
    body.page-template-page-products div#ftb-breadcrumbs p.ftb-breadcrumbs {
        margin-bottom: 20px;
    }
}

@media(max-width: 575.98px) {
    body.tax-food-types div#ftb-breadcrumbs p.ftb-breadcrumbs,
    body.page-template-page-products div#ftb-breadcrumbs p.ftb-breadcrumbs {
        margin-bottom: 20px;
    }
}

.breadcrumbs.add-top-padding {
    padding-top: 100px;
}
@media (max-width: 991.98px){
    .breadcrumbs.add-top-padding {
        padding-top: 0px;
    }
}
/*** Content Restricted Page ***/
body.page-template-page-content-restricted {
    background-color: var(--global-light-blue);
}

/*** Footer ***/


.footer-top {
    margin-bottom: 60px;
}
.footer-top ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.footer-top ul li {
    margin: 0;
    padding: 0;
    font-family: "tenon", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}
.footer-top ul li a {
    padding-left: 22px;
    padding-right: 22px;
}
.footer-top ul li a,
.footer-top ul li a:hover,
.footer-top ul li a:visited {
    color: var(--brand-dark-purple);
    text-decoration: none;
}
.footer-top .navbar {
    padding: 0;
}
.footer-top a.social-media-link {
    margin-right: 24px;
}
.footer-top a.social-media-link:last-of-type {
    margin-right: 0;
}
.footer-top img.social-media-icon {
    width: 38px;
    height: 38px;
}

@media(max-width: 991.98px) {
    .footer-top .footer-primary-menu-box nav.navbar {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-top .footer-secondary-menu-box {
        text-align: center;
    }
    .footer-top ul li a {
        padding-bottom: 15px;
        display: inline-block;
    }
}

@media(min-width: 992px) {
    .footer-top ul#menu-footer-main-menu li:first-of-type a {
        padding-left: 0;
    }
    .footer-top ul#menu-footer-secondary-menu li:last-of-type a {
        padding-right: 0;
    }
}

@media(max-width: 1199.98px) {
    .footer-top ul li {
        font-size: 16px;
        line-height: 24px;
    }
    .footer-top ul li a {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.footer-bottom p {
    font-family: "tenon", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom a:hover,
.footer-bottom a:visited {
    color: var(--tint-grey);
}

.footer-bottom .footer-bottom-section {
    border-top: 1px solid var(--tint-grey);
    padding-top: 14px;
}

.post-grid-item-date-or-category {
    font-family: "tenon", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: var(--tint-grey);
}




/*** Product page ***/

body.single-ftb-product .tint-grey p,
body.single-ftb-product p.tint-grey {
    color: var(--tint-grey);
}
.productpage-banner {
    position: relative;
}
.productpage-banner-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    margin-top: -140px;
}
.productpage-banner-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right top;
}

/*.product-claims {*/
/*    border-top: 1px solid #a3b8cc;*/
/*    border-bottom: 1px solid #a3b8cc;*/
/*}*/
.productpage-banner:has(+ .global-white_background) {
    margin-bottom: 60px;
}
@media(max-width: 1900px) {
    .productpage-banner-image {
        width: 25%;
        margin-top: 0;
    }

    .productpage-banner .text_slice {
        padding-right: 80px;
    }

    .productpage-banner-image img {
        object-position: center right;
    }
}

@media(max-width: 991.98px) {
    .productpage-banner .text_slice {
        padding-right: 0;
    }

    .product-claims {
        border-top: 1px solid var(--global-light-blue);
        border-bottom: 1px solid var(--global-light-blue);
    }
}

/*** Ingredients ***/

a.ingredient-grid-item,
a.ingredient-grid-item p {
    font-size: 13px;
    line-height: 18px;
    text-decoration: none;
    color: var(--brand-dark-purple);
}


/*** Resources/Blog ***/

.resource_blog_spacer {
    position: relative;
    padding-bottom: 7%;
}

.single-ftb-resource .three_columns_post_grid {
    margin-top: 7%;
}


/** Filters ***/
.food-categories-filter-collapse li,
.blog-categories-filter li {
    position: relative;
}
.food-categories-filter-collapse li input[type="checkbox"],
.blog-categories-filter li input[type="checkbox"] {
    display: none;
}
.food-categories-filter-collapse li span.filter-label,
.blog-categories-filter li span.filter-label {
    padding-left: 21px;
    color: var(--global-black);
}
.food-categories-filter-collapse li span.filter-label:before,
.blog-categories-filter li span.filter-label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid var(--global-black);
}
.food-categories-filter-collapse li input[type="checkbox"]:checked + span.filter-label:after,
.blog-categories-filter li input[type="checkbox"]:checked + span.filter-label:after {
    content: "";
    position: absolute;
    left: 1px;
    top: 1px;
    width: 14px;
    height: 14px;
    background: var(--brand-red);
}

/** Blog List Category Checkboxes ***/
.blog-category-name-box .checkbox-parent {
    position: relative;
}
.blog-category-name-box .checkbox-parent input[type="checkbox"] {
    display: none;
}

.blog-category-name-box .checkbox-parent label {
    padding-left: 21px;
    margin-bottom: 4px;
}
.blog-category-name-box .checkbox-parent label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border: 1px solid #999999;
}


.blog-category-name-box .checkbox-style-box {
    position: absolute;
    background-color: white;
    height: 12px;
    width: 12px;
    top: 7px;
    left: 2px;
    cursor: pointer;
}

.blog-category-name-box .checkbox-parent input[type="checkbox"]:checked .checkbox-style-box{
    background-color: #999999;
}

@media(max-width: 767.98px) {
    .blog-category-name-box .checkbox-parent label:before {
        top: 3px;
    }


    .blog-category-name-box .checkbox-style-box {
        top: 4px;
    }
}

/*** Ingredients Crops ***/
body.single-ingredient .product-overview .image-square {
    overflow: hidden;
}

body.single-ingredient .product-overview .image-square.object > img {
    transform: scale(1.1)
}



/*** Center Show More Results Button ***/
body.search-results a.button.loadMoreResultsByShow,
body.no-search-results a.button.loadMoreResultsByShow {
    margin-right: unset;
    margin-left: unset;
    margin: 0 auto;
}

.single-ingredient div.tint-grey > p {
    color: var(--tint-grey);
}

.postid-18273 .image-4by3 {
    padding-bottom: 100%;
}
.postid-18273 .image-4by3 img {
    object-fit: contain;
}

.postid-18273 .fullwidth-image-and-video .pb3 {
    padding-bottom: 0;
}

/* Resources area */
#taxonomy-resources .margin-left-right {
    padding: 0 13.5px;
    margin-bottom: 90px;
}
#taxonomy-resources .negative-margin, #archive-resources .negative-margin {
    margin: -13.5px;
}
#taxonomy-resources a.button.secondary {
    margin: 0;
}
#archive-resources .margin-left-right {
    padding: 13.5px;
}
@media(max-width: 767.98px){
    #taxonomy-resources .margin-left-right {
        margin-bottom: 50px;
        padding: 0;
    }
    #taxonomy-resources .negative-margin, #archive-resources .negative-margin {
        margin: 0;

    }
}

@media(max-width: 575.98px){
    #archive-resources .margin-left-right {
        padding: 0;
        margin-bottom: 50px;
    }
   #archive-resources .negative-margin {
        margin: 0;

    }
}

p.school_uni {
    margin-top: -30px;
    margin-bottom: 50px;
}

.single-ftb-product .product-ingredients * {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 8px;
    color: var(--tint-grey);
}


/* Read More Product Disclaimer */
p.disclaimer.small.hidden-disclaimer {
    display: none;
}

/* productpage-banner 2025 */
.productpage-banner .container {
    position: relative;
    overflow: hidden;
}
.productpage-banner .container-padding {
    z-index: 2;
}
.productpage-banner .container::before {
    content: '';
    width: 400px;
    height: 400px;
    border-radius: 100%;
    position: absolute;
    right: -10%;
    top: -50%;
}
.productpage-banner .container::after {
    content: '';
    width: 400px;
    height: 400px;
    border-radius: 100%;
    position: absolute;
    left: -10%;
    bottom: -50%;
}
.productpage-banner .brand-red_background.container::before,
.productpage-banner .brand-red_background.container::after {
    background-color: var(--tint-red);
}
.productpage-banner .brand-dark-purple_background.container::before,
.productpage-banner .brand-dark-purple_background.container::after {
    background-color: var(--tint-purple);
}
.productpage-banner .brand-blue_background.container::before,
.productpage-banner .brand-blue_background.container::after {
    background-color: var(--tint-blue);
}
.productpage-banner .brand-yellow_background.container::before,
.productpage-banner .brand-yellow_background.container::after {
    background-color: var(--tint-yellow);
}
.productpage-banner .brand-green_background.container::before,
.productpage-banner .brand-green_background.container::after {
    background-color: var(--tint-green);
}
@media(max-width: 1199.98px){
    .productpage-banner .container::before,
    .productpage-banner .container::after {
        width: 300px;
        height: 300px;
    }
}
@media(max-width: 991.98px){
    .productpage-banner .container::before,
    .productpage-banner .container::after {
        width: 250px;
        height: 250px;
    }
}
@media(max-width: 575.98px){
    .productpage-banner .container::before,
    .productpage-banner .container::after {
        width: 225px;
        height: 225px;
    }
}
/*About Page Background Colour*/
.page-id-635 #main-content {
    background-color: #F7F1EA;
    padding-bottom: 60px;
}