@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

/** HEADER OF WEBSITE **/
.header {
    box-sizing: border-box;
    position: fixed;
    width: 100vw;
    overflow: hidden;
    background-color: rgb(255 255 255 / 55%);
    padding: 20px 10px;
    z-index: 401;
}
  
/* Style the header links */
.header a {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
}
  
/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
    font-size: 25px;
    font-weight: bold;
}

.header a.logo img{
    width: 200px;
}
  
/* Change the background color on mouse-over */
.header a:hover {
    background-color: #ddd;
    color: black;
  }
  
/* Style the active/current link*/
.header a.active {
    background-color: dodgerblue;
    color: white;
}
  
/* Float the link section to the right */
.header-right {
    float: right;
    top: 50%;
    transform: translateY(+40%);
}

.header-center {
    float: center;
}
  
/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
    .header a {
          float: none;
          display: block;
          text-align: left;
          position: relative;
          padding: 0;
    }

    .header a img {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .header-right {
          float: none;
    }
}

.leaflet-popup-content img {
    max-width: 100%;
}


#list{
    display: flex;
    width: 100%;
    overflow:auto;
    height: 100%;
    padding-top: 10px;
}

.bloc{
    background: white;
    width: 300px;
    height: 75px;
    border-radius: 10px;
    margin: 0 10px 10px 10px;
    display: flex;
    box-shadow: 4px 3px 8px 1px #969696;
    -webkit-box-shadow: 4px 3px 8px 1px #969696;
    cursor: pointer;
    transition-duration: 0.5s;

}

.bloc:hover{
    background: #F5F5F5;
}

.bloc img{
    width: 75px;
    height: 75px;
    background: #F5F5F5;
    border-radius: 10px 0 0 10px;

}

.bloc .content{
    width: 210px;
    margin: auto 0;
    text-align: center;
    font-size: 20px;
    overflow: hidden;
    transition-duration: 0.5s;
}


.bloc:hover .content{
    font-size: 23px;
}




/** BOTTOM LIST **/
.open-nav {
    cursor: pointer;
    text-align: center;
    font-size: 25px;
    background: rgb(255 255 255 / 75%);
    width: 250px;
    margin: 0 auto;
    border-radius: 40px 40px 0 0;
    z-index: 10;

}

.open-nav:hover{
    background: white;
}

.navbar-bottom {
  height: 150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: -120px;
  transition: all .5s;
}

#list{
    background: white;
}
.open-nav:not(.opened) {
    background: rgb(255 255 255 / 75%);
}
.opened .open-nav{
    background: white;
}


.opened {
    bottom: 0;
}

.navIcon{
    width: 20px;
    height: 20px;
    transform: rotate(180deg);
    transition-duration: 0.5s;
    margin-right: 10px;

}

.opened .navIcon{
    transform: rotate(0deg);
}
  
.open-nav:hover .navIcon{
    left: -10px;    
}
 