    #popup{
      background-color: black; /* Couleur du background principal */
      position: fixed; 
      bottom: 0; 
      z-index: 5000 /*Mets le div en avant plan */; 
      height: 150px; 
      display:block;
      transition: all ease 2s;
      width: 100%;
    }

    #popup.remove-popup{
      bottom: -100%;
    }

    p.text-cookies{
      padding: 15px 0;
      color: white !important; /* Couleur du texte */
      font-size: 0.7em; /* en mobile */
    }

    button#buttonCookie{
      background-color: #079DD3; 
      text-transform: uppercase; 
      color: white; 
      border: none; 
      padding: 0.25em 0.75em;
      margin-left: auto;
      display: block;cursor:pointer;
    }

    

/************************************ Début page politiques et confidentialité **************************************/
#section-politiques{
  display: flex;
  margin-top: 60px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.politiques-title{
  font-size: 2.5em;
color: #079DD3;
}

.politiques-small-title{
  color: #079DD3;
}


.politique-red-txt{
  color: red;
}

    @media only screen and (min-width: 768px) {
        p.text-cookies{
          font-size: 1em; 
        }

        #section-politiques{
          padding-left: 60px;
  padding-right: 60px;
        }

        .politiques-title{
          font-size: 3em;
        }
    }

    @media only screen and (min-width:1150px){
      #section-politiques{
        margin-top: 20px;
      }
    }