#legacy{
	width:100%;
	height:calc(100vh - 56px);
	position:relative;
	min-height:760px;
}
#LegacySlider{
	position:absolute;
	left:50%;
	top:50%;
	height:100%;
	width:100%;
	transform:translate(-50%,-50%);
	background-color:var(--lightGrey);
	overflow:hidden;
}
#LS--Items{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	width:100%;
	height:100%;
}
.LS--Item{
	position:absolute;
	left:0px;
	top:0px;
	height:100%;
	width:100%;
	overflow:hidden;
}
.LS--ItemContent{
	height:100%;
	width:100vw;
	position:absolute;
	left:50vw;
	top:50%;
	transform:translate(-50%,-50%);
}
.LS--ItemBackground{
	position:absolute;
	width:100%;
	height:100%;
	position:absolute;
	left:0px;
	top:0px;
	background-size:cover;
	background-position:bottom;
}
.LS--ItemImage{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	height:100%;
	width:100%;
	background-size:auto 142%;
	background-position:center bottom;
	background-repeat:no-repeat;
}
.LS--Item.__lower{
	z-index:1;
}
.LS--Item.__upper{
	width:50%;
	z-index:2;
}
#LS--Overground{
	position:absolute;
	top:50%;
	left:50%;
	width:100%;
	height:100%;
	z-index:3;
	transform:translate(-50%,-50%);
	box-sizing:border-box;
	padding:92px 0;
}
#LS--Title{}
#LS--Title h2{
	font:var(--display);
	font-size:4.2em;
	text-align:center;
}
#LS--Controls{
	height:72px;
	width:100%;
	position:absolute;
	left:50%;
	bottom:10%;
	transform:translate(-50%,0);
}
.__grip{
	position:absolute;
	left:50%;
	top:50%;
	width:56px;
	height:56px;
	border-radius:50%;
	background-color:rgba(255,255,255,.3);
	backdrop-filter:blur(3px);
	transform:translate(-50%,-50%);
	z-index:0;
	color:#fff;
}
.__grip::before{
	content:"";
	height:80%;
	width:80%;
	border-radius:50%;
	background-color:rgba(255,255,255,.2);
	display:block;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.__grip::after{
	content:"";
	height:10px;
	width:10px;
	display:block;
	position:absolute;
	left:50%;
	top:50%;
	border-radius:50%;
	box-sizing:border-box;
	border:2px solid currentColor;
	transform:translate(-50%,-50%);
}
.__arrowIcon{
	height:24px;
	width:24px;
	position:absolute;
	top:50%;
	transform:translateY(-50%) scale(.4);
}
.__arrowIcon::before{
	content:"";
	height:3px;
	width:16px;
	background-color:currentColor;
	border-radius:1px;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.__arrowIcon::after{
	content:"";
	display:block;
	height:12px;
	width:12px;
	border-top:3px solid currentColor;
	border-right:3px solid currentColor;
	position:absolute;
	left:68%;
	top:50%;
	box-sizing:border-box;
	transform:translate(-50%,-50%) rotate(45deg);
	border-radius:1px;
}
.__pointLeft{
	transform:translateY(-50%) scale(.6) rotate(-180deg);
}
.__pointRight{
	transform:translateY(-50%) scale(.6) rotate(0deg);
}

.__grip .__pointLeft{
	left:4px;
}
.__grip .__pointRight{
	right:4px
}
.__handle{
	-webkit-appearance: none;
	width:100%;
	height:56px;
	background:rgba(255,255,255,0);
	outline:none;
	padding:0px;
	box-sizing:border-box;
	color:transparent;
	margin:0;
	position:absolute;
	left:0px;
	top:50%;
	z-index:3;
	transform:translateY(-50%);
}
.__handle::-webkit-slider-thumb
{
	-webkit-appearance: none;
	appearance: none;
	width: 56px;
	height: 56px;
	background: transparent;
	cursor: pointer;
	border-radius: 50%;
	background:rgba(255,255,255,0);
	margin-top: 0px; /* Align thumb vertically */
	margin-left: 0;
	box-shadow:0px 0px 0px rgba(0,0,0,0);
	opacity:0;
}
.__handle::-moz-range-thumb{
	-webkit-appearance: none;
	appearance: none;
	width: 56px;
	height: 56px;
	background: transparent;
	cursor: pointer;
	border-radius: 50%;
	background:rgba(255,255,255,0);
	margin-top: 0; /* Align thumb vertically */
	margin-left: 0;
}
.__handle::-ms-thumb{
	-webkit-appearance: none;
	appearance: none;
	width: 56px;
	height: 56px;
	background: transparent;
	cursor: pointer;
	border-radius: 50%;
	background:rgba(255,255,255,0);
	margin-top: 0; /* Align thumb vertically */
	margin-left: 0;
}
.__handle::-webkit-slider-runnable-track{
	background:transparent;
}
.__handle::-moz-range-track{
	background:transparent;
}
.__handle::-ms-track{
	background:transparent;
}
.__handle::-ms-fill-lower{
	background:transparent;
}
.__handle::-ms-fill-upper{
	background:transparent;
}

@media only screen and (max-width: 1024px) {
	#LS--Overground{
		padding:32px 0;
	}
}
@media only screen and (max-width: 600px) {
	#LS--Title h2{
		font-size:2.6em;
	}
}


