.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

.skeleton_text {
  max-width: 480px;
  width: 100%;
  height: 16px;
  border-radius: var(--sp4px);
}
.skeleton_text span {
  opacity: 0;
}

.skeleton_sub_text {
  max-width: 200px;
  width: 100%;
  height: 16px;
  border-radius: var(--sp4px);
}
.skeleton_sub_text span {
  opacity: 0;
}

.skeleton_div {
  width: 180px;
  height: 100%;
  border-radius: var(--sp16px);
}

.skeleton_cover {
  width: 100%;
  height: 100%;
}

.skeleton_account_profile {
  animation: skeleton-loading-o_none 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsla(200, 20%, 70%, 0.6);
  }
  100% {
    background-color: hsla(200, 20%, 95%, 0.6);
  }
}
@keyframes skeleton-loading-o_none {
  0% {
    background-color: hsl(200, 20%, 70%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}/*# sourceMappingURL=skeleton.css.map */