.zb-anchor {
	max-width: 82%;
	margin: auto;
	margin-right: 9%;
}

.zb-anchors-nav {
	position: sticky;
	float: left;
	top: 8rem;
	margin-left: -20%;
	max-width: 10%;
	text-align: right;
	transition: margin-left .3s;
	text-align: left;
    counter-reset: indendation;
}
.zb-anchors:hover >.zb-anchors-nav {
	margin-left: 0;
}
.zb-anchors-nav > li {
    counter-increment: indendation;
	cursor: pointer;
}
.zb-anchors-nav > li * {
    opacity: .4;
    font-size: .7rem;
    transition: opacity .3s, font-size .3s;
}
.zb-anchors-nav > li:hover * {
    font-size: .8rem;
}
.zb-anchors-nav > li.zbr-current * {
    opacity: 1;
    font-size: .8rem;
}
.zb-anchors-nav > li > span {
    display: flex;
    align-items: center;
}
.zb-anchors-nav > li > span:before {
    content: counter(indendation, decimal-leading-zero);
    display: inline-block;
    height: 100%;
    font-size: 1.2rem;
    font-family: var(--zb-font);
    margin-right: .3rem;
}
.zb-anchors-nav > li + li:before {
	content: "";
	display: block;
	height: 1.3rem;
	width: 2px;
	margin: 0 .75rem .7rem;
	background: var(--zb-dark);
}


@media screen and (max-width: 750px) {
	html .zb-anchors-nav {
		display: none;
	}
	.zb-anchor {
		max-width: unset;
		margin: auto;
	}
}