.skeleton {
  position: relative;
}

.skeleton::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  background-size: 200% 100%;
  animation: shine 1.5s linear infinite;
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}

.blur-up {
  filter: blur(10px);
  transition: filter 1s ease-out;
}

.blur-up.loaded {
  filter: blur(0);
}
.headshot-skeleton {
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}
.headshot-skeleton img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.vendor-headshot-skeleton {
  width: 80px;
  height: 80px;
}
.reviewer-headshot-skeleton {
  width: 60px;
  height: 60px;
}
