.hasBarre .priceMain,
.isUserPrice .priceMain {
  color: mediumseagreen;
  font-weight: 700;
}

.priceMain {
  color: white;
  font-weight: 700;
}

.priceBarre {
  margin-left: 1rem;
  font-weight: 700;
  color: white;
  position: relative;

  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    top: 50%;
    transform: translateY(-47%);
    background-color: indianred;
  }
}