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