@charset "UTF-8";
:root {
  color-scheme: light dark;
}

.a-interscroller {
  position: relative;
  margin: 2rem auto;
  width: 90vw;
  height: calc(100vh - 3.25rem);
}
.a-interscroller::after, .a-interscroller::before {
  background-color: light-dark(black, white);
  color: light-dark(white, black);
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem;
  font-family: sans-serif;
  z-index: 1;
  font-size: 12px;
  text-transform: uppercase;
}
.a-interscroller::after {
  content: "Pubblicità";
  top: -1.5rem;
}
.a-interscroller::before {
  content: "Scrolla per continuare a leggere";
  bottom: -1.5rem;
}
@media screen and (min-width: 992px) {
  .a-interscroller {
    display: none;
  }
}
.a-interscroller__wrapper {
  position: absolute;
  width: 90vw;
  height: 100vh;
  clip: rect(0px 90vw calc(100vh - 3.25rem) 0px);
}
.a-interscroller__bg {
  position: fixed;
  height: 100%;
  top: 0;
  left: 50%;
  backface-visibility: hidden;
  transform: translate3d(-50%, 0, 0);
  object-fit: none;
}