@charset "UTF-8";
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; }

.spinner-word {
  display: flex;
  justify-content: center; }

.ltr-wrap {
  position: relative;
  display: inline-block;
  margin-right: 3px;
  animation: jinger-bounce 2s ease-in-out infinite; }
  .ltr-wrap:last-child {
    margin-right: 0; }

@keyframes jinger-bounce {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-12px); } }
.ltr-outline {
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: transparent;
  -webkit-text-stroke: 1.5px #36a1d9;
  display: block;
  opacity: 0.3; }

.ltr-filled {
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: jinger-fill 2s ease-in-out infinite; }

@keyframes jinger-fill {
  0% {
    clip-path: inset(0 100% 0 0); }
  /* 全隱藏 */
  50% {
    clip-path: inset(0 0% 0 0); }
  /* 全顯示 */
  100% {
    clip-path: inset(0 100% 0 0); }
  /* 從右收回 */ }
.line-track {
  position: relative;
  height: 2px;
  width: 100%;
  background: rgba(28, 125, 186, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px; }

.line-fill {
  position: absolute;
  top: 0;
  left: -45%;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, #36a1d9 30%, #36a1d9 70%, transparent);
  animation: jinger-sweep 2.8s ease-in-out infinite; }

@keyframes jinger-sweep {
  0% {
    left: -45%; }
  100% {
    left: 110%; } }
