

[x-cloak] { display: none !important; }

html, body {
  scroll-behavior: smooth;
}

.ske, .forced-ske {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  border-radius: 4px;
  border: 1px solid rgb(230, 230, 230);
}

.ske::after, .ske::before, .forced-ske::after, .forced-ske::before {
  position: absolute;
  display: block;
  top: 0;
  height: 100%;
  opacity: 1;
  transition-duration: .150s;
}

.ske::after, .forced-ske::after {
  z-index: 10;
  width: 100%;
  overflow: hidden;
  background-color: #F2F2F2;
  content: "";
}

.ske::before, .forced-ske::before {
  z-index: 20;
  overflow: hidden;

  content: '';
  left: -550px;
  width: 550px;
  background: linear-gradient(to right, transparent 0%, #9CA3AF 50%, transparent 100%);
  animation: SkeletonAnimation 1.8s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  animation-play-state: running;
}

.photo-ske, .photo-ske::before, .photo-ske::after {
  border-radius: 8px;
  overflow: hidden;
}

.disable-ske .ske::after, .disable-ske.ske::after, .disable-ske .ske::before, .disable-ske.ske::before {
  transition-duration: .15s;
  opacity: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  visibility: hidden !important;
  animation-play-state: paused;
}

.disable-ske .ske {
  border: 1px solid transparent;
}

@keyframes SkeletonAnimation {
  from {
    left: -550px;
  }
  to   {
    left: 100%;
  }
}

