#vessel_map { /* This is the vessel.html map */
    position: relative;
    width: 100%;
    padding-top: 100%;

    z-index: 0;
    /* height: 600px; */
}

#timeSec {
    position: relative;
    top: 80px;

    width: 40px;
    height: 30px;
    margin-right: auto;
    margin-left: auto;
    border: 1px;
    color: #000;
    background: transparent;
    z-index: 5;
}

#refreshButton {
    position: absolute;
    top: 120px;
    right: 10px;
    z-index: 5;
    width: 30px;
    margin-right: auto;
    margin-left: auto;
    border: 1px;
    z-index: 5;
}

#myConfigButton {
    position: absolute;
    top: 150px;
    right: 10px;
    width: 30px;
    height: 30px;
    margin-right: auto;
    margin-left: auto;
    border: 1px;
    z-index: 5;
    background: white;
}


#configWidget {
    position: absolute;
    top: 150px;
    right: 50px;
    width: 300px;
    /*			height : 30px;*/
    margin-right: auto;
    margin-left: auto;
    border: 1px;
    z-index: 5;
    background: #000;
    /*            background-color:transparent;*/
    opacity: 0.9;
    filter: alpha(opacity=90);
    display: none;
}

#myLocationButton {
    position: absolute;
    bottom: 200px;
    right: 10px;
    width: 30px;
    height: 30px;
    margin-right: auto;
    margin-left: auto;
    border: 1px;
    z-index: 5;
    background: white;
}



/* The side navigation menu */
.sidenav {
    height: 100%;
    /*Full-height */

    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 5;
    /* Stay on top  of bootstrap that stops at 1070*/
    top: 100px;
    left: 0;
    background-color: #000;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
    z-index: 1550;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover,
.offcanvas a:focus {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

/* Slider */
#slidecontainer
{
    position: relative;
    top: 20px;
    right: 0px;
    z-index: 15;
    width: 100%;
}

/* The slider itself */
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 25px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
  }

  /* Mouse-over effects */
  .slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
  }

  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }

  .slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }
