.hasBarre .priceMain {
  color: mediumseagreen;
  font-weight: 700;
}

.priceMain {
  color: white;
  font-weight: 700;
}

.priceBarre {
  margin-left: 1rem;
  font-weight: 700;
  /* text-decoration: line-through 3px; */
  color: white;
  position: relative;

  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    top: 50%;
    transform: translateY(-47%);
    background-color: indianred;
  }

  /* &::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: indianred;
  } */
}