@font-face {
    font-family: "Rounds";
    src: url("TT Rounds Neue Trial Variable.ttf");
}

html {
    height: 100%;
    width: 100%;
    font-family: 'Rounds';
}

body {
    height: 100%;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

header {
    min-height: 60px;
    position: sticky;
    top: 0;
    background-color: transparent;
}

.fv {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fh {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.space{
    justify-content: space-evenly;
}

.align-start{
    align-items: start;
}

.left{
    justify-content: start !important;
}

.hidden{
    display: none;
}

#fleche_bouton_menu{
    height: 24px;
    width: 24px;
    color: #3D3D3D;
}

#bouton_menu {
    position: absolute;
    left: 10px;
    top: 12px;
    border: lightgrey solid 2px;

    width: 24px;
    height: 24px;
    padding: 6px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: 0.5s ease;

    overflow: hidden;
    white-space: nowrap;
}

#bouton_menu:hover{
    cursor: pointer;
    background-color: lightgray;
}

#bouton_menu.menu_ouvert{
    top: 50px;
    max-width: 500px;
    width: calc(100% - 24px);
    height: auto;
    max-height: 500px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

#bouton_menu.menu_ouvert:hover{
    background-color: white;
    cursor: default;
}

#menu_deroule{
    width: 100%;
}

.choix_menu{
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.3s;
}

.choix_menu:hover{
    background-color: lightgrey;
}

.center {
    align-items: center;
}

.logo {
    height: 60px;
}

#main{
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.no-max-width{
    max-width: 100% !important;
}

.article{
    width: 100%;
    color: #3D3D3D;
    border-radius: 40px;
    padding: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow:  20px 20px 60px #d9d9d9,
             -20px -20px 60px #ffffff;
    box-sizing: border-box;
}

.text-center{
    text-align: center;
}

#bouton-contact-whatsapp{
    background-color: #25D356;
    border-radius: 16px;
    cursor: pointer; 
}

#logo-whatsapp{
    margin: 8px;
}

#text-contact-whatsapp{
    font-family: 'Rounds';
    padding-right: 8px;
    color: white;
}

a{
    display: inline-block;
    color: inherit;
    outline: none;
    text-decoration: none;
} 

.bouton{
    background-color: #00B3E7;
    color:white;
    margin: 5px;
    padding: 15px;
    border-radius: 18px;
    height:min-content;
}

.prompt{
    padding: 5px 0;
}

.input_prompt{
    display: inline-block;
    margin: 0 15px;
    border: #00B3E7 solid 2px;
    border-radius: 10px;
    height: 20px;
    padding-left: 5px;
} 

input[type="submit"]{
    border:none;
}

.info-container {
  position: relative;
  display: inline-block;
}

.info-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3498db;
  color: white;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  margin-left: 5px;
}

.tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  transition: opacity 0.2s;
  z-index: 10;
}

.info-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.msg-erreur{
    color: rgb(216, 13, 13);
    font-weight: bold;
}

#qr_code{
    margin-top: 10px;
}