html,body{height:100%;}
.full-height {
    height: calc(100% - 65px);
}

#map{
    width: calc(100% - 20px);
    height: calc(100% - 138px);
    border: 1px solid;
    margin: auto;
}



input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}



/*NAVBAR*/
.navbar, .navbar *{
    z-index: 999999;
    overflow: visible;
}


/* SIDEBAR */
#mySidebar{
    width: 180px;
    left: -180px;
    transition: 0.3s;
}


/* STICKY NAV */
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement 
(as the navigation bar gets a new position at the top of the page 
(position:fixed and top:0) */
.sticky + #mycontent {
    padding-top: 60px;
}
/* END OF STICKY NAV */

