/* /* --------------------------------------- */
/* ------------- COOKIE POPUP ------------ */
/* --------------------------------------- */

#cookiePopup {
  position: fixed;
  bottom: 15px;
  max-width: 450px;
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  margin-right: 5px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  right: 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  border: 5px solid #47423c;
}

.bx {
  /* --- box icône cookie --- */
  margin-left: 0.125rem;
  bottom: 0;
  width: 2%;
  height: auto;
}

#cookiePopup .en_tete {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

#cookiePopup .en_tete i {
  color: #47423c;
  font-size: 32px;
  margin-right: 15px;
}

#cookiePopup .en_tete h2 {
  color: #47423c;
  font-weight: bold;
  font-size: 1.2em;
  padding-top: 0;
  padding-bottom: 0;
}

#cookiePopup .data {
  margin-top: 16px;
}

#cookiePopup .data p {
  color: #6c6b6b;
  font-size: 0.9em;
}

#cookiePopup .data p a {
  color: #4070f4;
  text-decoration: none;
}

#cookiePopup .data p a:hover {
  text-decoration: underline;
}

#cookiePopup .buttons {
  margin-top: 16px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hide {
  visibility: hidden;
  bottom: 0;
  right: 2em;
}

.show {
  visibility: visible;
  bottom: 2em;
  right: 2em;
}

#cookiePopup .buttons {
  margin-top: 16px;
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#cookiePopup .buttons .button {
  border: none;
  color: #fff;
  background: #47423c;
  padding: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
}

#cookiePopup .buttons #acceptCookie:hover {
  background: #8e0e0d;
}

#cookiePopup .buttons #declineCookie:hover {
  background: #fff;
  border: 2px solid #47423c;
  color: #c4c1c1;
}

@media screen and (max-width: 1200px) {
  #cookiePopup {
    margin-right: 10px;
  }
  #cookiePopup .buttons {
    margin-bottom: 3px;
  }
}
