html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.navbar{
    z-index: 100;
}
/******* Start SideBar Styles********/

.openbtn {
    position: fixed;
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    opacity: 80%;
    color: #0026ff;
    padding: 10px 15px;
    z-index: 0;
    border: none;
    top: 70px;
    border-radius: 20%;
}

    .openbtn:hover {
        background-color: #010a53;
        transition: .5s;
        color: white;
    }


.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 95%;
    background-color: #158cba;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

    .sidebar .nav-link {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 15px;
        color: white;
        background-color: #158cba;
        display: block;
        transition: 0.3s;
    }

    .sidebar .nav-link:hover {
        color: #ffd800;
        font-weight: bold;
        font-size:large;
    }

    .sidebar .closebtn {
        padding-right: 25px;
        font-size: 36px;
        
    }


#mainBody {
    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;
        }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        
    }

        .sidebar.show {
            transform: translateX(0);
        }

    .content {
        margin-left: 0;
    }
}
    
/******** End SideBar Styles ********/


.dropdown-menu {
    position: relative;
    opacity: 0.95;
    z-index: 9999;
}