.hide-with-opacity {
  transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
  opacity: 0;
}

.animation-pulse {
  animation-name: pulse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

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

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

@keyframes pulse {
  0% {transform: scale(1);}
  50% {transform: scale(1.1);}
  100% {transform: scale(1);}
}
