
.pre-wrap {
    white-space: pre-wrap;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #d9413c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  
  .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
  }
  .overlay:target {
    visibility: visible;
    opacity: 1;
  }
   
  .popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    color: #000;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
  }
   
  .popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
  }
  
  .popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  .popup .close:hover {
    color: #06D85F;
  }
  
  .popup .content {
  max-height: 30%;
  overflow: auto;
  color:rgba(0, 0, 0, 0.7);
  }
  
  @media screen and (max-width: 700px){
    .box{
      width: 70%;
    }
    .popup{
      width: 70%;
    }
  }
  
  
  .alert{
    padding:8px 35px 8px 14px;
    margin-bottom:20px;
    text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);
    background-color:#fcf8e3;
    /* border:1px solid #fbeed5;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px; */
    }
  
  .alert,.alert h4{
    color:#c09853;
    }
  
  .alert h4{
    margin:0;
    }
  
  .close {
      float: right;
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1;
      color: #000;
      text-shadow: 0 1px 0 #fff;
      opacity: .5;
  }
  
  .close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75;
  }
  
  
  .close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  .alert-danger,.alert-error{
    /* background-color:#f2dede;
    border-color:#eed3d7;
    color:#b94a48; */
    background-color: #d9413c;
    color: white;
    }
  
  .alert-danger h4,.alert-error h4{
    color:#b94a48;
    }

  .alert-success{
    background-color:#468847;
    color: white;
    }

  .alert-success h4{
    color:#468847;
    }
  
  .alert-block{
    padding-top:14px;
    padding-bottom:14px;
    }
  
  
  .alert-block>p,.alert-block>ul{
    margin-bottom:0;
    }
  
  .alert-block p+p{
    margin-top:5px;
    }
  
  .d-none {
    display: none !important; /* Ajoutez !important pour annuler les styles spécifiques à #alert */
  }
  
  
  /* Définir la classe pour l'élément à animer */
  .slide-down {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.0s ease-in-out; /* Définir la transition */
  }
  
  /* Ajouter une classe pour afficher l'élément */
  .slide-down.show {
    max-height: 200px; /* Hauteur maximale pour afficher le contenu */
    transition: max-height 1.0s ease-in-out; /* Transition lors de l'affichage */
  }
  