#__nuxt:empty {
  width: 100%;
  height: 50vh;
  height: 50dvh;
  position: relative;
}
#__nuxt:empty::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  height: 4px;
  width: 130px;
  --c: no-repeat linear-gradient(#fd6d14 0 0);
  background: var(--c), var(--c), #fff1eb;
  background-size: 60% 100%;
  animation:
    l16 3s infinite,
    s 300ms ease-in forwards;
  border-radius: 2px;
}
@keyframes l16 {
  0% {
    background-position:
      -150% 0,
      -150% 0;
  }
  66% {
    background-position:
      250% 0,
      -150% 0;
  }
  100% {
    background-position:
      250% 0,
      250% 0;
  }
}
@keyframes s {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
