/* General */
/* ======================== */

    /* General: html, body */
    html, body {
        font-family: "Open Sans", sans-serif;
        overflow-x: hidden;
    }


/* Blocks */
/* ======================== */

    /* Block: .Loading */
    .Loading {
        background-color: #F5F5F5;
        justify-content: center;
        align-items: center;
        display: flex;
        height: 100vh;
        width: 100vw;
    }
    .Loading.Loading--Hidden {
        display: none;
    }
        .Loading .Loading__Animation {
            height: 100px;
            width: 100px;
        }
        .Loading .Loading__Brand {
            position: absolute;
            width: 200px;
            bottom: 40px;
        }

    /* Block: .Wrapper */
    .Wrapper {}
    .Wrapper.Wrapper--Hidden {
        display: none;
    }

    /* Block: .Header */
    .Header {
        background-color: transparent;
        position: absolute;
        padding: 15px 0;
        width: 100%;
        z-index: 2;
        top: 0;
    }
    .Header.Header--Light {}
    .Header.Header--Yellow {}
        .Header .Header__Navbar {
            border-bottom: solid 2px #B2B4B3;
            padding: 0;
        }
        .Header.Header--Light .Header__Navbar {
            border-bottom-color: #FFF;
        }
            .Header .Header__Navbar .Navbar__Brand {
                margin: 0 25px 0 0;
            }
                .Header .Header__Navbar .Navbar__Brand .Brand__Logo {
                    width: auto;
                }
            .Header .Header__Navbar .Navbar__Toggler {
                display: none;
            }
            .Header .Header__Navbar .Navbar__Collapse {}
                .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav {
                    margin: 6px 0 -6px;
                }
                    .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item {
                        font-family: "Open Sans", sans-serif;
                        margin-right: 30px;
                        line-height: 20px;
                        font-weight: 400;
                        font-size: 18px;
                    }
                    .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item:last-child {
                        margin-right: 0;
                    }
                        .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link {
                            border-bottom: solid 10px transparent;
                            box-shadow: unset !important;
                            outline: 0 !important;
                            transition: color .2s;
                            padding: 50px 5px;
                            color: #373738;
                        }
                        .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link:not(.Item__Link--Active):hover {
                            color: #6CB33E;
                        }
                        .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link--Active {
                            border-bottom-color: #6CB33E;
                        }
                        .Header.Header--Light .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link {
                            color: #FFF;
                        }
                        .Header.Header--Light .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link:not(.Item__Link--Active):hover {
                            color: #6CB33E;
                        }
                        .Header.Header--Yellow .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link:not(.Item__Link--Active):hover {
                            color: #FFE115;
                        }
                        .Header.Header--Yellow .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link--Active {
                            border-bottom-color: #FFE115;
                        }
    @media (max-width: 1799px) {
        .Header {}
        .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item {
            margin-right: 20px;
            font-size: 16px;
        }
    }
    @media (max-width: 1499px) {
        .Header {}
            .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item {
                line-height: 16px;
                font-size: 14px;
            }
    }
    @media (max-width: 1399px) {
        .Header {}
        .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item {
            margin-right: 10px;
        }
    }
    @media (max-width: 1299px) {
        .Header {}
        .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item {
            line-height: 14px;
            font-size: 12px;
        }
    }
    @media (max-width: 1199px) {
        .Header {}
            .Header .Header__Navbar {
                padding: 20px 0;
            }
                .Header .Header__Navbar .Navbar__Toggler {
                    background-color: transparent;
                    justify-content: space-evenly;
                    flex-direction: column;
                    align-items: center;
                    display: flex;
                    padding: 10px;
                    height: 55px;
                    width: 55px;
                    border: 0;
                }
                .Header .Header__Navbar .Navbar__Toggler.Navbar__Toggler--X {
                    background-color: #FFF;
                    border-bottom-left-radius: 10px;
                    padding: 0 0 5px 5px;
                    position: absolute;
                    font-size: 52px;
                    height: 100px;
                    width: 100px;
                    color: #000;
                    right: 15px;
                    top: 0;
                }
                .Header.Header--Light:not(.Header--Yellow) .Header__Navbar .Navbar__Toggler.Navbar__Toggler--X {
                    background-color: rgba(0, 0, 0, 0.8);
                    color: #FFF;
                    right: 0;
                }
                .Header .Header__Navbar .Navbar__Toggler .Toggler__Line {
                    background-color: #000;
                    display: block;
                    width: 100%;
                    height: 2px;
                }
                .Header.Header--Light .Header__Navbar .Navbar__Toggler .Toggler__Line {
                    background-color: #FFF;
                }
                .Header .Header__Navbar .Navbar__Collapse {
                    background-color: rgba(0, 0, 0, 0.9);
                    flex-direction: column !important;
                    justify-content: flex-start;
                    transition: transform .2s;
                    align-items: start;
                    padding: 0 10vw;
                    position: fixed;
                    display: flex;
                    min-height: 100vh;
                    max-height: 100vh;
                    overflow: auto;
                    width: 100vw;
                    top: 0;
                    z-index: 9;
                    left: 0;
                    transform: translate(0, -100%);
                    padding-top: 150px;
                }
                .Header.Header--Light:not(.Header--Yellow) .Header__Navbar .Navbar__Collapse {
                    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.2) 100%);
                }
                .Header .Header__Navbar .Navbar__Collapse.Navbar__Collapse--Active {
                    transform: translate(0, 0);
                }
                    .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item {
                        line-height: 50px;
                        font-size: 24px;
                        opacity: 1 !important;
                    }
                    .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link.Item__Link--Active {
                        color: #6CB33E;
                        border: 0;
                    }
                    .Header.Header--Yellow .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link.Item__Link--Active {
                        color: #FFE115;
                    }
                        .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link {
                            padding: 10px 5px;
                            color: #FFF;
                        }
    }
    @media (max-width: 899px) {
        .Header {}
            .Header .Header__Navbar {
                padding: 20px 0;
            }
                .Header .Header__Navbar .Navbar__Toggler.Navbar__Toggler--X {
                    border-bottom-left-radius: 10px;
                    padding: 0 0 5px 5px;
                    font-size: 52px;
                    height: 100px;
                    width: 100px;
                    right: 0;
                }
                .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item {
                    line-height: 50px;
                    font-size: 24px;
                }
                .Header.Header--Light .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link {
                    padding: 20px 5px;
                    color: #FFF;
                }
    }
    @media (max-width: 576px) {
        .Header {}
            .Header .Header__Navbar {
                padding: 10px 0;
            }
                .Header .Header__Navbar .Navbar__Toggler.Navbar__Toggler--X {
                    font-size: 48px;
                    height: 80px;
                    width: 80px;
                }
                .Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item {
                    line-height: 35px;
                    font-size: 20px;
                }
                    .Header.Header--Light .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link {
                        padding: 10px 5px;
                    }
    }

    /* Block: .Footer */
    .Footer {
        padding: 0 0 50px;
        margin-top: 75px;
    }
        .Footer .Footer__Paragraph {
            font-family: "Open Sans", sans-serif;
            font-weight: 400;
            font-size: 14px;
            color: #030E1F;
        }
            .Footer .Footer__Paragraph .Paragraph__Link {
                color: #030E1F;
            }
        .Footer .Footer__Links {
            justify-content: space-between;
            list-style-type: none;
            align-items: center;
            margin-bottom: 3px;
            display: flex;
        }
            .Footer .Footer__Links .Links__Item {}
                .Footer .Footer__Links .Links__Item .Item__Link {
                    transition: color .2s;
                    line-height: 19px;
                    font-size: 16px;
                    color: #373738;
                }
                .Footer .Footer__Links .Links__Item .Item__Link:hover {
                    color: #6CB33E;
                }
    @media (max-width: 1499px) {
        .Footer {}
            .Footer .Footer__Links {}
                .Footer .Footer__Links .Links__Item {}
                    .Footer .Footer__Links .Links__Item .Item__Link {
                        line-height: 16px;
                        font-size: 14px;
                    }
    }
    @media (max-width: 1299px) {
        .Footer {}
            .Footer .Footer__Links {}
                .Footer .Footer__Links .Links__Item {}
                    .Footer .Footer__Links .Links__Item .Item__Link {
                        line-height: 14px;
                        font-size: 12px;
                    }
    }
    @media (max-width: 1199px) {
        .Footer {}
            .Footer .Footer__Links {
                justify-content: flex-end;
                flex-wrap: wrap;
            }
                .Footer .Footer__Links .Links__Item {
                    margin-left: 30px;
                    margin-top: 10px;
                }
    }
    @media (max-width: 578px) {
        .Footer {}
            .Footer .Footer__Links {
                justify-content: center;
                margin-top: 30px;
                flex-wrap: wrap;
                padding: 0;
                display: block;
            }
                .Footer .Footer__Links .Links__Item {
                    margin: 15px;
                    display: block;
                }
    }

    /* Block: .Hero */
    .Hero {}
    .Hero.Hero--Fixed {}
        .Hero .Hero__Carousel {}
        .Hero.Hero--Fixed .Hero__Carousel {}
            .Hero .Hero__Carousel .Carousel__Inner {}
                .Hero .Hero__Carousel .Carousel__Inner .Inner__Item {}
                    .Hero .Hero__Carousel .Carousel__Inner .Inner__Item .Item__Caption {
                        height: calc(100% - 5px);
                        justify-content: flex-start;
                        flex-direction: column;
                        align-items: center;
/*                        padding-bottom: 10%;*/
                        padding-top: 230px;
                        padding-bottom: 50px;
                        display: flex;
                        width: 100%;
                        left: 0;
                        top: 0;
                    }
                        .Hero .Hero__Carousel .Carousel__Inner .Inner__Item .Item__Caption .Caption__Heading {
                            font-family: "Open Sans", sans-serif;
                            margin-bottom: 25px;
                            line-height: 100px;
                            font-weight: 500;
                            font-size: 80px;
                            color: #FFF;
                        }
        .Hero .ObjectFit--Cover { 
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; 
            min-height: 100vh;
        }
        .Hero .carousel-caption {
            position: relative;
            min-height: 100vh;
        }
        .Hero .caption-holder {
            min-height: 300px;
        }
    @media (max-width: 1299px) {
        .Hero {}
            .Hero .Hero__Carousel {}
                .Hero .Hero__Carousel .Carousel__Inner {}
                    .Hero .Hero__Carousel .Carousel__Inner .Inner__Item {}
                        .Hero .Hero__Carousel .Carousel__Inner .Inner__Item .Item__Caption {}
                            .Hero .Hero__Carousel .Carousel__Inner .Inner__Item .Item__Caption .Caption__Heading {
                                line-height: 74px;
                                font-size: 58px;
                            }
    }
    @media (max-width: 768px) {
        .Hero {}
            .Hero .Hero__Carousel {}
                .Hero .Hero__Carousel .Carousel__Inner {}
                    .Hero .Hero__Carousel .Carousel__Inner .Inner__Item {}
                        .Hero .Hero__Carousel .Carousel__Inner .Inner__Item .Item__Caption {}
                            .Hero .Hero__Carousel .Carousel__Inner .Inner__Item .Item__Caption .Caption__Heading {
                                line-height: 40px;
                                margin-top: 10px;
                                font-size: 28px;
                            }
    }
    @media (max-width: 576px) {
        .Hero {}
            .Hero .Hero__Carousel .Carousel__Inner .Inner__Item .Item__Caption {
                padding-bottom: 30%;
            }
    }
    @media (min-width: 768px) {
        .Hero .caption-holder a {
            padding-top: 20px;
        }
    }
    @media (min-width: 1200px) {
        .Hero {}
        .Hero.Hero--Fixed {}
            .Hero .Hero__Carousel {}
            .Hero.Hero--Fixed .Hero__Carousel {
                position: fixed;
                height: 100%;
                z-index: 1;
                top: 0;
            }
    }

    /* Block: .Content */
    .Content {}
    .Content.Content--Push {
        padding-top: 200px;
    }
    .Content.Content--Push.Content--Purple {
        background-color: #B41F75;
    }
    .Content.Content--Push.Content--Blue {
        background-color: #0073D8;
    }
        .Content .Content__Title {
            margin-bottom: 20px;
            line-height: 60px;
            font-size: 50px;
            display: block;
            color: #6CB33E;
        }
        .Content.Content--Purple .Content__Title,
        .Content.Content--Blue .Content__Title {
            color: #FFF;
        }
        .Content .Content__Heading {
            text-transform: uppercase;
            margin-bottom: 20px;
            line-height: 30px;
            font-size: 26px;
            display: block;
            color: #6CB33E;
        }
        .Content.Content--Purple .Content__Heading,
        .Content.Content--Blue .Content__Heading {
            color: #FFF;
        }
        .Content .Content__Heading.Content__Heading--Purple {
            color: #B41F75;
        }
        .Content .Content__Heading.Content__Heading--Blue {
            color: #0073D8;
        }
        .Content .Content__Paragraph {
            line-height: 30px;
            font-weight: 400;
            font-size: 18px;
            color: #373738;
        }
        .Content.Content--Purple .Content__Paragraph,
        .Content.Content--Blue .Content__Paragraph {
            color: #FFF;
        }
        .Content .Content__Paragraph.Content__Paragraph--Small {
            line-height: 24px;
            font-size: 14px;
        }
        .Content .Content__Image {
            margin-bottom: 10px;
            width: 100%;
        }


    /* Block: .Table */
    .Table {}
        .Table thead,
        .Table tbody {}
            .Table thead th,
            .Table tbody td {
                border-bottom: solid 1px rgba(177, 186, 190, 0.4);
                padding: 20px 15px;
                line-height: 22px;
                font-weight: 400;
                font-size: 18px;
                color: #2B2E34;
            }

    @media (max-width: 991px) {
        .Table thead th, 
        .Table tbody td {
            font-size: 14px;
            padding-left: 5px;
            padding-right: 5px;
        }
        .Table thead th:first-child, 
        .Table tbody td:first-child {
            min-width: 50vw;
        }
    }

    /* Block: .Button */
    .Button {
        transition: transform .2s, box-shadow .2s, color .2s;
        font-family: "Open Sans", sans-serif;
        justify-content: center;
        padding: 16px 50px 14px;
        background-color: #FFF;
        align-items: center;
        border-radius: 0;
        box-shadow: none;
        font-size: 20px;
        display: flex;
        color: #000;
        outline: 0;
        border: 0;
    }
    .Button:focus, .Button:active, .Button:hover {
        box-shadow: inset 0 0 15px rgba(100, 100, 100, .50);
        transform: scale(.98);
        color: #555;
        outline: 0;
    }

    /* Block: .Chart */
    .Chart {}
    .Chart.Chart--Sales {}
    .Chart.Chart--ComparisonOfCumulativeFiveYearTotalReturn {}
    .Chart.Chart--NetSales {}
    .Chart.Chart--OperatingIncome {}
    .Chart.Chart--ReportedDilutedEarningsPerShare {}
    .Chart.Chart--AdjustedDilutedEarningsPerShare {}
    .Chart.Chart--AdjustedReturnOnInvestedCapital {}
    .Chart.Chart--MarketCapitalization {}


/* Pages
/* ======================== */

    /* .Page */
    .Page {}

    /* Page: .Home */
    .Page.Page--Home {}

    /* Page: .Letter */
    .Page.Page--Letter {}

    /* Page: .AgilityForGrowth */
    .Page.Page--AgilityForGrowth {}

    /* Page: .ResilientBusinessModel */
    .Page.Page--ResilientBusinessModel {}

    /* Page: .BeWhatsNext */
    .Page.Page--BeWhatsNext {}

    /* Page: .Sustainability */
    .Page.Page--Sustainability {}

    /* Page: .OurGrowthAcrossTheGlobe */
    .Page.Page--OurGrowthAcrossTheGlobe {}

    /* Page: .FinancialHighlights */
    .Page.Page--FinancialHighlights {}

    /* Page: .CorporateInformation */
    .Page.Page--CorporateInformation {}


/* Customizations
/* ======================== */

    /* Bootstrap: .container */
    .container {}
    @media (min-width: 599px) {
        .container {
            max-width: 570px;
        }
    }
    @media (min-width: 699px) {
        .container {
            max-width: 670px;
        }
    }
    @media (min-width: 799px) {
        .container {
            max-width: 770px;
        }
    }
    @media (min-width: 899px) {
        .container {
            max-width: 870px;
        }
    }
    @media (min-width: 999px) {
        .container {
            max-width: 970px;
        }
    }
    @media (min-width: 1099px) {
        .container {
            max-width: 1070px;
        }
    }
    @media (min-width: 1199px) {
        .container {
            max-width: 1170px;
        }
    }
    @media (min-width: 1299px) {
        .container {
            max-width: 1270px;
        }
    }
    @media (min-width: 1399px) {
        .container {
            max-width: 1370px;
        }
    }
    @media (min-width: 1499px) {
        .container {
            max-width: 1470px;
        }
    }
    @media (min-width: 1599px) {
        .container {
            max-width: 1570px;
        }
    }
    @media (min-width: 1699px) {
        .container {
            max-width: 1670px;
        }
    }


/* Helpers
/* ======================== */

    /* Helper: .Icon */
    .Icon {
        background-image: url('./../images/icons.png');
        background-repeat: no-repeat;
        display: inline-block;
        zoom: 0.5;
    }
    .Icon.Icon--ArrowRight {}
    .Icon.Icon--ArrowRight.Icon--Green {
        background-position: -10px -10px;
        height: 36px;
        width: 34px;
    }

    /* Helper: .ObjectFit */
    .ObjectFit--Contain {
        object-fit: contain;
    }
    .ObjectFit--Cover {
        object-fit: cover;
		width: 100%;
    }

    /* Helper: .BackgroundColor */
    .BackgroundColor--B41F75 {
        background-color: #B41F75;
    }

    /* Helper: .Color */
    .Color--B41F75, .Color--B41F75:hover {
        color: #B41F75;
    }
    .Color--373738, .Color--373738:hover {
        color: #373738;
    }
    .Color--FFE115, .Color--FFE115:hover {
        color: #FFE115;
    }
    .Color--6CB33E, .Color--6CB33E:hover {
        color: #6CB33E;
    }
    .Color--55B649, .Color--55B649:hover {
        color: #55B649;
    }

    /* Helper: .FontWeight */
    .FontWeight--400 {
        font-weight: 400;
    }
    .FontWeight--500 {
        font-weight: 500;
    }
    .FontWeight--600 {
        font-weight: 600;
    }
    .FontWeight--700 {
        font-weight: 700;
    }

    /* Helper: .FontSize */
    .FontSize--11 {
        font-size: 11px;
    }
    .FontSize--14 {
        font-size: 14px;
    }
    .FontSize--18 {
        font-size: 18px;
    }
    .FontSize--30 {
        font-size: 30px;
    }
    .FontSize--42 {
        font-size: 42px;
    }
    @media (min-width: 992px) {
        .lg\:FontSize--12 {
            font-size: 12px;
        }
        .lg\:FontSize--22 {
            font-size: 22px;
        }
        .lg\:FontSize--40 {
            font-size: 40px;
        }
        .lg\:FontSize--60 {
            font-size: 60px;
        }
    }
    @media (min-width: 1200px) {
        .xl\:FontSize--13 {
            font-size: 13px;
        }
        .xl\:FontSize--26 {
            font-size: 26px;
        }
        .xl\:FontSize--50 {
            font-size: 50px;
        }
        .xl\:FontSize--84 {
            font-size: 84px;
        }
    }

    /* Helper: .Zoom */
    .Zoom--0\.5 {
        -moz-transform: scale(0.5);
        zoom: 0.5;
    }

    /* Helper: .zIndex */
    .zIndex--1 {
        z-index: 1;
    }
    .zIndex--2 {
        z-index: 2;
    }
    .zIndex--3 {
        z-index: 3;
    }

    /* Helper: .Space */
    .Space {
        display: block;
        width: 100%;
    }
    .Space.Space--50 {
        height: 50px;
    }
    .Space.Space--75 {
        height: 75px;
    }
    .Space.Space--100 {
        height: 100px;
    }
    .Space.Space--150 {
        height: 150px;
    }


/* Customs
/* ======================== */

    /* Custom: 0001 */
    .Custom--0001 {
        margin: -40px 0 0 -75px;
        position: absolute;
    }

    /* Custom: 0002 */
    .Custom--0002 {
        margin: 0 0 -66px -20px;
        position: relative;
        z-index: 1;
    }

    /* Custom: 0003 */
    .Custom--0003 {
        position: relative;
        margin-left: -20%;
        min-width: 110%;
        max-width: 110%;
        width: 110%;
        z-index: 0;
    }
    @media (max-width: 1199px) {
        .Custom--0003 {
            min-width: 90%;
            max-width: 90%;
            width: 90%;
        }
    }
    @media (max-width: 1099px) {
        .Custom--0003 {
            min-width: 80%;
            max-width: 80%;
            width: 80%;
        }
    }
    @media (max-width: 578px) {
        .Custom--0003 {
            min-width: 130%;
            max-width: 130%;
            width: 130%;
        }
    }

    /* Custom: 0004 */
    .Custom--0004 {
        position: absolute;
        margin-top: -250px;
        margin-right: 10px;
        right: 0;
    }
    @media (max-width: 999px) {
        .Custom--0004 {
            margin-top: -200px;
        }
    }
    @media (max-width: 578px) {
        .Custom--0004 {
            position: relative;
            margin-right: 0;
            margin-top: 0;
            right: unset;
        }
    }

    /* Custom: 0005 */
    .Custom--0005 {
        position: relative;
        margin-left: -20%;
        min-width: 140%;
        max-width: 140%;
        width: 140%;
        z-index: 0;
    }
    @media (max-width: 1199px) {
        .Custom--0005 {
            min-width: 120%;
            max-width: 120%;
            width: 120%;
        }
    }
    @media (max-width: 1099px) {
        .Custom--0005 {
            min-width: 100%;
            max-width: 100%;
            width: 100%;
        }
    }
    @media (max-width: 578px) {
        .Custom--0005 {
            min-width: 150%;
            max-width: 150%;
            width: 150%;
        }
    }

    /* Custom: 0006 */
    .Custom--0006 {}
    @media (min-width: 1200px) {
        .Custom--0006 {
            margin-top: -175px;
        }
    }

    /* Custom: 0007 */
    .Custom--0007 {
        border-bottom: solid 1px rgba(0, 0, 0, 0.2);
        border-top: solid 1px rgba(0, 0, 0, 0.2);
        margin-bottom: 55px;
        min-height: 175px;
        line-height: 30px;
        font-weight: 600;
        font-size: 18px;
        padding: 20px 0;
        display: block;
        color: #2B2E34;
    }
        .Custom--0007 > small {
            letter-spacing: -0.5px;
            line-height: 26px;
            font-weight: 400;
            font-size: 14px;
            margin-top: 2px;
            color: #2B2E34;
            display: block;
        }
    @media (max-width: 1499px) {
        .Custom--0007 {
            line-height: 28px;
            font-size: 24px;
        }
            .Custom--0007 > small {
                line-height: 20px;
                font-size: 16px;
            }
    }

    /* Custom: 0008 */
    .Custom--0008 {
        margin: 0 -25px;
    }

    /* Custom: 0009 */
    .Custom--0009 {
        position: absolute;
        margin-top: -150px;
    }
    @media (max-width: 1199px) {
        .Custom--0009 {
            display: none;
        }
    }

    /* Custom: 0010 */
    .Custom--0010 {
        line-height: 36px;
        font-weight: 600;
        font-size: 30px;
        padding: 20px 0;
        display: block;
        color: #2B2E34;
    }
        .Custom--0010 > small {
            letter-spacing: -0.5px;
            line-height: 26px;
            font-weight: 400;
            font-size: 21px;
            margin-top: 2px;
            color: #2B2E34;
            display: block;
        }
    @media (max-width: 1499px) {
        .Custom--0010 {
            line-height: 28px;
            font-size: 24px;
        }
            .Custom--0010 > small {
                line-height: 20px;
                font-size: 16px;
            }
    }

.ingredient-charts {
    color: #fff;
    font-weight: bold;
}
.ingredient-charts > * {
    padding-bottom: 40px;
}

.ingredient-charts .chart-title {
    margin: 0 auto 20px;
    max-width: 255px;
}

.ingredient-charts .netsales-img {
    display: block;
    margin: 0 auto;
}

/*
@media (max-width: 1199px) and (min-width: 576px) { 
    .Custom--0004 {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .ingredient-charts {
        margin-left: -50%;
        max-width: 110%;
    }
}
*/

.ingredient-pie-wrapper {
    width: 180px;
    max-width: 100%;
    margin: 0 auto;
}
.ingredient-pie-wrap {
    position: relative;
    width: 100%;
    padding: 100% 0 0;
    margin: 0 0 15px;
}
.ingredient-pie-wrap canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ingredient-pie-legend {
    font-size: 10px;
    padding-left: 15px;
    width: 180px;
    max-width: 100%;
    margin: 0 auto;
}

.ingredient-pie-legend strong {
    font-size: 12px;
    display: block;
}

.ingredient-pie-legend .item {
    position: relative;
    padding-left: 15px;
}

.ingredient-pie-legend .item:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 10px;
    height: 10px;
    display: block;
    background: #fbde0d;
}

.ingredient-pie-legend .item:last-child:before {
    background: #642165;
}

.ingredient-bar-wrapper {
    position: relative;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
}
.ingredient-bar-wrap {
    position: relative;
    width: 100%;
    padding: 100% 0 0;
}
.ingredient-bar-wrap canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chart-sales-wrapper {
    
}
/*
.chart-sales-wrapper canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
*/