 
/* Preloader*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #56829e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}




/*The select */

.header{
  z-index:1;
  position: relative;
  
  
}
#navSelect{
position: fixed;
top: 1.5vh;
left: 25vw;



}
#selectCountries{
width: 50vw;

}

/* Leaflet*/
html, body {
    height: 100%;
    padding: 0;
    margin: 0;
  }
  #map {
     /*configure the size of the map */
    width: 100%;
    height: 100%;
    z-index:0;
  }
  
  @media  screen and (max-height: 415px) {
    
    #map {

        width: 100%;
        height: 100%;
        
    }
   
    
  }

@media screen and (max-width: 430px) {

  #map {
    margin: 0px;
  }

    
    #selectCountries{
      font-size:12px;
      padding: 2px 10px;
      margin: auto 2px;
      border-radius: 5px;
      width: 50vw;
  
}
  
    
  }
  @media screen and (max-width: 370px) {

    #map {
      margin: 0px;
    }
  
      #navSelect {
        
        margin: auto;
        width:50vw;
        left:22vw;
      }
      
      #selectCountries{
        font-size:10px;
        padding: 2px 8px;
        margin: auto 2px;
        border-radius: 5px;
        
    
  }
    
      
    }

  
  