/*Curseur*/
.switch-achat-vente {
  position: relative;
  display: inline-block;
  width: 44px;      /* avant 52 */
  height: 22px;     /* avant 26 */
}

.switch-achat-vente input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-achat-vente .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #007bff; /* Bleu = Vente directe */
  border-radius: 22px;
  transition: .25s;
}

.switch-achat-vente .slider:before {
  content: "";
  position: absolute;
  height: 16px;     /* avant 20 */
  width: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .25s;
}

/* Etat Vente Sogam */
.switch-achat-vente input:checked + .slider {
  background-color: #ff7f00;
}

.switch-achat-vente input:checked + .slider:before {
  transform: translateX(22px);
}

/* Affichage price */
.blc-list-smart .price-line-nowrap {
  white-space: nowrap;
}
.blc-list-smart {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.blc-list-smart > .prodcut-price {
  flex: 1 1 auto;
  min-width: 0;
}

.blc-list-smart > .prodcut-add-cart {
  flex: 0 0 auto;
  margin-left: auto;
}