body.block-editing .nb-vertical-navigation-sticky-1{
    position: relative;
    top: 0;
}
.nb-vertical-navigation-sticky-1{
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    width: 50px;
    z-index: 1;
    background: var(--nb-color-gray-900);
    padding: 30px 0;
    overflow: auto;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
    &::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    ul{
        list-style-type: none;
        padding-left: 0;

        li{
            text-align: center;
            margin-bottom: 10px;
            position: relative;

            &.active:before{
                content: "";
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 0;
                height: 0;
                border-top: 6px solid transparent;
                border-bottom: 6px solid transparent;
                border-left: 8px solid var(--nb-color-white);
            }

            &.nb-dot a{
                font-size: 25px;
                top: -8px;
                position: relative;
            }
        }

        a{
            font-size: 12px;
            line-height: 20px;
            font-weight: var(--nb-font-semibold);
            color: var(--nb-color-white);
            display: block;
            text-align: center;

        }
    }
}

body:has(.nb-vertical-navigation-sticky-1) main{
    padding-right: 50px;
}

@media screen and (max-width: 1024px) {
    .nb-vertical-navigation-sticky-1{
        top: 56px;
    }
}