.MYUI-SkeletonButton {
  color: rgba(0, 0, 0, 0);
  width: 100%;
  width: max-content;
  border-radius: var(--border_radius_optimaze);
  animation: SkeletonButton 1.5s linear infinite alternate;
}

.MYUI-SkeletonButton__in {
  opacity: 0;
}

@keyframes SkeletonButton {
  0% {
    background: rgba(var(--background_secondary));
  }

  100% {
    background: rgba(var(--background_primary_2));
  }
}