I am facing a problem with freewall.js.
I want to set the position of a specific element at top-right, but the only options i found in the docs are for top-left positioning.
<div class="freewall">
    <div class="freewall-item js-frontpage-teaser-slider frontpage-teaser-slider">
        {{ render_esi(controller( "sf.fnma.controller.frontpage:renderAdBanner")) }}
    </div>
    <div class="freewall-item mx-auto sidebar-banner" data-fixPos="top-right">
        {% include 'teaser/frontpage.html.twig' %}
    </div>
        {{ render_esi(controller( "sf.fnma.controller.frontpage:renderEvents")) }}
        {{ render_esi(controller("sf.fnma.controller.frontpage:renderNews")) }}
    </div>
</div>
I have tried the fixPos() method and the data attributes data-positon and data-fixPos, but i'm not able to achieve the result i want.