.product-mockup {
  display: flex;
  justify-content: center;
  width: 100% !important;
}

.product-mockup .product-img {
  width: 70px;
  height: 70px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
}

.product-mockup .product-img img {
  width: 100%;
}

.product-mockup .product-detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-mockup .product-detail .product-name {
  font-size: 14px;
}

.product-progress .progress-message {
  font-size: 11px;
  line-height: 1.6;
  font-weight: bold;
  color: #6558f5;
}

.product-progress .progress-bar {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 2px;
  background-color: #1aae9f;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.product-progress .progress-bar .progress-indicator {
  position: absolute;
  top: 0px;
  left: 10%;
  width: 20%;
  height: calc(100% - 1px);
  background-color: #6558f5;
  animation-name: breathingIndicator;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  /* animation-timing-function: ease-in-out; */
}

@keyframes breathingIndicator {
  0% {width: 20%;}
  50% {width: 50%;}
  100% {width: 20%;}
}