.draggable-popup {
  position: absolute;
  display: none;
  grid-template-rows: 48px 1fr;
  border: solid brown 1px;
  background-color: #fffffc;
  box-shadow: rgba(0, 0, 0, 0.208) 0 0 10px;
  width: calc(3rem + 25%);
  min-width: 238px;
  max-width: 635px;
  height: calc(3rem + 20%);
  min-height: 150px;
  top: 20%;
  left: 20%;
  box-sizing: border-box;
  overflow: auto;
  resize: both;
}

.draggable-popup-contactinfo {
  top: 30%;
  left: 30%;
}

.draggable-popup-about {
  top: 15%;
  left: 35%;
}

.draggable-popup header {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  border-bottom: solid brown 1px;
  text-align: end;
  cursor: grab;
}

.draggable-popup .content {
  position: relative;
  padding: 1em;
  max-height: 100%;
  overflow-y: scroll;
  box-sizing: border-box;
}

.fadewhite-popupcontent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 100%;
  box-shadow: inset 0 -20px 10px -8px #fffffc;
}

.info-contact-visible,
.news-visible,
.about-visible {
  display: grid;
}

.bio-liste {
  display: table-row;
}
.bio-année,
.bio-description {
  display: table-cell;
}

.bio-description {
  padding-left: 15px;
}

.escape,
#about {
  cursor: pointer;
}
