
  #cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f0f0f0;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
    z-index: 9999;
	border-radius: 20px;
  }

  #cookie-popup button, #cookie-popup a {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }

/*-----------------------------------------------------------------------------------*/

/* Configuration pour écrans de type smartphone (verticaux) */
@media(max-width: 1000px){
  #cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    margin: auto;
	width: 90%;
    transform: translateX(-50%);
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
/*    max-width: 400px;*/
    text-align: center;
    z-index: 9999;
	border-radius: 20px;
  }

}

