.h1 {
    margin-top: 50px;
    margin-bottom: 50px;
}
body {
    background-color: #f1f1f1;
}
.actif {
    background-color: rgba(0, 128, 0, 0.2);
}
.fini {
    background-color: rgba(255, 0, 0, 0.2);
}
.btnm {
    margin-top: 20px;
}
.fa-trash-alt {
    font-size: 22px;
    color: #017bff;
}
.fa-trash-alt:hover {
    color: #F53131;
    cursor: pointer;
}
a:hover {
    text-decoration: none;
    color: rgb(255, 145, 0);
}
.btn-orange {
    background-color: orange;
}
.btn-orange:hover {
    background-color: orangered;
    color: white;
}




.whatever{
    border: 2px solid #707070;
    color: #1D1D1D;
    display: inline-block;
  }
  
  #checkboxes input[type=checkbox]{
    display: none;
  }
  
  #checkboxes input[type=checkbox]:checked + .whatever{
    background-color: rgba(255, 166, 0, 0.096);
    border: 2px solid orange;
    color: orange;
  }

  .fs-12 {
      font-size: 12px;
  }


  .carte {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 60vh;
}
.map {
    width: 50%;
    height: 50%;
    margin-right: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cartes {
    margin-top: -20px;
    width:100%;
}
.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* #map {
    height: 75%;
} */

.miniatures {
    display: none;
    flex-direction: column;
    align-items: center;
}

/* Modal */
.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: 20% auto 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 0.4s ease-in-out;
  }
  
  .popup h5 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
  }
  .popup .content {
    max-height: 30%;
    overflow: auto;
  }

  .title {
      display: flex;
  }

  @keyframes rotating {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}

  .chaine {
      justify-self: flex-end;
      margin-left: auto;
      -webkit-animation: rotating 0.7s infinite;
  }




/* Barre de progression */
#myProgress {
    width: 100%;
    background-color: #ddd;
    margin: 30px 0;
}

#myBar {
    width: 1%;
    height: 10px;
    background-color: orange;
}