/* Mobile */
@media screen and (max-width: 768px) {
  #header{
    height: 49px;
  }
  #bandeau{
    bottom: 0;
    height: 50px;
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: space-between;
  }
  #autocomplete{
    width: 100%;
    height: 30px;
    font-size: 14px;
  }
  #locationField{
    height: 34px;
    padding-left: 1px;
    padding-right: 1px;
  }
  #div_1-1{
    padding-top: 51px;
    display: flex;
    flex-direction: column;
    padding-bottom: 61px;
  }
  #div_map{
    order: -1;
    height: 300px;
    padding: 5px;
    display: flex;
    flex-direction: column-reverse;
  }
  #map{
    width: 100%;
    border: solid 1px rgba(30,30,30,0.3);
    flex: 1;
    /*height: 50vh;*/
  }
  #div_filtres{
    justify-content: space-between;
  width: 100%;
  }
  .div_filtre{
    display: none;
    justify-content: space-between;
  position: fixed;
  background-color: white;
  background-color: #262626;
  color: #fff;
  z-index: 1042;
  width: 100%;
  height: 0px;
  bottom: 0;
  padding-bottom: 60px;
  display: none;
  overflow-y: scroll;
      transition-property: height;
      transition-duration : 0.75s;
  }
  .div_filtre_show{
    border-top: solid 1pc #ece;
  }
  .btn-filtre{
    display: none;
    flex: 1;
    display: flex;
    position: relative;
    height: 100%;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    border-top: solid 1px #ece;
    background-color: rgb(233,84,32);
  }
  .btn-filtre-selected{
    background-color: #262626;
    border-top: none;
  }
}
/* ---------------------------------------------------------            Grands écrans                  ----------------------------------------- */
@media screen and (min-width: 768px) {
  body{
    position: relative;   
  }
  #header{
    height: 70px;
  }
    #bandeau{
      display: flex;
      justify-content: space-between;
    margin-top: 70px;
    height: 55px;
  border-bottom: solid 1px rgb(130,130,130);
  }
  #locationField{
    height: 34px;
    padding-left: 1px;
    padding-right: 1px;
    width: 100%;
  }
  #div_1-1{
    height: 100vh;
    padding-top: 130px;
    display: flex;
    overflow: hidden;
    align-items: flex-start;
  }
  #div_map{
    flex: 1;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 110px);
    padding: 0px;
  }
  #map{
    width: 100%;
    border: solid 1px rgba(30,30,30,0.3);
    height: calc(100vh - 110px);
    flex: 1;
    /*height: calc(100vh - 110px);*/
  }
  #list_result{
    width: calc(290px + 290px + 10px + 20px + 10px);
    padding: 0px 10px 10px 10px;
    height: calc(100vh - 130px);
    overflow-y: scroll;
    overflow-x: hidden;
  }
#autocomplete{
  padding: 5px;
  width: 100%;
}
#div_filtres{
  width: 50%;
}
.div_filtre{
  display: none;
    position: fixed;
    z-index: 10000;
    background-color: white;
    overflow: hidden;
    height: 0px;
      transition-property: height;
      transition-duration : 0.75s;
}
#div_glyphicon-map-marker{
  padding: 5px;
}
.btn-filtre{
}
  #btn_filtre_open_modal_mdp, #btn_filtre_open_modal_mdp{
    display: none;
  }
::-webkit-scrollbar {
  width: 10px;
  cursor: pointer;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #5bc0de;
  background-color: rgb(233,84,32);
  background: rgba(91,192,222,0.85);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(91,192,222,0.85); 
  cursor: 
}

}

/* ---------------------------------------------------------            Tous les écrans                  ----------------------------------------- */

#bandeau{
  position: fixed;
  width: 100%;
  background-color: rgb(233,84,32);
  background-color: #262626;
}
#div_filtres{
  display: flex;
}

  .filter_choice_selected{
    background-color: rgb(233,84,32);
    color: white;
  }