.btn.scrollUp {
    width: calc(0px + 100* var(--scale));
    height: calc(0px + 100* var(--scale));
    position: fixed;
    bottom: calc(0px + 100* var(--scale));
    right: calc(0px + 90* var(--scale));
    z-index: var(--scrollUp-z);
    opacity: 0;
    transform: translateY(100px);
}

.btn.scrollUp.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .btn.scrollUp {
        width: 40px;
        height: 40px;
        bottom: 100px;
    }
}