html,body {
    margin:0; height: 100%; 
}
.circle-icon {
     width: 10px;
  display: inline-block;
    height: 10px;
    border-radius: 5px;
}
/* menu */
.sidenav {
    height: 100%; 
    width: 0;
    position: fixed; 
    z-index: 100; 
    top: 0;
    left: 0;
    background-color: #0072c5; 
    overflow-x: hidden; 
    padding-top: 60px; 
    transition: 0.5s; 
} 
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: block;
    transition: 0.3s
}
.sidenav a:hover, .offcanvas a:focus{
    color: #ddae11;
}
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.topnav {
    background-color: #65c8d0;
    overflow: hidden;
}
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 17px;
}
.topnav a:hover {
    background-color: #0072c5;
    color: black;
}
 
/* Add a color to the active/current link */
.topnav a.active {
    background-color: #4CAF50;
    color: white;
}

#nmb,#det{	
	width:100%;
  bottom: 0;
	height:80%;
	/*position: absolute; */
	background-color:#E8F4FF;	
	overflow-y: auto;/*fixed header*/
}
#nmb th,#det th/*fixed header*/ { 
	position: sticky; top: 0;
  background: #2BAAFF;
  background: -moz-linear-gradient(top, #73C7FF 0%, #4AB7FF 66%, #2BAAFF 100%);
  background: -webkit-linear-gradient(top, #73C7FF 0%, #4AB7FF 66%, #2BAAFF 100%);
  background: linear-gradient(to bottom, #73C7FF 0%, #4AB7FF 66%, #2BAAFF 100%);
  border-bottom: 2px solid #444444;
 }
#nmb  th:empty,#det  th:empty {background: #fff;border:0;}

 #main {
    transition: margin-left .5s;
    margin:0;
    width:auto; 
	height: calc(80% - 60px);
	/* Firefox */
height: -moz-calc(80% - 60px);
/* WebKit */
height: -webkit-calc(80% - 60px);
/* Opera */
height: -o-calc(80% - 60px);
}
#map{
	width:100%;
	height: 100%;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}
 
a svg{
  transition:all .5s ease;
 
  &:hover{
    #transform:rotate(180deg);
  }
}
 
#ico{
  display: none;
}
 
.menu{
  background: #000;
  display: none;
  padding: 5px;
  width: 320px;
  @include border-radius(5px);
 
  #transition: all 0.5s ease;
 
  a{
    display: block;
    color: #fff;
    text-align: center;
    padding: 10px 2px;
    margin: 3px 0;
    text-decoration: none;
    background: #444;
 
    &:nth-child(1){
      margin-top: 0;
      @include border-radius(3px 3px 0 0 );
    }
    &:nth-child(5){
      margin-bottom: 0;
      @include border-radius(0 0 3px 3px);
    }
 
    &:hover{
      background: #555;
    }
  }
}

