html body .skeleton {
  position: relative;
  border: none !important;
  border-radius: 8px !important;
  z-index: 1 !important;
  color: rgba(0, 0, 0, 0) !important;
  overflow: hidden !important;
}
html body .skeleton * {
  opacity: 0 !important;
}
html body .skeleton *:before,
html body .skeleton *:after {
  opacity: 0 !important;
}
html body .skeleton:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1 !important;
  background-image: none !important;
  background-color: #ddd !important;
  border-radius: 8px !important;
  transform: translate(0) !important;
}
html body .skeleton:after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 2 !important;
  background: linear-gradient(90deg, #ddd, #e8e8e8, #ddd) !important;
  animation: shine 1.5s infinite !important;
  border-radius: 8px;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
