@media (max-width: 768px) {
  #submit {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    border-radius: 5px;
	border-color:transparent;
    z-index: 9999;
    background-color: #ff6600;
    color: white;
    font-size: 18px;
    padding: 16px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
  }

  /* Ajout de padding pour éviter que le bouton cache du contenu */
  body {
    padding-bottom: 70px;
  }

  /* Classe pour rendre le bouton visible */
  #submit.visible {
    opacity: 1;
    pointer-events: auto;
  }
}



