.zent-placeholder-shape {
  background-color: #f2f2f2;
}

  .zent-placeholder-shape--animate {
    -webkit-animation: zent-placeholder 2s linear infinite;
            animation: zent-placeholder 2s linear infinite;
    background: -webkit-gradient(linear, left top, right top, from(rgba(227, 229, 229, 0.7)), color-stop(#e5e5e5), to(#f2f2f2));
    background: linear-gradient(to right, rgba(227, 229, 229, 0.7), #e5e5e5, #f2f2f2);
    background-size: 300% 300%;
  }
.zent-placeholder-text-row, .zent-placeholder-text-row-dashed .zent-placeholder-shape {
  width: 100%;
  height: 1em;
}
.zent-placeholder-text-row-dashed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.zent-placeholder-text-row-dashed-segment {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
.zent-placeholder-circle {
  border-radius: 50%;
}
@-webkit-keyframes zent-placeholder {
  0%, 100% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}
@keyframes zent-placeholder {
  0%, 100% {
    background-position: 0 50%;
  }

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