
.jump-list .fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.15);
	background-color: #f5f6f7;

}
.admin-bar .jump-list .fixed {
	top: 32px;
}
.jump-list .anchor-links-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.jump-list .fixed.anchor-links-wrapper {
	margin: 0;
}
.jump-list .anchor-links .links {
	display: flex;
	flex-direction: column;
	padding: 1.75rem 1.75rem;
	text-align: center;
	background-color: #f5f6f7;
	max-width: 550px;
	border-radius: 1rem;
	box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.15);
}
.jump-list .fixed .anchor-links .links {
	max-width: 100%;
	border-radius: 0;
	font-size: 16px;
	box-shadow: none;
	background: transparent;
	width: 100%;
	justify-content: flex-start;
	position: relative;
}
.jump-list .fixed .anchor-links .links {
	flex-wrap: nowrap;
	flex-direction: row;
	overflow-x: auto;
	padding: 20px 0 20px 2rem;
	display: flex;
}
.jump-list .fixed .anchor-links::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	width: 2rem;
	height: 100%;
	top: 0;
	background: linear-gradient(90deg, rgba(245,246,247,0) 0%, rgba(245,246,247,1) 100%);
	z-index: 1;
}
.jump-list .fixed .anchor-links {
	position: relative;
}
.jump-list .fixed .anchor-links::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 2rem;
	height: 100%;
	top: 0;
	background: linear-gradient(90deg, rgba(245,246,247,1) 0%, rgba(245,246,247,0) 100%);
	z-index: 2;
}
.jump-list .anchor-links .links > * {
	margin-bottom: .5rem;
}
.jump-list .anchor-links .links > *:last-child {
	margin-bottom: 0;
}
.jump-list .fixed .anchor-links .links > * {
	flex: 0 0 auto;
	margin-right: .75rem;
	margin-bottom: 0;
}
.jump-list .anchor-links a {
	color: #4925C7;
	font-weight: 700;
}
.jump-list .label {
	font-weight: 700;
	color: #2A4362;
	font-size: 15px;
}

@media (min-width: 576px){
	.jump-list .fixed .anchor-links {
		max-width: 540px;
	}
}
@media (min-width: 768px){
	.jump-list .fixed .anchor-links {
		max-width: 720px;
	}
}
@media (min-width: 992px){
	.jump-list .fixed .anchor-links {
		max-width: 960px;
	}
}
@media (min-width: 1200px){
	.jump-list .fixed .anchor-links {
		max-width: 1140px;
	}
}