.image-component-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.image-component-container .image-component {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
}
.image-component-container .image-component-default {
  background-color: var(--light1-background-color);
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.image-component-container .image-component-holder {
  display: block;
  overflow: hidden;
  
}
.image-component-container .image-component-holder img {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  user-select: none;
  width: 100%;
  border-radius: 10px;
}

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

.image-component-loader {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
  height: 96px;
  position: relative;
}



