@mixin ghost-cell-styles(
  $datatable-ghost-cell-container-background,
  $datatable-ghost-cell-strip-background,
  $datatable-ghost-cell-strip-background-image,
  $datatable-ghost-cell-strip-radius,
  $datatable-ghost-cell-animation-duration
) {
  .ghost-cell-container {
    background: $datatable-ghost-cell-container-background;
  }

  .ghost-cell-strip {
    background: $datatable-ghost-cell-strip-background;
    background-image: $datatable-ghost-cell-strip-background-image;
    border-radius: $datatable-ghost-cell-strip-radius;
    animation-duration: $datatable-ghost-cell-animation-duration;
  }
}
