#cgu-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height:20%;
  width:30%;
  background-color: #290C33;
  padding: 10px;
  padding-top:5px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
  line-height: 1;
  font-size: 14px;
  overflow-y: auto; /* Ajout de la barre de défilement verticale */
  max-height: 400px;
  color:#fbfbfb;
  border-radius:5px;
}
#close-cgu {
  position: absolute;
  top: 10px;
  right: 10px;
  padding:5px;
  background-color:#F01F1F;
  border-radius:3px;
  color:white;
  font-size:1.6em;
}
@media only screen and (max-width: 600px) {
  #cgu-container {
    background-color: #2373F0;
    margin:auto;
    width:90%;
  }
}
