.ph-item {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  direction: ltr;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.ph-item,
.ph-item *,
.ph-item :after,
.ph-item :before {
  box-sizing: border-box;
}
.ph-item:before {
  -webkit-animation: ph-animation 0.8s linear infinite;
  animation: ph-animation 0.8s linear infinite;
  background: linear-gradient(
      90deg,
      hsla(0, 0%, 100%, 0) 46%,
      hsla(0, 0%, 100%, 0.35) 50%,
      hsla(0, 0%, 100%, 0) 54%
    )
    50% 50%;
  bottom: 0;
  content: " ";
  left: 50%;
  margin-left: -250%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 500%;
  z-index: 1;
}
.ph-item > * {
  display: flex;
  flex: 1 1 auto;
  flex-flow: column;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
.ph-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: -7.5px;
}
.ph-row div {
  background-color: #ced4da;
  height: 10px;
  margin-top: 7.5px;
}
.ph-row .title,
.ph-row.title div {
  height: 15px;
}
.ph-row .big,
.ph-row.big div {
  height: 20px;
}
.ph-row .button,
.ph-row.button div {
  height: 25px;
}
.ph-row .empty {
  background-color: hsla(0, 0%, 100%, 0);
}
.ph-col-1 {
  flex: 0 0 8.33333333333%;
}
.ph-col-2 {
  flex: 0 0 16.6666666667%;
}
.ph-col-3 {
  flex: 0 0 25%;
}
.ph-col-4 {
  flex: 0 0 33.3333333333%;
}
.ph-col-5 {
  flex: 0 0 41.6666666667%;
}
.ph-col-6 {
  flex: 0 0 50%;
}
.ph-col-7 {
  flex: 0 0 58.3333333333%;
}
.ph-col-8 {
  flex: 0 0 66.6666666667%;
}
.ph-col-9{
  flex: 0 0 75%;
}
.ph-col-10 {
  flex: 0 0 83.3333333333%;
}
.ph-col-11 {
  flex: 0 0 91.6666666667%;
}
.ph-col-12 {
  flex: 0 0 100%;
}
[class*="ph-col"] {
  direction: ltr;
}
[class*="ph-col"] > * + .ph-row {
  margin-top: 0;
}
[class*="ph-col"] > * + * {
  margin-top: 7.5px;
}
.ph-avatar {
  background-color: #ced4da;
  border-radius: 50%;
  min-width: 60px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.ph-avatar:before {
  content: " ";
  display: block;
  padding-top: 100%;
}
.ph-picture {
  background-color: #ced4da;
  height: 140px;
  width: 100%;
}
.ph-certificate {
  background-color: #ced4da;
  height: 540px;
  width: 100%;
}

@media (max-width:575.98px) {
  .ph-row .big,
  .ph-row.big div {
    height: 14px;
  }
  .ph-row .title,
  .ph-row.title div {
    height: 12px;
  }
  .ph-row .button,
  .ph-row.button div {
    height: 16px;
  }
  .ph-picture {
    height: 90px;
  }
  .ph-certificate {
    height: 350px;
  }
}

@-webkit-keyframes ph-animation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }
  to {
    transform: translate3d(30%, 0, 0);
  }
}
@keyframes ph-animation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }
  to {
    transform: translate3d(30%, 0, 0);
  }
}
