
/* Fond de la bull */
.bull {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Contenu de la bull */
.bull-content {
    background-color: #fff;
    border-radius: 2px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
    position: relative;
}

/* En-tête de la bull */
.bull-header {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding: 10px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

/* Couleurs pour les types de message */
.bull-header.success {
    background-color: #60543e; /* Vert pour le succès */
}

.bull-header.error {
    background-color: #5a1712; /* Rouge pour l'erreur */
}

/* Bouton de fermeture */
.bull-close {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
}
.bull-text {
    padding: 0px 20px;
}

/* Animation d'apparition de la bull */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.message.error {
    color: #f00;
}
.paragraphes--variant-form {
    cursor: pointer;
}



.menu{
    display: flex;
}
.menu .main-content {
    flex: 1;
    display: flex;
}

.menu .container {
    display: flex;
    flex-direction: column;
}

.menu .sub-menu{
    display: none;
    padding-left: 0;
}

.menu .sub-menu.show{
    display: block;
}

.menu .sub-menu .nav-link:hover {
    color: white;
    border-bottom: solid 1px white;
}
.menu .sub-menu .nav-link {
    color: #A5A5A5;
    font-size: 1.35rem !important;
    border-bottom: solid 1px #A5A5A5;
    padding-bottom: .5rem;
    transition: all ease .3s;
}

/* Backdrop */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

/* Modal box */
.modal-dialog {
  pointer-events: auto;
  width: 100%;
  max-width: 500px;
  margin: 0;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

/* Quand la modal est visible, zoom */
.modal.show .modal-dialog {
  transform: scale(1);
}

/* Modal content */
.modal-content {
  background-color: #fff;
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}

/* Close btn */
.btn-close {
  cursor: pointer;
  font-size: 20px;
  border: none;
  background: none;
}

/* Input mot de passe */
.input-pwd {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #707070;
  line-height: 1;
  outline: none;
  padding-bottom: 0.5rem;
  width: 100%;
  border-radius: 0;
}

.product-item-sav__button,
.product-item-sav__history {
    background-color: transparent;
    border: none;
    color: #000;
    font-size: .9rem;
    outline: none;
    -webkit-text-decoration: underline;
    text-decoration: underline;
}

