#scroll-slider {
	opacity: 0;
	position: fixed;
	top: 96px;
	z-index: -99;
	left: 0;
	right: 0;
	transition: .4s linear;
	transform: translateY(-100px);
}

.fixed-header+#scroll-slider {	
	opacity: 1;
	z-index: 99;
	transform: translateY(0);
}


.collections-menu {
	position: relative;
	padding: 0 80px;
}

.collections-menu-outer {
	max-width: 100%;
  margin: 0 auto;
  display: flex;
  overflow-x: visible;
  overflow-y: hidden;
	background: #fff;
}

.place-holder {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #eee;
}

.collection-image {
	width: 50px;
  height: 50px;
	margin: 0 auto;
	margin-bottom: 10px;
	position: relative;
}

.collection-image:after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 54px;
	height: 54px;
	border: 1px solid #4c4c4c;
	top: 50%;
	left: 50%;
	border-radius: 100%;
	transform: translate(-50%,-50%) scale(1.1);
	margin-top: 0;
	opacity: 0;
	transition: all .2s ease-in-out;
}

.scroll-slider__inner a.active .collection-image:after,
.scroll-slider__inner:hover .collection-image:after {
	opacity: 1;
	transform: translate(-50%,-50%) scale(1);
}

.scroll-slider__inner a.active .collection-image:after {
	border-width: 2px;
}

.place-holder img {
	display: block;
}

.scroll-slider__inner {
	flex: 0 0 10%;
	min-width: 110px;
	margin: 20px 0;
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
}

.paddle {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	height: 100%;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 3%;
	background: #fff;
}

.lefty {
  left: 0;
}
.lefty svg {
	transform: translateY(-50%) rotate(90deg);
}
.righty{
  right: 0;
}
.righty svg {
	transform: translateY(-50%) rotate(-90deg);
}



