#liste-envie {
  position: relative;
}

#liste-envie .wishlist-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 0.8rem;
  display: block;
}

#wishlist-popup {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 1000000;
  overflow-y: auto;
  padding: 1.5rem 3rem;
}

#wishlist-popup .close-button {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  border-radius: 0px 0px 0px 4px;
}