
#zoom-slider {
  font-family: Jost;
}
.no-padding {
	padding: 0 !important;
}
#zoom-slider {
	height: calc(100vh - 100px);
	margin-bottom: 100px;
	position: relative;
}

.zoom-slider {
	height: calc(100vh - 100px);
	width: 100vw;
	overflow: hidden;
	position: absolute;
}

#zoom-slider {
	-webkit-font-smoothing: antialiased;
}

.slide-holder {
	-moz-transition: transform 5.0s cubic-bezier(0, 0, 0.75, 1.0);
	-webkit-transition: transform 5.0s cubic-bezier(0, 0, 0.75, 1.0);
	transition: transform 5.0s cubic-bezier(0, 0, 0.75, 1.0);
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 100;
	opacity: 1;
	display: block;
	overflow: hidden;
}

.slide {
	width: 100%;
	height: calc(100vh - 100px);
	background-size: cover;
	background-position: center;
}

.slide-text {
	bottom: calc(10vw + 100px);
	right: 10vw;
	font-size: 6vw;
	color: white;
	text-shadow: 2px 2px 50px black;
	position: absolute;
	z-index: 200;
	font-family: Jost;
}
#thumbnails-container {
	width: calc(100vw - 150px);
	position: relative;
	top: calc(100vh - 100px);
	overflow-y: scroll;
	left: 50px;
}
#thumbnails {
	height: 100px;
	z-index: 100;
	overflow-y: scroll;
	display: inline-block;
	position: relative;
	width: max-content;
	left: 0;
}
#thumbnails .thumbnail {
	display: inline-block;
}
#thumbnails .thumbnail img {
	height: 100px;
	width: auto;
}
#thumbnails-left {
	height: 100px;
	z-index: 100;
	display: inline-block;
	position: absolute;
	bottom: 0;
	color: var(--bg);
	font-weight: 600;
	font-size: 50px;
	margin-left: 10px;
	margin-bottom: -110px;
}
#thumbnails-right {
	height: 100px;
	z-index: 100;
	display: inline-block;
	position: absolute;
	bottom: 0;
	color: var(--bg);
	font-weight: 600;
	font-size: 50px;
	margin-right: 20px;
	left: calc(100% - 90px);
	margin-bottom: -110px;
}
#thumbnails-left:hover, #thumbnails-right:hover, .thumbnail {
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.slide-text {
		bottom: 30vw;
		text-shadow: 2px 2px 5px black;
	}
}
