body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 250px;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0; /* my comment */
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background: #000;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
    width: 250px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    /*padding: 15px;*/
    /*margin-left: 30px; !* mine *!*/
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -250px;
}

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
    color: #999999;
}

.sidebar-nav li:hover {
    /*cursor: pointer;*/
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-nav a {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.sidebar-nav li a:hover {
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0);
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

.sidebar-nav > .sidebar-brand li {
    color: #999999;
}

.sidebar-nav > .sidebar-brand li:hover {
    color: #fff !important;
    background: none;
}

.active-link {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2);
}

#wrapper {
    /*padding-left: 250px;*/
}

#wrapper.toggled {
    padding-left: 0;
}

#sidebar-wrapper {
    width: 250px;
}

#wrapper.toggled #sidebar-wrapper {
    /*width: 0;*/
    width: 30px;
}

#page-content-wrapper {
    /*padding: 20px;*/
    position: relative;
    /*margin-left: 30px; !*mine*!*/
}

#wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0;
}

.side-nav-heading {
    color: #999999;
    font-weight: 500;
}

.toggle-left-face-arrow, .toggle-right-face-arrow {
    float: right;
    padding: 7px;
    position: relative;
    cursor: pointer;
}

.dp-tag-version {
    font-size: 12px;
    font-weight: 500;
}

.lg-tag-version {
    font-size: 22px;
    font-weight: 500;
    margin-left: 5px;
}

.heading {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

#map {
    height: 100vh;
}

.detail-container {
    position: absolute;
    bottom: 0;
    z-index: 9999;
    width: 40%;
    background-color: aliceblue;
    padding: 5px;
    border-radius: 5px;
    height: 40%;
    overflow-y: auto;
    text-align: center;
    right: 0;
}

/* css for here map api routing start */

.directions li span.arrow {
    display: inline-block;
    min-width: 28px;
    min-height: 28px;
    background-position: 0px;
    background-image: url("https://heremaps.github.io/maps-api-for-javascript-examples/map-with-route-from-a-to-b/img/arrows.png");
    position: relative;
    top: 8px;
}

.directions li span.depart {
    background-position: -28px;
}

.directions li span.rightturn {
    background-position: -224px;
}

.directions li span.leftturn {
    background-position: -252px;
}

.directions li span.arrive {
    background-position: -1288px;
}

.current-location {
    position: absolute;
    right: 20px;
    top: 25px;
}

.current-location button{
    background-color: #6c757d4a;
    border-radius: 50%;
}

.current-location button:hover{
    background-color: #5c636a4d;
}

/* css for here map api routing end */
