/* static/css/styles.css */
/* haut | droit | bas | gauche */

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex-grow: 1;
    max-width: 800px;
    margin: auto;
    padding: 10px 5px 10px 5px;
    /* padding: 40px; */
    /* background-color: #fff; */
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

h1, h2 {
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
}

.form-container {
  max-width: 600px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    /* background-color: #6c757d; */

}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: calc(100% - 22px); /* Ajuster pour le padding */
    /* max-width: 600px; */
    font-size: 17px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #a3a3a3;
    border-radius: 4px;
    box-sizing: border-box; /* Inclut padding et border dans la largeur */
}
.form-control-code {
  width: 320px;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  background-color: #f4f4f4;
  border-bottom: #999999 solid 1px;
  box-sizing: border-box; /*Inclut padding et border dans la largeur */
  -webkit-text-security: disc; /* Pour afficher des disques au lieu des étoiles */
  font-size: 20px;
}

.button {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.button:hover {
    background-color: #0056b3;
}
.button-login-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  /* column-gap: 5px; */
  width: 100%;
}
@media screen and (max-width: 850px) {
    .button-login-grid {
      text-align: left;
      display: grid;
      grid-template-columns: 1fr;
      row-gap: 20px;
  }
}
.button-login {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  text-decoration: none;
  margin-left: 20px;
}
@media screen and (max-width: 850px) {
    .button-login {
      margin-left: 0;
  }
}
.button-login:hover {
    background-color: #0056b3;
}

.login-lien {
  /* text-align: center; */
  margin-top: 25px;
  font-size: 19px;
}
.login-lien a {
    color: #007bff;
    text-decoration: none;
    border-bottom: solid 1px rgba(0, 123, 255, 0.5);
}


.messages {
    list-style: none;
    padding: 10px;
    margin: 0 0 20px 0;
    border-radius: 5px;
}

.messages li {    
    color: rgb(2, 159, 2);
    font-size: 18px;
    max-width: 400px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    margin: 6px 0;
    white-space: normal;
    word-wrap: break-word;
}

.messages .alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.messages .alert-error, .messages .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* ********* Styles pour la page d'accueil *************/

.accueil-content {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.accueil-texte {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 25px;
  color: rgb(2, 33, 132);
}
.accueil-pass {
  color: #1219f5;
}
.accueil-secur {
  color: #028d20;
}
.separator {
  width: 100%;
  margin-left: 2px;
  margin-right: 2px;  
  height: 130px;
  border-bottom: 1px solid blue;
  border-bottom-right-radius: 80%;
  margin-bottom: 50px;
}
.separator2 {
  width: 100%;
  margin-left: 2px;
  margin-right: 2px;  
  height: 130px;
  border-bottom: 1px solid blue;
  /* border-bottom: 1px solid rgba(78, 62, 249, 0.481); */
  border-bottom-left-radius: 80%;
}
.ligne-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 100px 250px;
  /* justify-items: center; */
  align-items: center;
  column-gap: 25px;
  /* border: solid 1px red; */
}
.section3-span {
  color: rgb(2, 33, 132);
  padding: 4px 8px 4px 8px;
  background-color: #c1c9f77c;
}

/* ******** Fin de Styles pour la page d'accueil ***************** */

/* Styles pour le pavé numérique */
.keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
    gap: 10px; /* Espace entre les boutons */
    margin-top: 20px;
    max-width: 300px; /* Limiter la largeur du pavé */
    margin-left: auto;
    margin-right: auto;
}

.keypad-button {
    padding: 17px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: #f0f0f0;
    background-color: #e0e0e0;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.keypad-button-00 {
    width: 100%;
    padding: 20px;
    font-size: 24px;
    background-color: #e0e0e0;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.keypad-button:hover {
    background-color: #e0e0e0;
}

.btn-clear {
    background-color: #dc3545; /* Rouge */
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
}

.btn-clear:hover {
    background-color: #c82333;
}

.btn-submit { /* Style pour le bouton "S'identifier" quand il est visible */
    background-color: #28a745; /* Vert */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 20px;
    width: 100%; /* Prend toute la largeur disponible sous le pavé */
}

.btn-submit.hidden {
    display: none;
}

/* Ajustements pour les formulaires */
.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="password"],
.form-container input[type="url"],
.form-container textarea {
    padding-right: 50px; /* Espace pour le bouton X à côté du champ password */
}





/* Styles pour le pied de page */
/* 
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: auto; 
} 
*/

.pied {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 20px 10px 25px 15px;
  text-align: left;
  color: rgb(221, 221, 246);
  background-color: rgb(2, 54, 82);
  /* background-color: #0d0d0d; */
  margin-top: auto; /*Pousse le pied de page vers le bas */
}
.pied-transparent {
  color: rgba(2, 54, 82, 0);
}
.pied-text {
  font-size: 19px;
}
.pied-catapulte-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 60px 260px;
  align-items: center;
  font-style: italic;
}
.pied-catapulte-lien {
  margin-top: 10px;
}
.pied-catapulte-lien > a {
  text-decoration: none;
  color: rgb(221, 221, 246);
  border-bottom: solid 1px rgba(221, 221, 246, 0.652);
}
.pied-lien {
  color: aquamarine;
}
.logo {
    height: 50px;
}

@media screen and (max-width: 850px) {
  .pied-logo-resp {
    display: none;
    /* text-align: center; */
    /* margin-top: 25px; */
  }
  .pied-lien {
    font-size: 0.7em;
  }
  .pied-responsive {
    /* font-size: 0.8em; */
    display: grid;
    grid-template-columns: 130px 200px;
    align-items: center;    
  }
  .pied-text {
    font-size: 0.8em;
  }
}
/* ***************************** */

.search-bar {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.search-bar input {
    flex-grow: 1;
}

/*  
.password-list {
    margin-top: 30px;
}


.password-list table {
    width: 100%;
    border-collapse: collapse;    
}

.password-list th, .password-list td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.password-list th {
  text-align: center;
  background-color: #e5e4e4;
  font-weight: bold;
}
*/

.btn-add {
    display: inline-block;
    background-color: #28a745; /* Vert pour ajouter */
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    margin-bottom: 20px;
}

.btn-add:hover {
    background-color: #218838;
}

.btn-action {
  padding: 7px;
  display: inline-block;
  background-color: #007bff; /* Bleu pour action */
  color: white;
  border-radius: 3px;
  text-decoration: none;
  margin-right: 5px;
  font-size: 1.0em;
  margin-bottom: 10px;
}

.btn-action:hover {
    background-color: #0056b3;
}

.btn-delete {
  padding: 7px;
  font-size: 1.0em;
  background-color: #dc3545; /* Rouge pour supprimer */
  color: white;
  border: solid 1px #595858;
  border-radius: 5px;
  margin-right: 25px;
}

.btn-delete:hover {
    background-color: #c82333;
}

.decrypted-info {
    border: 1px solid #c3e6cb;
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.decrypted-info button {
    margin-top: 10px;
    background-color: #6c757d;
}
.decrypted-info button:hover {
    background-color: #5a6268;
}

.error {
    color: red;
    font-size: 0.85em;
    margin-top: 5px;
}

.decrypted-content {
  text-align: left;
  font-size: 1.4em;
  margin-top: 20px;
  color: #0253aa;
}
.decrypted-password-section {
  margin-top: 40px;
  margin-bottom: 70px;
}
/* haut | droit | bas | gauche */
.decrypted-pasw {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.7em;
  letter-spacing: 2px;
  margin-top: 10px;
  margin: 30px 0 50px 0;    
  color: rgb(2, 156, 15);
}

/* ************************************************************* */

.password-list {
    margin-top: 20px;
}

/* Conteneur scrollable */
.table-container {
    max-height: 600px;   /* limite la hauteur visible */
    overflow-y: auto;    /* scroll vertical */
    overflow-x: auto;    /* scroll horizontal si besoin */
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Table */
.table-container table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 17px;
}

/* Entête fixe */
.table-container thead th {
    position: sticky;
    top: 0;
    background: #f1f1f1;
    z-index: 2;
    border-bottom: 2px solid #ccc;
}

/* Cellules */
.table-container th,
.table-container td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd; /* ligne verticale */
    text-align: left;
    white-space: nowrap;
}

/* Retirer la bordure de la dernière colonne */
.table-container th:last-child,
.table-container td:last-child {
    border-right: none;
}

/* Zebra stripes */
.table-container tbody tr:nth-child(odd) {
    background-color: #fafafa; /* lignes impaires */
}
.table-container tbody tr:nth-child(even) {
    background-color: #ffffff; /* lignes paires */
}

/* Hover */
.table-container tbody tr:hover {
    background: #f0f7ff; /* bleu clair au survol */
}

/* Liens longs (ex: URL) tronqués joliment */
.table-container td a {
    display: inline-block;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
.dashboard-delete {
    text-align: center;
    font-size: 1.2em;
}


/* --- Mode cartes pour mobile --- */
@media (max-width: 768px) {
    .table-container {
        max-height: none;
        overflow: visible;
        border: none;
    }

    .table-container table,
    .table-container thead,
    .table-container tbody,
    .table-container th,
    .table-container td,
    .table-container tr {
        display: block;
        width: 100%;
    }

    .table-container thead {
        display: none; /* on cache l'en-tête */
    }

    .table-container tr {
        margin-bottom: 15px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .table-container td {
        border: none;
        padding: 6px 0;
        white-space: normal;
    }

    .table-container td::before {
        content: attr(data-label); /* on affiche le nom de la colonne */
        font-weight: bold;
        display: block;
        margin-bottom: 2px;
        color: #555;
    }
}

/* ***************************************************************************** */

/* haut | droit | bas | gauche */
/* ***************** Style pour l'en-tête ****************/

header {
    background-color: #c1c9f7;
    padding: 20px 20px;
    position: relative;
    z-index: 10;
}
.pass {
  color: #1219f5;
  font-weight: bold;
  font-size: 1.5em;
}
.secur {
  color: #028d20;
  font-weight: bold;
  font-size: 1.5em;
}
.header-trait {
  color: #01054a;
  font-size: 1.3em;
  font-weight: bold;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Bloc gauche (logo + titre) */
.header-left {
    display: flex;
    align-items: center;
    gap: 20px; /* Réduit l'espace pour mieux s'adapter sur mobile */
}

.logo {
    height: 40px;
}

.header-left h1 {
    margin: 0;
    font-size: 1.5rem;
}

/* ----- Menu centré sur grand écran ----- */
.menu {
    position: absolute;
    right: 0; /* Aligné à droite sur grand écran */
    display: flex;
    gap: 40px;
    transition: all 0.3s ease;
    font-size: 18px;
}

/* Pour centrer le menu sur grand écran, mais UNIQUEMENT si tu veux ce comportement.
   Si tu préfères qu'il reste à droite ou à gauche, tu peux laisser 'right: 0;' */
@media (min-width: 769px) { /* Appliquer ce style seulement à partir d'une certaine taille */
    .menu {
        left: 50%;
        transform: translateX(-50%);
        right: auto; /* Annule right:0 pour le centrage */
    }
}


.menu-lien a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

/* ----- Hamburger ----- */
.label-hamburger {
    display: none;
    cursor: pointer;
}

#toggle {
    display: none; /* cache la checkbox */
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    /* Afficher le bouton hamburger */
    .label-hamburger {
        display: block;
        margin-left: auto; /* Pour pousser le hamburger à droite si l'espace est limité */
    }

    /* Le conteneur du menu */
    .menu {
        position: absolute;
        top: 137%; /* Positionne le menu juste en dessous de l'en-tête */
        left: 0;
        right: 0; /* S'étend sur toute la largeur */
        flex-direction: column;
        gap: 0;
        background-color: #c1c9f7c7;
        padding: 0;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Ajoute une ombre pour un effet de profondeur */
        /* Réinitialiser les propriétés de centrage pour mobile */
        transform: none; 
        left: 0;
        right: 0;
        /* Animation slide */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;
    }

    .menu-lien {
        padding: 20px 0;     
        background-color: #c1c9f7a0;
        border-bottom: 1px solid #9b9a9a; /* Une ligne de séparation */
    }

    .menu-lien:last-child {
        border-bottom: none; /* Pas de bordure sur le dernier élément */
    }

    /* quand toggle activé → slide down */
    #toggle:checked ~ .menu {
        max-height: 300px; /* hauteur max du menu déployé */
        opacity: 1;
    }
}

/* ***************** Fin Style pour l'en-tête ****************/

/* ------------------------ Contact  --------------------------- */

.container-contact {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  width: 100%;
  background-color: beige;
}
.contact-message {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  text-align: center;
  font-size: 2.2vw;
  color: rgb(2, 22, 109);
  border: 1px solid #3361dd;
  padding: 50px;
  background-color: #6e6e6d71;
}
.contact-message-x {
  padding-top: 20px;
  text-align: right;
}
.contact-message-x > a {
  text-decoration: none;
}
.contact-entete {
  text-align: center;
  color: #4f4f50;
  font-size: 35px;
  font-weight: bold;
}
.contact-titre1 {
  /* margin-top: 1px; */
  font-size: 2.2vw;
  color: #4f4f50;
  text-align: center;
}
.contact-form {
  margin-top: 25px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  /* haut | droit | bas | gauche */
  padding: 1px 30px 40px 40px;
  /* width: 460px; */
  background-color: rgba(223, 227, 248, 0.3);
  border: 1px solid rgb(171, 167, 167);
  border-radius: 7px;
  box-shadow: rgba(128, 128, 127, 0.5) 0 0 5px 4px;
}
.contact-label {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 160px 230px;
  /* width: 20px; */
}
.contact-label > label {
  font-size: 18px;
  color: #0f1111;
}
@media screen and (max-width: 850px) {
  .contact-form {
    width: 94%;
    margin-top: 70px;
    padding: 5px;
  }
  .contact-titre1 {
    font-size: 16px;
  }
  .contact-label {
    grid-template-columns: 160px 200px;
  }
}
.input-01 {
  /* height: 148px; */
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  background: #daedf5;
  min-height: 30px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* width: 100%; */
  padding: 8px;
  border-radius: 6px;
  -webkit-border-radius:6px;
  -moz-border-radius:6px;
  border: 2px solid #fff;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.33);
  -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.33);
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.33);
}
.input-02 {
  font-family: Arial, Helvetica, sans-serif;
  display: block;
    /* width: 448px; */
  height: 148px;
  background: #daedf5;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* width: 100%; */
  padding: 8px;
  border-radius: 6px;
  -webkit-border-radius:6px;
  -moz-border-radius:6px;
  border: 2px solid #fff;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.33);
  -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.33);
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.33);
}
.captcha-grid {
  margin-top: 20px;
  width: 450px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  color: rgb(245, 11, 58);
  font-size: 1.1em;
}
@media screen and (max-width: 850px) {
  .captcha-grid {
    display: block;
    width: 350px;
    max-width: 350px;
  }
}
.space-width {
  margin-left: 20px;
}
.contact-retour-bt {
  background-color: #aaf597;
  border: none;
  /* color: white; */
  padding: 15px 70px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  font-family: 'Comic Sans MS' Arial, Helvetica, sans-serif;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 20px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.contact-retour-bt > a {
  text-decoration: none;
  color: rgb(64, 249, 95);
  color: rgb(111, 44, 2);
}
.connect-bt {
  background-color: #56baed;
  border: none;
  color: black;
  padding: 15px 70px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  font-family: 'Comic Sans MS' Arial, Helvetica, sans-serif;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 20px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
/* ------------------ page Mentions légales Mention.html ------------------------- */
.mention-container {
  padding-top: 60px;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  /* color: #000; */
  color: white;
  background-color: rgb(10, 10, 10);
  /* border: 5px solid rgb(243, 5, 36); */
}
.mention-head {
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  color : rgb(183, 187, 187);
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
  /* border: 1px solid #daedf5; */
}
.mention-head-text {
  max-width: 600px;
  font-size: 1.3em;
}
.mention-text {
  text-align: justify;
}
.mention-text > a {
  /* text-decoration: none; */
  color: white;
}

.mention-content {
  font-size: 18px;
  margin-top: 5%;
  margin-bottom: 5%;
  margin-left: auto;
  margin-right: auto;
  width: 70%;  
}
.mention-titre {
  font-size: 1.2em;
  /* border-bottom: 1px solid #7d7f8054; */
  padding : 20px;
  color : rgb(6, 219, 209);
}
.mention-lien > a {
  color: white;
}
.mention-titre-02 {
  font-size: 1.1em;
  color : rgb(247, 245, 134);
}
.bt-demo {
text-decoration: none;
/* haut | droit | bas | gauche */
padding: 12px 20px 12px 20px;
color: white;
text-align: center;
border-radius: 10px;
font-size: 15px;
font: Helvetica, 'Comic Sans MS', Arial, sans-serif;
box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
border: 1px solid #daedf5;
background: linear-gradient(rgb(61, 119, 245), rgb(5, 61, 243));
cursor: pointer;
}
.mention-bt-content {
text-align: center;
margin-bottom: 40px;
}
.bt-demo-space {
margin-left: 40px;
}
.haut {
  margin-bottom: 15px;
  height: 25px;
  text-align: center;
  border-bottom: 1px solid #7d7f8054;
}
.mention-bt {
  margin-top: 25px;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
  padding: 10px 20px;    
  background-color: rgb(2, 54, 103);
  color: white;
  text-decoration: none;
  border: solid 3px rgb(200, 224, 246);
  border-radius: 9px;
  transition: background-color 0.3s ease;
}

/* ************************ */
#cookie-banner {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 25%;
  background-color: #c3c3db;
  color: rgb(69, 67, 67);
  text-align: left;
  padding: 15px;
  text-align: justify;
  border: solid 3px rgb(200, 224, 246);
  border-radius: 9px;
}
.cookie-bt {
  text-align: center;
  margin-bottom: 10px;
  /* margin-top: 5px; */
  /* padding: 5px; */
}
.cookie-bt > a {
  text-decoration: none;
  font-size: 16px;
  background-color: rgb(244, 234, 216);
  padding: 6px;
}
@media screen and (max-width: 850px) {
  #cookie-banner {
    /* width: 90%; */
    right: 5px;
    left: 5px;
    width: auto;

  }
}
