#popup-bottom {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  
}

#popup-bottom.popup-hidden {
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
}

#popup-bottom.popup-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.popup-content {
  position: relative;
  background: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  width: 300x; /* Par défaut mobile */
  height: 120px;
}

.popup-close {
	position: relative; 
	background: white; 
	padding-top: 20px;
	height:20px;
}


/* Fermer */
#popup-close {
  position: absolute;
  top: 0px;
  left: 0px;
  font-weight: bold;
  font-size: 22px;
  cursor: pointer;
  color: #444;
  z-index: 10;
background-color: #EDEDF1;
  padding: 0 6px;
  line-height: 20px;
}


/* Desktop */
@media (min-width: 768px) {
  .popup-content {
    width: 728px;
    height: 110px;
  }
}