section {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 100px 0;
}

h1 {
  font-size: 46px;
  text-transform: none;
  font-weight: bolder;
  text-align: center;
}
h2 {
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 18px;
  text-align: center;
  padding-bottom: 20px;
}
h2 span:not(.soldout) {
  font-size: 22px;
}
h2.qty {
  margin-top: 20px;
}
h2 .soldout {
  color: #f00;
  text-decoration: line-through;
}
.center {
  text-align: center;
}
.limit {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
  margin: 60px 5%;
}
.promos__block {
  display: grid;
  grid-template-columns: 1fr;
  width: 70%;
  margin-top: 60px;
  gap: 20px;
}
.promos__infos {
  border: 1px solid var(--vert);
  border-radius: 35px;
  background-color: #000;
  padding: 40px 20px;
}
.promos__infos__free {
  color: var(--blanc);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
.promos__infos__free span {
  font-size: 42px;
}
.promos__infos .big {
  font-size: 30px;
}
.promos__infos .price {
  font-size: 42px;
}
.promos__infos .alignRight {
  text-align: center;
}
.promos__infos .cart {
  font-size: .8em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promos__infos .cart img {
  margin-bottom: 15px;
}
.promos__price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-weight: bold;
}
.promos__price:first-child {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--vert);
}
.hide {
  display: none;
}
label {
  color: var(--blanc);
  font-weight: bold;
}
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 5%;
  max-width: 100%;
}
.radio_container {
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  margin: 0px;
  padding: 0px;
}
.radio_container > input[type="checkbox"],
.radio_container > input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.total {
  margin: 20px 0 0 0;
}
.totalApayer {
  font-size: 20px;
}
.btn-green{
  max-width: 100%;
}
.radio_container > input:checked ~ .checkmark {
  background-color: var(--vert);
}
.small {
  font-size: 14px;
  margin-top: 5px;
}
.checkmark {
  height: 25px;
  width: 25px;
  display: block;
  background-color: white;
}
.checkmark--round {
  border-radius: 25px;
}

.text {
  max-width: 85%;
}
fieldset {
  border: 0;
}
fieldset legend {
  color: var(--blanc);
  font-weight: bold;
  margin-bottom: 10px;
}
.qte_container {
  display: flex;
  margin-bottom: 10px;
  margin-top: 5px;
  align-items: center;
}
.qte_container span {
  margin-left: 10px;
}
input[type=number] {
  width: 40px;
  min-width: 20px;
  padding: 6px 10px;
  font-size: 16px;
  font-weight: bold;
  color: var(--vert);
  border: 0;
  -moz-appearance: textfield;
  text-align: center;
}
input.certificatCadeau{
  width: 100px;
  padding: 2px 10px;
  min-width: 100px;
}
input.certificatCadeauNom{
  width: 250px;
  padding: 2px 10px;
  min-width: 250px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.button-minus,
.button-plus {
  font-weight: bold;
  height: 30px;
  padding: 0;
  width: 30px !important;
  min-width: 30px !important;
  position: relative;
  font-size: 1.1em;
  border: 0;
  background-color: var(--vert) !important;
  padding: 0 !important;
}
.col-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.textMembre, .textMembreQty{
  display: grid;
  grid-template-columns: 4fr 1fr;
  width:300px;
}
.textMembreQty{
  width:230px;
}
.prix{
  text-align: right;
}
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 67px;
  }
  h2 {
    font-size: 20px;
  }
  h2 span:not(.soldout) {
    font-size: 24px;
  }
  .promos__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .promos__block.soldout {
    grid-template-columns: 1fr;
    width: 30%;
  }
  .promos__price {
    flex-direction: row;
    gap: 20px;
  }
  .promos__price:first-child {
    margin-bottom: 30px;
  }
  .promos .alignRight {
    text-align: right;
  }
  .col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .textMembre{
    width:430px;
  }
  .textMembreQty{
    width:330px;
  }
}
