(function () {
    const themeLeftPanelElement = document.querySelector('.theme-left-panel');

    if (themeLeftPanelElement) {
        const root = document.documentElement;

        root.style = 'font-size: calc(1vw / 17);'
    }
})();