html, 
body {
    margin:0;
    width:100%;
    height: 100%;
    min-height: 100%;

}

#map{
    width: 100%;
    height: 100vh;
}

#floatingDiv{
    position: fixed;
    top : 10px;
    left: 50px;
    width : 540px;
    /* height: 100%; */
    /* min-height: calc(100vh - 20px); */
    max-height: calc(100vh - 20px);
    z-index: 99999;
    overflow-y: auto;
    overflow-x:hidden auto;
}

#diSearchResult{
    overflow-y: auto;    
}


/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 1px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #FFA500;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #FFA500;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 24px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  .highlight { 
    background-color: #FFA0AB; 
  }

  .hover{
    background-color: #E2EFFF; 
  }

  .transparant {
    background: rgb(255, 255, 255);     /* For browsers that don't support rgba */
    background-color: rgba(255, 255, 255, 0.5);   /* Transparent background color */
  }