* {
  -webkit-font-smoothing: antialiased;
}

.laurel,
.lauren * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


html {
  font-family: 'HelveticaNeueLT', Helvetica;
}


.swiper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  cursor: e-resize;
}

.swiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.fade {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.fade:nth-child(1) {
  animation-delay: 50ms;
}

.fade:nth-child(2) {
  animation-delay: 100ms;
}

.fade:nth-child(3) {
  animation-delay: 150ms;
}

.fade:nth-child(4) {
  animation-delay: 200ms;
}

.fade:nth-child(5) {
  animation-delay: 250ms;
}

.fade:nth-child(6) {
  animation-delay: 300ms;
}

.fade:nth-child(7) {
  animation-delay: 350ms;
}

.fade:nth-child(8) {
  animation-delay: 400ms;
}

.fade:nth-child(9) {
  animation-delay: 450ms;
}

.fade:nth-child(10) {
  animation-delay: 500ms;
}

.fade:nth-child(11) {
  animation-delay: 550ms;
}

.fade:nth-child(12) {
  animation-delay: 600ms;
}

.fade:nth-child(11) {
  animation-delay: 600ms;
}

.fade:nth-child(12) {
  animation-delay: 650ms;
}


@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

#loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
  border-radius: 50%;
  border: 2px solid white;
  border-top-color: #000;
  animation: spinner 600ms linear infinite;
}