body {
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    /* position: sticky; */
    /* position: absolute; */
    height: 46px;
    /* background-color: #1b1b1b; */
    background-color: rgba(30,30,30,0.5); 
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%; */
}

.navbar a {
    float: left;
    /* float: right; */
    /* position: absolute; */
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    position: relative;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    width: min-content;
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

.dropdown-one {
    cursor: pointer;
    display: none;
    position: absolute;
    /* position: relative; */
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-two {
    cursor: pointer;
    display: none;
    /* position: absolute; */
    position: absolute;
    left: 160px;
    top: inherit;
    /* padding: 14px 16px; */
    /* padding: 0px 0px 0px 0px; */
    min-width: 160px;
    /* min-height: 16px; */
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

/* .dropdown:hover .dropdown-one, #link1:hover > .dropdown-two {
  display: block;
} */
.dropdown:hover .dropdown-one {
    display: block;
}

.dItem:hover>.dropdown-two {
    display: block;
    /* top: .dItem.left;  */
}

.dropdown-one .dItem {
    color: black;
    padding: 12px 16px;
    display: block;
    text-align: left;
}

.dropdown-one .dItem:hover {
    background-color: gray;
}



/* ----- Data List ----- */

ul,
#myUL {
    list-style-type: none;
}

#myUL {
    margin: 0;
    padding: 0;
}

.caret {
    cursor: pointer;
    -webkit-user-select: none;
    /* Safari 3.1+ */
    -moz-user-select: none;
    /* Firefox 2+ */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
}

.caret::before {
    content: "\25B6";
    color: black;
    display: inline-block;
    margin-right: 6px;
}

.caret-down::before {
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -webkit-transform: rotate(90deg);
    /* Safari */
    '
transform: rotate(90deg);
}

.nested {
    display: none;
}

.active {
    display: block;
}

.listopenbtn {
    overflow: visible;
    /*display: inline-block;*/
    position: relative;
    z-index: 300;
    /*top: 20px;
    right: 20px;*/
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    padding: 1px 1px;
    border: none;
}

/* --- Collapsed Sidebar --- */
.sidebar {
    height: 42%;
    width: 0;
    position: fixed;
    z-index: 301;
    /* top: 0; */
    /* right: 0; */
    background-color: rgba(30,30,30,0.5); /*#111;*/
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    /* overflow: visible; */
    z-index: 302;
    /* top: 20px;
    right: 20px; */
    font-size: 36px;
    margin-left: 50px;
    /*background-color: rgba(30,30,30,1.0);*/ /*#111;*/
}

.openbtn {
    /* overflow: visible; */
    position: fixed;
    z-index: 302;
    /* top: 20px; */
    /* right: 20px; */
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    padding: 10px 10px;
    border: none;
}

.openbtn:hover {
    background-color: #444;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

/* 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) {
    .sidebar {
        padding-top: 15px;
    }

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