.priceContainer1 {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.productCheckbox {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.productCheckbox input[type="checkbox"] {
  display: none;
}

.productCheckbox .customCheckbox {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.productCheckbox input[type="checkbox"]:checked + .customCheckbox {
  background-color: #007bff;
  border-color: #007bff;
}

.productCheckbox input[type="checkbox"]:checked + .customCheckbox::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
