.image-demo-action-item {
  height: 22px;
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: unset;
  background: unset;
  color: inherit;
  cursor: pointer;
  border-radius: 50%;
}

.image-demo-action-item:focus-visible {
  box-shadow: 0 0 0 2px var(--color-primary-light-3);
}

.image-demo-props table:nth-of-type(2) thead th:last-child,
.image-demo-props table:nth-of-type(3) thead th:last-child {
  width: 20%;
}

.image-demo-loader-animate {
  background: linear-gradient(
    -60deg,
    var(--color-fill-2) 25%,
    var(--color-neutral-3) 40%,
    var(--color-fill-3) 55%
  );
  background-size: 400% 100%;
  animation: image-demo-loader-circle 1.5s cubic-bezier(0.34, 0.69, 0.1, 1)
    infinite;
}

@keyframes image-demo-loader-circle {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.image-demo-wrapper {
  padding: 100px 20px;
  width: 100%;
  height: 300px;
  box-sizing: border-box;
  background-color: var(--color-fill-1);
  overflow: auto;
  align-items: center;
}
