:root{
    --nb-scroll-to-top-right-position: 30px;
    --nb-scroll-to-top-left-position: unset;
    --nb-scroll-to-top-bottom-position: 10%;
    --nb-scroll-to-top-top-position: unset;
    --nb-scroll-to-top-border-width: var(--nb-border-width);
    --nb-scroll-to-top-border-color: transparent;
    --nb-scroll-to-top-border-radius: 50%;
    --nb-scroll-to-top-bg-color: unset;
    --nb-scroll-to-top-opacity: 0;
    --nb-scroll-to-top-color: var(--nb-color-white);
    --nb-scroll-to-top-width: 50px;
    --nb-scroll-to-top-height: 50px;
}

body.block-editing .nb-scroll-to-top .nb-link{
    display: none;
}
body:not(.block-editing) .nb-scroll-to-top .nb-link{
    position: fixed;
    right: var(--nb-scroll-to-top-right-position);
    bottom: var(--nb-scroll-to-top-bottom-position);
    left: var(--nb-scroll-to-top-left-position);
    top: var(--nb-scroll-to-top-top-position);
    border: var(--nb-scroll-to-top-border-width) var(--nb-border-style) var(--nb-scroll-to-top-border-color);
    border-radius: var(--nb-scroll-to-top-border-radius);
    background: var(--nb-scroll-to-top-bg-color);
    width: var(--nb-scroll-to-top-width);
    height: var(--nb-scroll-to-top-height);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nb-scroll-to-top-color);
    z-index: 9999;
    opacity: var(--nb-scroll-to-top-opacity);
}