:root {
  --animation-in: visibility 0s linear 300ms, opacity 300ms;
  --animation-out: visibility 0s linear 0s, opacity 300ms;
  --dead-zone-width: 0px;
}

body, html {
  background-color: #e4e4e4;
  font-family: sans-serif;
  margin: 0;
  overscroll-behavior: none;
  padding: 0;
  position: relative;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.scrollScrub {
  align-items: flex-start;
  display: flex;
  height: 1080px;
  justify-content: center;
  transform: translate3d(0, 0, 0);
  width: 1920px;
}

.scrollScrub__overlay {
  height: 1080px;
  left: 50%;
  margin: auto;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--animation-in);
  visibility: hidden;
  --cover-width: 0px;
  width: 1920px;
}

.scrollScrub video {
  height: 1080px;
  pointer-events: none;
  touch-action: none;
  width: 1920px;
}

.scrollScrub__wrapper {
  align-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  justify-content: flex-start;
  overflow: hidden;
  position: sticky;
  top: 0;
  width: 100%;
}

.scrollScrub__video {
  height: 100%;
  object-fit: contain;
  position: absolute;
  width: 100%;
}

.navigationLogo {
  left: 3rem;
  opacity: 0;
  position: fixed;
  top: 3rem;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

.navigationLogo img {
  pointer-events: none;
  touch-action: none;
}

.blocker {
  height: 100%;
  position: fixed;
  top: 0;
  touch-action: none;
  width: var(--dead-zone-width);
  z-index: 990;
}

.blocker.-start {
  left: 0;
}

.blocker.-end {
  right: 0;
}

.scrollStop {
  height: 150px;
  --zone-left: 0px;
  left: var(--zone-left);
  opacity: 0;
  position: fixed;
  --zone-top: 0px;
  top: var(--zone-top);
  transition: var(--animation-in);
  visibility: hidden;
  width: 360px;
  z-index: 990;
}

.screensaver {
  display: block;
  height: 1080px;
  opacity: 1;
  transition: opacity .1s ease;
  width: 1920px;
  z-index: 1010;
}

.-show {
  opacity: 1 !important;
  transition: var(--animation-out) !important;
  visibility: visible !important;
}