body, html {
    overflow-x : clip !important;
}

.legal-mention {
    position: absolute;
    left: 40px;
    bottom: 15px    ;
    color: #fff;
}
/* desktop */
@media (min-width: 1113px) {
}
/* Mobile */
@media (max-width: 480px) {
    .dsf__page .dsf__push-text {
        font-size: calc( 12 * var(--ratioPush));
    }
    .legal-mention {
        bottom: 10px;
    }
}
/* 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) {
    .legal-mention {
        left: 26px;
        bottom: 10px;
    }
}
/* 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) {
    .legal-mention {
        left: 37px;
        bottom: 15px;
    }
}