/* Boutons */
#pano .eds-pop-up {
  display: none;
}
#pano .button-pop {
  background-color: rgb(29, 65, 134);
  border-radius: 50%;
  border: none;
  color: white;
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  display: flex;
}

/* Popups */
#custom-eds .button-pop {
  display: none;
}
#custom-eds .eds-pop-up {
  display: none;
  width: 95vw;
  height: 95vh;
  /* max-width: 500px; */
  position: relative;
  margin: 5vh auto 0;
  background-color: rgba(29, 65, 134, 0.7);
}
#custom-eds .eds-pop-up:target {
  display: block;
}
#custom-eds .eds-pop-up-title {
  font-size: 50px;
  /* line-height: 30px; */
  padding: 20px;
  text-align: center;
}
#custom-eds .eds-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 50px;
  line-height: 30px;
}
#custom-eds .eds-pop-up-content {
  width: 100%;
  max-width: 700px;
  min-height: 500px;
  margin: 0 auto 0;
}
#custom-eds iframe {
  width: 100%;
  margin: 0 auto 0;
  height: 100%;
  min-height: 500px;
}