body, html {
    overflow-x : clip !important;
}

.dp-header__text--legalmention {
    color: #787474;
    font-size: 11px;
    font-family: var(--FONT-GOTHAM-BOOK);

    margin-top: 16px;
}

/* desktop */
@media (min-width: 1113px) {
    .dp-product__ingredient[data-ingredient="turmeric"] .dp-product__ingredient-name {
        left: 55% !important;
        font-size: 10px;
        white-space: nowrap;
    }

    .dp-product__ingredient[data-ingredient="kangaroo-flower"] .dp-product__ingredient-name {
        font-size: 10px;
    }
}
/* Mobile */
@media (max-width: 480px) {
    .dp-product__ingredient[data-ingredient="turmeric"] .dp-product__ingredient-name {
        width: 11px;
        left: 42% !important;
        top: 5% !important;
    }

    .dp-product__ingredient[data-ingredient="kangaroo-flower"] .dp-product__ingredient-name {
        top: 64% !important;
    }
}
/* Tablet Portrait */
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 2) {
    .dp-product__ingredient[data-ingredient="turmeric"] .dp-product__ingredient-name {
        top: 5% !important;
        left: 50% !important;
        font-size: 10px;
    }

    .dp-product__ingredient[data-ingredient="kangaroo-flower"] .dp-product__ingredient-name {
        font-size: 10px;
        top:65% !important;
    }
}
/* Tablet Landscape */
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio: 2) {
    .dp-product__ingredient[data-ingredient="turmeric"] .dp-product__ingredient-name {
        left: 55% !important;
        font-size: 10px;
        white-space: nowrap;
    }

    .dp-product__ingredient[data-ingredient="kangaroo-flower"] .dp-product__ingredient-name {
        font-size: 10px;
    }
}