:root {
    --yellow: #FEC500;
    --green-dark: #006837;
    --green-light: #89BD3D;
    --beige: #FFF7D0;
    --white: #fff;
    --black: #000;
    --container-max-width: 80.3125rem; /* 1285px */
    --container-width-percentage: 66.71%;
}

/* TAGS */

html {
    box-sizing: border-box;
    display: block;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; /* Safari */
    text-rendering: optimizelegibility;
}

body {
    margin: 0 auto;
    font-family: "Montserrat";
    font-size: 1.5rem;
    font-weight: 400;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

button {
    color: inherit;
    border: none;
    padding: 0.5%;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    text-decoration: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100vw;
}


/* COMPONENTS */

.componentCms, .componentHtml {
    margin-top: 6%;
}

.cta {
    display: block;
    text-align: center;
    font-size: 4.5vw;
    font-weight: 700;
}

.cta.squared {
    padding: 1rem 1.5rem;
    border-radius: 0;
}

.cta.rounded {
    border-radius: 50px;
    padding: 1rem 1.5rem;
}

.slick-previous,
.slick-next {
    all: unset;
    cursor: pointer;
}


.article-wrapperAsset video{
    width: 100%;
}

/* CUSTOM CLASSES */

.mobile-only {
    display: block;
}

.mobile-tablet-only {
    display: block;
}

.tablet-only {
    display: none;
}

.tablet-desktop-only {
    display: none;
}

.desktop-only {
    display: none;
}

.img-responsive {
    width: 100%;
    height: auto;
}


/* HEADER - FOOTER */

header {
    position: sticky;
    top: 0;
    width: -webkit-fill-available;
    padding: 20px;
    z-index: 1000;
}

.header--items {
    max-width: 1285px;
    max-height: 58px;
    position: initial;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.header--logo--secondary {
    display: none;
}

.header .header--logo--wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    max-width: unset;
    width: auto;
    max-height: 58px;
    height: 100%;
}

.header .header--logo--wrapper img {
    width: auto;
    height: 100%;
}

.header .logo--link img {
    width: 100%;
    height: auto;
}

header .header--burger img {
    display: block;
}

.header--nav {
    width: 100%;
    padding-top: 35px;
    overflow: hidden;
    transition: 0.25s;
    height: auto;
}

.header--nav.hidden {
    height: 0;
    padding-top: 0;
}

.header--nav--item {
    position: relative;
}

.header--nav--item a,
.header--nav--item .submenu-name {
    color: #FFFFFF;
    background-color: #FEC500;
}

.header--nav--item a:hover {
    background-color: #FEC500;
    color: #FFFFFF;
}

.header--nav--item.socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header--nav--item.cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header--nav--item.socials img {
    display: block;
    max-width: 705px;
    /* max-width: 25px; */
    max-height: 25px;
    width: auto;
    height: auto;
    object-fit: contain;
    min-width: 20px;
}

.header--nav--item.cta a {
    background-color: var(--green-light);
    color:white;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Montserrat";
    width: fit-content;
    border: 1px solid var(--green-light);
}


.header--nav--item.cta a:hover {
    background-color: var(--beige);
    color: var(--green-light);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Montserrat";
    width: fit-content;
}

/* Start - Account */
.header--nav--item.socials .menu--social.account {
    border: 3px solid var(--white);
    border-radius: 50%;
    padding: 0.5rem 0.25rem 0;
    margin-left: 0.5rem;
}
.header--nav--item.socials .menu--social.account img {
    width: 25px;
}
/* End - Account */

header .navigation {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    padding: 0.5rem;
    transition: 0.25s;
}

header .navigation.hidden {
    left: -100vw;
}

header ul {
    list-style: none;
    padding-left: 0;
    margin: unset;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

header ul li a,
header .submenu-name {
    text-decoration: none;
    color: #006837;
    font-family: "Montserrat";
    font-weight: 900;
    /*font-size: 25px;*/
    font-size: 7.5vw;
    word-wrap: break-word;
}

header .submenu-name {
    width: 100%;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header .submenu {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    border-top: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
}

header .submenu.hidden {
    display: none;
}

header .header-menu-plus {
    width: 20px;
    vertical-align: middle;
    display: inline-block;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}
header .header--nav--item:has(.submenu.hidden) .header-menu-plus {
    transform: unset;
}


footer {
    display: block;
    text-align: center;
    padding: 1rem;
    margin-top: 0;
}

footer ul {
    list-style: none;
    padding: 1.2%;
    margin: unset;
    margin-bottom: 1.5rem;
}

footer ul li {
    padding-left: 0.5%;
    padding-right: 0.5%;
    font-size: 0.625rem;
}

footer ul li a {
    text-decoration: none;
    color: #006837;
    background-color: #FEC500;
    font-size: 4vw;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 6.25vw;
}

footer ul li a:hover {
    background-color: #FEC500;
    color: #006837;
}

footer .footer--logo img {
    margin-bottom: 1.5rem;
    width: 50%;
    max-width: 200px;
    height: auto;
}

footer .footer--nav--item.socials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

footer .footer--nav--item.socials img {
    display: block;
    max-width: 25px;
    max-height: 25px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* BANNER */

.componentHero {
    position: relative;
}

.block-banner .slick-slide img {
    display: block;
    /*width: 100%;
    max-height: 834px;
    height: 835px;*/
}

.block-banner .slick-slide img,
.block-banner .slick-slide video,
.block-banner video,
.block-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.componentHero .slick-arrow-container {
    display: none;
}


/* PAGE CONTACT */

.page-contact_wrapper h1 {
    color: #FEC500;
    text-align: center;
    margin: unset;
    font-family: "Montserrat";
    font-weight: 900;
}

.page-contact_wrapper .contact-phone,
.page-contact_wrapper .contact-mail {
    width: 86%;
    display: block;
    margin: 0 auto;
    margin-top: 3%;
    background-color: #fff7d0;
    color: #8abd3d;
    padding: 4%;
    font-weight: bold;
}

.page-contact_wrapper .contact-phone img {
    width: 40px;
}

.page-contact_wrapper .contact-header {
    text-align: center;
    padding: unset;
}

.page-contact_wrapper .contact-phone img,
.page-contact_wrapper .contact-phone .contact-phone-title {
    display: inline-block;
    vertical-align: middle;
    font-size: 2.5rem;
    font-family: "Montserrat";
    font-weight: 900;
}

.page-contact_wrapper .contact-mail img {
    width: 58px;
}

.page-contact_wrapper .contact-mail img,
.page-contact_wrapper .contact-mail .contact-mail-title {
    display: inline-block;
    vertical-align: middle;
    font-size: 2.5rem;
    font-family: "Montserrat";
    font-weight: 900;
}

.page-contact_wrapper .contact-mail .contact-mail-subtitle {
    text-align: center;
    font-family: "Montserrat";
    font-weight: 900;
}

.page-contact_wrapper .contact-phone-subtitle,
.page-contact_wrapper .contact-phone-subtitle {
    display: block;
    text-align: center;
}

.page-contact_wrapper p {
    margin: unset;
}

.page-contact_wrapper .componentHtml {
    margin-top: 4%;
}

.page-contact_wrapper .contact-mail-description,
.page-contact_wrapper .contact-phone-description {
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}

.page-contact_wrapper .contact-phone-subtitle {
    font-size: 2rem;
}


/* RECIPES SLIDER*/

.recipes_slider {
    background-color: #FEC500;
    padding-bottom: 10vw;
    padding-top: 10vw;
}

.recipes_slider > .container-width {
    background-color: #FEC500;
    max-width: 1285px;
    margin: 0 auto;
}

.recipes_slider .slider-recipe img {
    width: 100%;
    border-radius: 22% 47% 0% 0%;
}

.recipes-slider .recipe-card .cta {
    background-image: url("img/BG-recipes-cta-7bab8eafc5bbf7280efdc85674c2d6b5.webp");
    background-size: cover;
    background-position: left bottom;
    background-repeat: repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    /*font-size: 17px;*/
    font-size: clamp(20px, 5.15vw, 26px);
    font-weight: 900;
    min-height: 64px;
    padding: 4.5vw 9px;
}

.recipes_slider h2 {
    color: #FFF7D0;
    text-transform: uppercase;
    font-family: "Montserrat";
    font-weight: 900;
    font-size: 10vw;
    word-break: break-word;
    hyphens: auto;
    margin: 0 auto 10vw;
    width: 90%;
}

.recipes_slider .inspiration-recipe {
    height: calc(var(--slideHeight) * 1px) !important;
}

.recipes_slider .inspiration-recipe img {
    display: block;
    height: calc(var(--imageHeight) * 1px) !important;
}

.recipes_slider .inspiration-recipe .topic-cta a {
    display: flex;
    height: calc(var(--topicHeight) * 1px) !important;
    box-sizing: border-box;
}

.recipes_slider .recipes-slider {
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
    align-items: center;
    width: 100%;
}

.recipes_slider .recipes-slider-cta, .recipes_slider .recipes-slider-slick {
    display: inline-block;
}

.recipes_slider .recipes-slider-cta {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
}

.recipes_slider .recipes-slider-cta .cta {
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    width: 50%;
    margin: 0 auto;
}

.recipes_slider .recipes-slider-slick {
    width: 75%;
}

.recipes_slider .recipes-slider-cta .slick-arrow-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 30px 0;
}

.recipes_slider .slider-recipe {
    padding: 10px;
}

.recipes_slider .recipes-slider-slick .slider-recipe a,
.recipes_slider .recipes-slider-slick .slider-recipe button {
    width: 100%;
    display: block;
    height: 40px;
}

.slick-slider {
    --slideHeight: 396;
    --imageHeight: 300;

    max-width: calc(300px + clamp(2.5vw, 30px, 30px) * 2);
    margin: 0 auto;
}

.recipes_slider .recipes-slider-slick .inspiration-recipe {
    margin: 0 clamp(15px, 30px, 30px);
    max-width: 300px;
}

.recipes_slider .recipes-slider-slick .inspiration-recipe {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 4rem;
    border-top-right-radius: 6rem;
    padding: 0;
    overflow: hidden;
    overflow: clip;
    position: relative;
}

.recipes_slider .recipes-slider-slick .inspiration-recipe .topic-cta {
    width: 100%;
}

.recipes_slider .recipes-slider-slick .inspiration-recipe img {
    object-fit: cover;
}

.recipes_slider .recipes-slider-slick .inspiration-recipe .topic-cta a {
    position: relative;
    font-weight: 700;
    width: auto;
}

.recipes_slider .cta-recipe-list {
    color: #89BD3D;
    background-color: #FFFFFF00;
    border: 1px solid #FFFFFF00;
}

.recipes_slider .cta-recipe-list:hover {
    background-color: #FFFFFF00;
    color: #89BD3D;
    border: 1px solid #FFFFFF00;
}


/* INSPIRATION BLOCK */

.leerdammer_inspiration {
    padding-top: 2%;
    padding-bottom: 2%;
    background-color: #FFF7D0;
}

.leerdammer_inspiration > .container-width {
    background-color: #FFF7D0;
    max-width: 1285px;
    margin: 0 auto;
    padding: 10vw 0;
}

.leerdammer_inspiration .inspiration-title {
    text-transform: uppercase;
    font-family: "Montserrat";
    font-weight: 900;
    color: #89BD3D;
    font-size: 10vw;
    width: 90%;
    margin: 0 auto 10vw;
}

.leerdammer_inspiration .cta-innovation {
    font-size: 4.5vw;
    font-weight: 900;
    text-transform: uppercase;
    width: 67%;
    margin: 0 auto 46px;
}

.leerdammer_inspiration .inspiration-recipes {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.leerdammer_inspiration .inspiration-recipe img {
    display: none;
}

.leerdammer_inspiration .inspiration-recipe .topic-cta {
    position: static;
    width: 65%;
    margin: 0 auto 1rem;
}

.inspiration-recipe a {
    width: max-content;
    margin: 0 auto;
}

.leerdammer_inspiration .inspiration-recipe a {
    text-transform: uppercase;
    font-weight: 700;
    width: auto;
}

.inspiration-right h2 {
    text-transform: uppercase;
    font-family: "Montserrat";
    font-weight: 900;
    color: #89BD3D;
    font-size: 10vw;
    margin: unset;
    margin-bottom: 10vw;
}

.inspiration-right .cta-innovation {
    text-transform: uppercase;
    font-weight: 700;
    width: fit-content;
    margin: 0 auto;
}


/* UNIQUE */

.componentBlockHpBlockUnique {
    padding-top: 0;
    padding-bottom: 10vw;
}

.homepage-unique-image img {
    width: 100%;
    height: auto;
}

.homepage-unique-content {
    max-width: calc(100% - 77px);
    margin: 0 auto;
}

.homepage-unique-title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 8vw;
}

.homepage-unique-description {
    font-size: 4.5vw;
    margin-bottom: 30px;
}

.homepage-unique-cta {
    text-transform: uppercase;
    font-weight: 700;
    width: fit-content;
    margin: 0 auto;
}


/* PRODUCTS SLIDER */

.products_slider {
    background-color: #FFF7D0;
}

.products_slider > .container-width {
    background-color: #FFF7D0;
    max-width: 1285px;
    margin: 0 auto;
    padding: 10vw 0;
}

.products_slider-title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 10vw;
    margin: 0 auto 10vw;
    max-width: 90%;
    color: #89BD3D;
}

.products_slider-wrapper {
    position: relative;
}

.products_slider-slider {
    width: 90%;
    margin: 0 auto;
}

.products_slider-slider-slick-previous,
.products_slider-slider-slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    z-index: 5;
}

.products_slider-slider-slick-previous {
    left: -5%;
}

.products_slider-slider-slick-next {
    right: -5%;
}

.products_slider-slider .image-card {
    padding: 0 1%;
}

.products_slider-slider .image-card img {
    width: 100%;
    height: auto;
}

.products_slider-slider .topic-cta .cta {
    /*font-size: 20px;*/
    font-size: 6vw;
    font-weight: 900;
    text-align: center;
    margin: 0 auto 1rem;
    width: 55%;
}

.products_slider-cta {
    text-transform: uppercase;
    font-weight: 700;
}

.products_slider-cta .cta {
    width: fit-content;
    margin: 1rem auto 0;
}

.products_slider .cta-product-list,
.products_slider .cta-product-list:hover {
    color: #89BD3D;
    background-color: transparent;
    border-color: transparent;
}

.products_slider .slick-arrow-container {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    margin: 0 auto;
}

/*
.products_slider .slick-arrow-container .slick-previous,
.products_slider .slick-arrow-container .slick-next {
    display: block !important;
}*/


/* VOUCHERS */

.componentBlockHpBlockVouchers {
    background-image: url("img/BG-voucher-mobile-c45c8c7821ed3606f04e81189a5b6e68.webp");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10vw 0;
}

.vouchers-title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 10vw;
    margin: 0 auto 10vw;
    max-width: 90%;
    color: #89BD3D;
    /*line-break: anywhere;*/
}

.vouchers-edbm {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: center;
}

.vouchers-edbm-catchphrase {
    flex: 3;
    text-transform: uppercase;
    font-weight: 900;
    /*font-size: 17px;*/
    font-size: 5.15vw;
    color: #89BD3D;
    /*max-width: 190px;*/
    max-width: 57.5vw;
}

.vouchers-edbm img {
    flex: 1;
    /*max-width: 85px;*/
    max-width: 25.73vw;
}

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

.vouchers-products img {
    /*max-width: 316px;*/
    max-width: 95.64vw;
}

.vouchers-cta .cta {
    font-size: 4.5vw;
    font-weight: 700;
    text-transform: uppercase;
    /*max-width: 220px;*/
    max-width: 66.6vw;
    margin: 0 auto;
}


/* PAGE - GENERIC */

.pageGeneric > .container-width {
    width: 90%;
    margin: 0 auto;
}

.pageGeneric .container-width h1{
    font-size: 2rem;
}

.home-h1{
    display: none;
}

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

.pageGeneric table,
.pageGeneric th,
.pageGeneric td {
    border: 1px solid var(--black);
}

/* PAGE - BRAND */

.pagebrand_wrapper {
    background: #FFF7D0;
}

.pagebrand_item {
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 25px;
}

.pagebrand_item_nav {
    padding-left: 4.5vw;
    max-width: 1414px;
}

.pagebrand_item_1 {
    background: #FFF7D0;
}

.pagebrand_item_title_1 {
    color: #FCCF00;
    font-size: 10vw;
    font-family: "Montserrat";
    font-weight: 900;
    text-transform: uppercase;
    word-wrap: break-word;
    padding-right: 10px;
    padding-left: 10px;
}

.pagebrand_item_2 {
    background: #FEC500;
}

.pagebrand_item_title_2 {
    color: #FFF7D0;
    font-size: 10vw;
    font-family: "Montserrat";
    font-weight: 900;
    text-transform: uppercase;
    word-wrap: break-word;
    padding-right: 10px;
    padding-left: 10px;
}

.pagebrand_item_block_subtitle_1 {
    color: #89BD3D;
    /*font-size: 23px;*/
    font-size: 7vw;
    font-family: "Montserrat";
    font-weight: 900;
    text-transform: uppercase;
    word-wrap: break-word;
}

.pagebrand_item_block_text_1 {
    color: #89BD3D;
    font-size: 1.125rem; /* 18px */
    font-family: "Montserrat";
    font-weight: 500;
    word-wrap: break-word;
}

.pagebrand_item_block_text_1 sub {
    /*font-size: 17px;*/
    font-size: 5.15vw;
}

.pagebrand_item_block_subtitle_2 {
    color: #006837;
    /*font-size: 23px;*/
    font-size: 6.9vw;
    font-family: "Montserrat";
    font-weight: 900;
    text-transform: uppercase;
    word-wrap: break-word;
}

.pagebrand_item_block_text_2 {
    color: #006837;
    font-size: 1.125rem; /* 18px */
    font-family: "Montserrat";
    font-weight: 500;
    word-wrap: break-word;
}

.pagebrand_item_block_text_2 sub {
    /*font-size: 17px;*/
    font-size: 5.15vw;
}

.pagebrandBlockUnique {
    background-color: #359546;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 25px;
}

.pagebrandBlockUnique > .container-width {
    max-width: 1285px;
    margin: 0 auto;
    padding: 0;
}

.pagebrand_item_block {
    padding-bottom: 70px;
    margin: auto;
    max-width: 1414px;
    width: 100%;
}

.slider-history-wrapper {
    position: relative;
}

.slick-history-previous {
    background-color: transparent;
}

.slick-history-next {
    background-color: transparent;
}

.slick-pagebrand-previous {
    background-color: transparent;
}

.slick-pagebrand-next {
    background-color: transparent;
}

.pagebrand_item_anchor {
    padding-top: 25px;
    padding-bottom: 70px;
    max-width: 1414px;
    display: flex;
    gap: 0;
    flex-direction: column;
}

.pagebrand_nav_text {
    padding: 10px;
    color: #89BD3D;
    font-size: 1.25rem;
    font-family: "Montserrat";
    font-weight: 500;
    word-wrap: break-word;
}

.pagebrand_anchor_text {
    /*width: 265px;*/
    width: fit-content;
    text-align: center;
    color: #89BD3D;
    font-size: 1.5rem;
    font-family: "Montserrat";
    font-weight: 900;
    /*text-decoration: underline;*/
    text-transform: uppercase;
    word-wrap: break-word;
    cursor: pointer;
    text-decoration: underline;
}

.pagebrand_item_history_title_text {
    padding-top: 40px;
    padding-left: 0;
    text-align: right;
    color: #FFF7D0;
    font-size: 1.75rem;
    font-family: "Montserrat";
    font-weight: 900;
    text-transform: uppercase;
    word-wrap: break-word;
}

.pagebrand_item_history_text {
    padding-top: 46px;
    color: #FFF7D0;
    font-size: 1.125rem;
}

.pagebrand_item_block-slider {
    display: inline-block;
    width: 80%;
    margin-left: 10%;
}

.pagebrand_item_block-slider-content {
    display: block;
    visibility: hidden;
}

.pagebrand_item_block-slider-content.slick-active {
    visibility: visible !important;
}

.pagebrand_item_block-slider-content-wrapper {
    display: flex;
    flex-direction: column;
}

.pagebrand_item_block-slider-content_img {
    flex: 1;
    padding-bottom: 40px;
    height: 100%;
    width: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pagebrand_item_block-slider-content_text {
    flex: 1;
}

.pagebrand_item_block-slider-content_text p {
    font-weight: 500;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots {
    text-align: center;
    padding-left: 0;
}

.slick-dots li {
    background: #89BD3D;
    border-radius: 9999px;
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0px 4px 6px hsla(0,0%,0%,.15);
}

.slick-dots li button:before {
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
}

.slick-dots li.slick-active {
    background: #FFFFFF;
}

/* Page specific slider elements */

/* Slider History */

.slider-history-wrapper .pagebrand_item_block-slider {
    max-width: 530px;
}

.slider-history-wrapper .pagebrand_item_history_title_text {
    text-shadow: 0 0 6px hsla(129.9, 47.8%, 39.8%, .25), 0 0 3px hsla(129.9, 47.8%, 39.8%, .5);
}

.slider-history .slick-dots li.slick-active {
    background: #FEC500;
}

.slider-history-wrapper .slick-arrow img {
    display: none;
}

.slider-history-wrapper .slick-arrow {
    width: 46px;
    height: 46px;
    background-image: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.7383 11.709L28.7375 23.4178L18.6253 34.9492' stroke='%23FFF7D0' stroke-width='3'/%3E%3Ccircle cx='23.2402' cy='23.2402' r='21.7402' stroke='%23FFF7D0' stroke-width='3'/%3E%3C/svg%3E%0A");
    background-size: 46px 46px;
    background-repeat: no-repeat;
}

.slider-history-wrapper .slick-arrow.slick-previous {
    transform: rotate(180deg);
}

/* Slider quality */

.pagebrand_item_block_slider-wrapper .pagebrand_item_block_subtitle_2 {
    color: #FFF7D0;
}

.pagebrand_item_block_slider-wrapper .slick-arrow img {
    display: none;
}

.pagebrand_item.pagebrand_item_1 .slick-arrow {
    width: 46px;
    height: 46px;
    background-image: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.7383 11.709L28.7375 23.4178L18.6253 34.9492' stroke='%2389BD3D' stroke-width='3'/%3E%3Ccircle cx='23.2402' cy='23.2402' r='21.7402' stroke='%2389BD3D' stroke-width='3'/%3E%3C/svg%3E%0A");
    background-size: 46px 46px;
    background-repeat: no-repeat;
}

.pagebrand_item_block_slider-wrapper .slick-arrow.slick-previous {
    transform: rotate(180deg);
}

.pagebrand_item.pagebrand_item_1 .slick-dots li {
    background: #89BD3D;
}

.pagebrand_item.pagebrand_item_1 .slick-dots li.slick-active {
    background: #FFF;
}

/* Slider sustainability */

.pagebrand_item_block_slider-wrapper .slick-arrow img {
    display: none;
}

.pagebrand_item_block_slider-wrapper .slick-arrow {
    width: 46px;
    height: 46px;
    background-image: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.7383 11.709L28.7375 23.4178L18.6253 34.9492' stroke='%23006837' stroke-width='3'/%3E%3Ccircle cx='23.2402' cy='23.2402' r='21.7402' stroke='%23006837' stroke-width='3'/%3E%3C/svg%3E%0A");
    background-size: 46px 46px;
    background-repeat: no-repeat;
}

.pagebrand_item_block_slider-wrapper .slick-dots li {
    background: #FFF;
}

.pagebrand_item_block_slider-wrapper .slick-dots li.slick-active {
    background: #FCCF00;
}

.pagebrand-unique-image {
    width: 100%;
    overflow: hidden;
}

.pagebrand_item > .container-width {
    max-width: 1285px;
    margin: 0 auto;
    padding: 0;
}

.pagebrand_item_block_slider-wrapper {
    position: relative;
}

.pagebrandBlockUnique .slick-arrow-container {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    margin: 0 auto;
}

.pagebrand_item .slick-arrow-container {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    margin: 0 auto;
}

.pagebrandBlockUnique .slick-arrow-container,
.pagebrand_item .slick-arrow-container {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-history-wrapper .slick-arrow,
.pagebrand_item.pagebrand_item_1 .slick-arrow,
.pagebrand_item_block_slider-wrapper .slick-arrow {
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
}


/* PAGE - RECIPES LIST */

.pageRecipesList {
    background-color: #FFF7D0;
    padding: 30px 0;
}

.leerdammer-co-uk .pageRecipesList .recipes-algolia-filters{
    display: none;
}

.pageRecipesList > .container-width {
    width: 88.5%;
    margin: 0 auto;
}

.pageRecipesList-title {
    font-size: 10vw;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    color: #89BD3D;
    margin-top: 0;
}

.pageRecipesList-subtitle {
    color: #89BD3D;
    /*font-size: 20px;*/
    font-size: 6vw;
    font-weight: 700;
    text-align: center;
    /*line-break: anywhere;*/
}

.pageRecipesList-filters {
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pageRecipesList-filter {
    position: relative;
    color: #89BD3D;
    font-size: 4.5vw;
    font-weight: 700;
    margin-bottom: 4.5vw;
}

.pageRecipesList-filter:last-child {
    margin-bottom: 0;
}

.pageRecipesList-filter-select {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.90);
    box-shadow: 0px 0px 20px rgba(135.12, 119.34, 42.39, 0.10);
    border-radius: 37px;
    padding: 10px 23px;
    cursor: pointer;
    transition: 0.2s;
}

.pageRecipesList-filter-select.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.pageRecipesList-filter-select > img:first-of-type {
    max-width: 30px;
}

.pageRecipesList-filter-select .clear-filter {
    max-width: 15px !important;
}

.recipes-filter-title {
    margin: 0 10px;
    text-align: center;
}

.recipes-filter-arrow {
    max-width: 23px;
    transition: 0.2s;
}

.pageRecipesList-filter-select.open .recipes-filter-arrow {
    rotate: 180deg;
}

.pageRecipesList-filter-options {
    display: none;
    position: sticky;
    z-index: 2;
    width: -webkit-fill-available;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 10px 13px;
    background-color: rgba(255, 255, 255, 0.90);
    box-shadow: 0px 0px 20px rgba(135.12, 119.34, 42.39, 0.10);
    border-bottom-left-radius: 19px;
    border-bottom-right-radius: 19px;
    transition: 0.2s;
}

.pageRecipesList-filter-options.open {
    display: block;
}

.pageRecipesList-filter-option {
    padding: 5px 10px;
    cursor: pointer;
}

.pageRecipesList-filter-option.active {
    background-color: #89BD3D;
    color: #FFFFFF;
}

.pageRecipesList-filter-option label > img {
    max-height: 20px;
    width: auto;
}

.pageRecipesList-filter-option label {
    cursor: pointer;
}

.pageRecipesList-list .recipe-card {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15%;
    border-top-right-radius: 25%;
    margin: 30px 0;
}

.pageRecipesList-list .recipe-card.hidden {
    display: none;
}

.pageRecipesList-list .recipe-card img {
    display: block;
}

.pageRecipesList-list .recipe-card .topic-cta {
    /*position: absolute;
    left: 0;
    bottom: 0;*/
    width: 100%;
    background-image: url("img/BG-recipes-cta-7bab8eafc5bbf7280efdc85674c2d6b5.webp");
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    height: 100%;
}

.pageRecipesList-list .recipe-card .topic-cta .cta {
    color: #89BD3D;
    /*font-size: 17px;*/
    font-size: 5.15vw;
    font-weight: 900;
    padding: 4.68vw 1.71vw;
    min-height: 12.48vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.pageRecipesList-list .recipe-card .topic-cta .cta span {
    max-width: 75%;
}


/* PAGE - SINGLE RECIPE */

.pageRecipe {
    background-color: #FFF7D0;
}

.leerdammer-co-uk .pageRecipe .pageRecipe-pictos{
    display: none;
}

.pageRecipe-description-right,
.pageRecipe-details {
    width: 88.5%;
    margin: 0 auto;
}

.pageRecipe-title {
    font-size: 10vw;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    color: #89BD3D;
    line-height: 1.2;
}

.pageRecipe-pictos {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    justify-content: center;
}

.pageRecipe-description {
    font-size: 1.25rem;
    font-weight: 700;
    color: #006837;
    ;
}

.pageRecipe-picto-column {
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: space-between;
    padding: 0 12px;
}

.pageRecipe-picto-column:nth-of-type(1) {
    padding-left: 0;
}

.pageRecipe-picto-column:nth-of-type(2) {
    border-left: 2px solid #89BD3D;
    border-right: 2px solid #89BD3D;
}

.pageRecipe-picto-column:nth-of-type(3) {
    padding-right: 0;
}

.pageRecipe-picto-text {
    font-size: 4.5vw;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #89BD3D;
    margin-bottom: 0;
}

.pageRecipe-picto-column:nth-of-type(1) .pageRecipe-picto {
    /*max-width: 72.5px;*/
    max-width: 22vw;
    margin: 0 auto;
}

.pageRecipe-picto-column:nth-of-type(2) .pageRecipe-picto {
    /*max-width: 28px;*/
    max-width: 8.5vw;
    margin: 0 auto;
}

.pageRecipe-picto-column:nth-of-type(3) .pageRecipe-picto {
    /*max-width: 53.5px;*/
    max-width: 16vw;
    margin: 0 auto;
}

.pageRecipe-product-introduction {
    color: #006837;
    font-size: 4.5vw;
    font-weight: 500;
}

.pageRecipe-subtitle {
    /*font-size: 23px;*/
    font-size: 7vw;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    color: #89BD3D;
}

.pageRecipe-details-left .pageRecipe-subtitle {
    text-align: center;
}

.pageRecipe-people-catchphrase {
    text-align: center;
    color: #006837;
    font-size: 4.5vw;
    font-weight: 500;
}

.pageRecipe-people_counter {
    width: 62.25%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    border: 1px solid #89BD3D;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.90);
    text-align: center;
}

.pageRecipe-people-remove,
.pageRecipe-people-add {
    cursor: pointer;
    color: #006837;
    font-size: 1.875rem;
    font-weight: 500;
    flex: 1;
}

.pageRecipe-people-remove {
    border-right: 1px solid #89BD3D;
}

.pageRecipe-people {
    color: #006837;
    font-size: 4.5vw;
    font-weight: 500;
    flex: 3;
}

.pageRecipe-people-add {
    border-left: 1px solid #89BD3D;
}

.pageRecipe-ingredients {
    padding-left: 18px;
}

.pageRecipe-ingredient {
    color: #006837;
    font-size: 4.5vw;
    font-weight: 500;
    /*line-height: 27px;*/
    line-height: 8.15vw;
}

.pageRecipe-details-separator {
    height: 0;
    width: 83.5%;
    margin: 0 auto;
    border: 2px solid #89BD3D;
}

.pageRecipe-steps {
    list-style: none;
    padding-left: 0;
}

.pageRecipe-step {
    color: #359546;
    font-size: 4.5vw;
    font-weight: 500;
    /*line-height: 27px;*/
    line-height: 8.15vw;
}

.pageRecipe-step-only-one{
    list-style: none;
}

.pageRecipe-tip {
    position: relative;
    width: 80%;
    margin: 0 auto;
}

.pageRecipe-tip-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3.16deg);
    width: 90%;
    text-align: center;
}

.pageRecipe-tip-title {
    color: white;
    font-size: 1.563rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pageRecipe-tip-text {
    color: white;
    /*font-size: 17px;*/
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 27px;
}

.pageRecipe-tip-picto {
    width: 18%;
    height: auto;
    margin: 0 auto;
}

.pageRecipe-vouchers {
    background-color: #89BD3D;
    background-image: url("img/BG-recipe-voucher-mobile-055d62e40fbcff079bbf9e319ae7eceb.webp");
    background-position: center top;
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 6.4%;
}

.pageRecipe-vouchers-title {
    color: white;
    /*font-size: 23px;*/
    font-size: 7vw;
    font-weight: 900;
    text-transform: uppercase;
}

.pageRecipe-vouchers .cta {
    font-size: 4.5vw;
    font-weight: 700;
    text-transform: uppercase;
}


/* PAGE - PRODUCTS LIST */

.pageProductsList {
    background-color: #FFF7D0;
    padding: 30px 0;
}

.pageProductsList > .container-width {
    width: 85%;
    margin: 0 auto;
}

.pageProductsList-title {
    font-size: 10vw;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    color: #89BD3D;
    margin-top: 0;
}

.pageProductsList-subtitle {
    color: #89BD3D;
    /*font-size: 20px;*/
    font-size: 6vw;
    font-weight: 700;
    text-align: center;
}

.pageProductsList-range-wrapper {
    position: relative;
    margin-top: 6vw;
}

.pageProductsList-range-background {
    display: block;
}

.pageProductsList-range-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 5vw;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    color: #FFF7D0;
    margin: 0;
}

.pageProductsList-product {
    display: block;
    margin: 12vw 0;
    position: relative;
}

.pageProductsList-product-new {
    position: absolute;
}

.pageProductsList-product  .pageProductsList-product-new {
    right: 4%;
    top: -6%;
    width: 20%;
}

.pageProductsList-product .topic-cta .cta {
    color: #89BD3D;
    /*font-size: 23px;*/
    font-size: 7vw;
    font-weight: 900;
    margin-top: 3.5vw;
}


/* PAGE - SINGLE PRODUCT */

.pageProduct {
    background-color: rgba(252, 207, 0, 0.05);
}

.pageProduct > .container-width {
    width: 85%;
    margin: 10vw auto 10vw;
}

.pageProduct-image .topic-cta {
    display: none;
}

.pageProduct-image  {
    position: relative;
}

.pageProduct-image .pageProductsList-product-new {
    right: 7%;
    top: -5%;
    width: 20%;
}

.pageProduct-title {
    color: #89BD3D;
    font-size: 10vw;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.pageProduct-subtitle {
    color: #006837;
    /*font-size: 23px;*/
    font-size: 7vw;
    font-weight: 700;
}

.pageProduct .topic-text-title {
    color: #006837;
    /*font-size: 17px;*/
    font-size: 5.15vw;
    font-weight: 700;
}

.pageProduct .topic-text-text {
    color: #006837;
    /*font-size: 17px;*/
    font-size: 5.15vw;
    font-weight: 500;
}

.pageProduct-table {
    color: #006837;
    font-size: 4.5vw;
    font-weight: 500;
    /*font-size: 17px;*/
    font-size: 5.15vw;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 2.5rem;
}

.pageProduct-table,
.pageProduct-table th,
.pageProduct-table td {
    border-collapse: collapse;
}

.pageProduct-table thead,
.pageProduct-table tr:nth-of-type(even) {
    background-color: #FCCF0066;
}

.pageProduct-right strong{
    font-weight: bold;
}

.pageProduct-table thead td:first-of-type {
    text-align: left;
}

.pageProduct-table thead td {
    text-align: center;
}

.pageProduct-table td {
    padding: 13px 0;
}

.pageProduct-table td:nth-child(1) {
    padding-left: 8px;
    width: 44%;
}

.pageProduct-table tbody td:not(:first-child) {
    width: 28%;
    text-align: right;
}

.pageProduct-table td:last-child {
    padding-right: 8px;
}

.pageProduct-tip {
    position: relative;
    width: 75%;
    margin: 10vw auto 0;
}

.pageProduct-tip-content {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.pageProduct-tip-title {
    color: white;
    font-size: 4.5vw;
    font-weight: 700;
    text-transform: uppercase;
}

.pageProduct-tip-text {
    color: white;
    font-size: 4.5vw;
    font-weight: 600;
    line-height: 6vw;
}

.componentHtml h1 {
    font-size: 1.5em;
}

.componentHtml h2 {
    font-size: 1.4em;
}

.componentHtml table,
.componentHtml tr,
.componentHtml td {
    border: 1px solid black;
    border-collapse: collapse;
}

.componentHtml td {
    padding: 10px;
}


/* pageArticlesList - Articles list */

.pageArticlesList {
    background-color: rgb(255, 247, 208);
}

.pageArticlesList .article {
    display: inline-block;
    width: 96%;
    vertical-align: top;
    padding: 2%;
}

.pageArticlesList .article .cta {
    color: rgb(137, 189, 61);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
}

.pageArticlesList .article-footer {
    background-color: white;
    margin-top: -4px;
    width: 96%;
    padding: 3% 2% 3% 2%;
    height: 30%;
}

.pageArticlesList img {
    border-radius: 10px 10px 0px 0px;
}

.pageArticlesList .article .article-summary {
    color: rgb(137, 189, 61);
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 400;
    text-align: center;
}


/* pageArticlesList - Article single */

.pageArticle .article-content {
    padding: 2%;
}

.pageArticle h1 {
    color: #89BD3D;
    font-size: 6vw;
    margin: unset;
    margin-left: 2%;
}


/* ALGOLIA */

.pagination {
    font-size: 1.25rem;
    line-height: 30px;
    font-weight: 500;
    color: #359546;
    text-align: center;
    margin: 48px 0;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: center;
}

.pagination .algolia-page {
    cursor: pointer;
    display: inline-block;
    margin-right: 1%;
    width: 31px;
    height: 31px;
}
.pagination .algolia-page:last-of-type {
    margin-right: 0;
}
.pagination .algolia-page.current-page {
    border: 1px solid #359546;
    border-radius: 50%;
}

.pagination .algolia-page label {
    cursor: pointer;
}

.pagination .algolia-page input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.pagination .algolia-page.prev img {
    transform: rotate(180deg);
}

/* Timeline */
.timeline {
    --col-gap: 68px;
    --row-gap: 26px;
    --line-w: 20px;
    --yellow: hsl(46.5, 100%, 49.8%);
    --light-yellow: hsl(50, 100%, 91%);
    --forest-green: hsl(152, 100%, 20%);
    --light-green: hsl(84.4, 51.2%, 49%);
    --margin-inline-start: 60px;
    position: relative;
    display: grid;
    grid-template-columns: var(--line-w) 1fr;
    grid-auto-columns: max-content;
    column-gap: var(--col-gap);
    list-style: none;
    width: calc(100% - var(--margin-inline-start));
    margin-inline: auto;
    margin-inline-start: var(--margin-inline-start);
    margin-block-start: 30px;
    margin-block-end: 30px;
    color: var(--forest-green);
  }
  .timeline:before {
    content: "";
    grid-column: 1;
    grid-row: 1/span 20;
    background: var(--yellow);
    border-radius: calc(var(--line-w) / 2);
  }
  .timeline-event {
    grid-column: 2;
    grid-row: span 2;
    display: grid;
    grid-template-rows: min-content min-content min-content;
    margin-inline-end: 30px;
  }
  .timeline-event:first-child {
    margin-block-start: 100px;
  }
  .timeline-event:not(:last-child) {
    margin-bottom: var(--row-gap);
  }
  .timeline-event-inner {
    position: relative;
    background-color: var(--light-yellow);
    padding: 24px;
    border-radius: 16px;
  }
  .timeline-event-inner:before, .timeline-event-inner:after {
    content: "";
    position: absolute;
    z-index: 5;
    display: block;
    top: calc(50% - var(--width) / 2);
    height: var(--width);
    width: var(--width);
    right: calc(100% + var(--col-gap) + var(--line-w) / 2 - var(--width) / 2);
  }
  .timeline-event-inner:before {
    --width: 56px;
    background-color: var(--wp--preset--color--white);
  }
  .timeline-event-inner:after {
    --width: 14px;
    border-radius: 14px;
    background-color: var(--wp--preset--color--secondary);
  }
  .timeline-event-title {
    margin-block-start: 0;
  }
  .timeline-event-image img {
    max-width: 50%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .timeline-event[data-year]:before {
    content: attr(data-year);
    position: absolute;
    left: 0;
    transform: translateX(calc(-50% + 10px));
    text-align: center;
    color: var(--yellow);
    font-size: 2.188rem;
    padding: 10px 20px;
    font-weight: 900;
    border-top: 15px solid var(--yellow);
    background-color: #FFF;
  }

  /* Section specific timelines */
  .pagebrand_item.pagebrand_item_1 .timeline {
    font-weight: 500;
    color: var(--light-green);
  }
  .pagebrand_item.pagebrand_item_1 .timeline-event-inner {
    background-color: #fff;
  }
  .pagebrand_item.pagebrand_item_1 .timeline-event[data-year]::before {
    background-color: var(--light-yellow);
  }

  /** Country specific changes */
  
.leerdammer-co-uk .pageRecipe-people-remove,
.leerdammer-co-uk .pageRecipe-people-add,
.leerdammer-it .pageRecipe-people-remove,
.leerdammer-it .pageRecipe-people-add {
    display: none;
}

.leerdammer-co-uk .pageRecipe-people,
.leerdammer-it .pageRecipe-people {
    line-height: 42px;
}