.cp-imgtxt {
  animation: linear 1s placeHolderShimmer infinite;
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
  width: 100%;
  height: 100%;
  -webkit-clip-path: url(#cp-imgtxt);
  clip-path: url(#cp-imgtxt);
  transform: translateZ(0);
  height: 76px;
  margin-bottom: 5px;
}

.cp-imgtxt-sm {
  animation: linear 1s placeHolderShimmer infinite;
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
  width: 100%;
  height: 100%;
  -webkit-clip-path: url(#cp-imgtxt-sm);
  clip-path: url(#cp-imgtxt-sm);
  transform: translateZ(0);
  height: 40px;
  margin-bottom: 5px;
  display: inline-block;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
