.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.popup-content h2 {
  font-family: "Montserrat", sans-serif;
  color: #009999;
  margin-top: 40px;
}



.number-input {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.number-input input {
  width: 70px;
  text-align: center;
  border: none;
  border-radius: 0;
  padding: 5px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 25px;
  color: #009999;
}

.number-input button {
  width: 40px;
  height: 40px;
  background-color: #009999;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  padding-right: 15px; /* Décalage vers la gauche */
}


.input-group:nth-child(2) {
  margin-top: 40px;
}

.input-group label {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}



.popup button {
  margin-top: 10px;
  background-color: #009999;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.popup button:focus {
  outline: none;
}

.popup button:active {
  transform: scale(0.98);
}

.popup button:not(:last-child) {
  margin-right: 10px;
}

.popup-content {
  position: relative;
	 max-width: 500px;
  width: 90%;
}

.popup-close-button {
  margin-top: 10px;
  background-color: transparent;
  color: #009999;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.popup-close:before,
.popup-close:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 4px;
  background-color: #009999;
}

.popup-close:before {
  transform: rotate(45deg) translate(2px, 0);
}

.popup-close:after {
  transform: rotate(-45deg) translate(2px, 0);
}



.popup-close-button.popup-close {
  background-color: transparent;
  color: #009999;
  border: none;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
}

.number-input .increment,
.number-input .decrement {
  width: 60px;
  height: 60px;
  background-color: #009999;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
}

#calcul-taxe-form button[type="submit"] {
  font-family: "Montserrat", sans-serif;
  margin-top: 25px;
  margin-bottom: 30px; /* Ajoutez cette ligne pour la marge inférieure */
  font-weight: bold;
  font-size: 18px;
}


.resume-line {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  text-align: center;
  margin-bottom: 25px;
}

.total-line {
  color: #009999;
  font-weight: bold;
}
