/* Style de la pop-up */
.pop_up {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 100%;
  /* max-width: 500px; */
  background-color: white;
  padding: 20px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); */
  /*border-radius: 10px; */
}

.popup_overlay {
  display: none;
  position: fixed;
  z-index: 9998;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup_close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}