.mealz-skeleton-loader {
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  background: var(--mealz-ds-color-skeleton, #f7f7f7) no-repeat;
  border-radius: 4px;
  width: 100%;
  height: 20px;
  display: inline-block;
  margin-bottom: 10px;
  will-change: transform;
  animation: pulse 1.5s cubic-bezier(0.6, 0, 0.4, 1) infinite;
  animation-delay: 0.5s;

  &:after,
  &:before {
    box-sizing: border-box;
  }

  @media (min-width: 1024px) {
    user-select: none;
    cursor: wait;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
