html {
    scroll-behavior: smooth;
}

.jump-top {
    width: 45px;
    height: 45px;
    padding: 10px;
    position: fixed;
    bottom: 0;
    border-radius: 0;
    display: none;
    cursor: pointer;
    right: calc(((100% - var(--page-max-width)) / 2) - 22px);
}
.jump-top::before {
    content: url(/typo3conf/ext/ez_sitepackage/Resources/Public/Icons/arrow_up_white.svg);
}
@media (max-width: 1050px) {
    .jump-top {
        display: none !important;
    }
}
