/* only affects bullet points in navi */
ul, .dropdown {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-right: 40px;


    /* Change items from horizontal to vertical */


    /* background: #6bc4ff;  */
}


ul li {
    width: 52%;
    position: relative;
}


li  a {
    text-decoration: none;
    padding: 20px;
    display:block;
}


.menu-header{
    /* display nothing */
    display: block;
}

/*imports and sets font for whole website to Pt serif */

.sidebar {
    height: 100%;
    width: 20%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #000000;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    border-radius: 3px;
}
   
.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
    width: 200px;
}
   
.sidebar a:hover {
    color: #acda78;
}

.sidebar .closebtn {
    top: 0;
    margin-top:-30px;
    font-size: 36px;
}
.openbtn {
    font-size: 4vw;
    cursor: pointer;
    color: #ffffff;
    border: none;
    background-color: rgba(1, 1, 1, 0);
    display: inline;
    margin-top: 20px;
    margin-bottom: 20px;
    float: right;
    border: #000000 2px;
    border-radius: 3px;
}

.openbtn:hover {
    background-color: rgba(194, 194, 194, 0.5);
    transition: 0.3s ease-in-out;
}

.sidebar ul li {
    position: relative;
    height: 30px;
    line-height: 30px;
}

.links_a{
    margin-top: 0px;
}

#hidden{
    display: none;
}

#mysidebar{
    width: 0;
}
/* media querys go here */


@media(max-width: 767px){
   
    ul{
        display: table;
        width: 100%;
    }


    ul li{
        text-align: left;
    }

    .display{
        display: block;
    }

    .menu-header{
        text-align: right;
        padding: 10px;
        display: block;
    }

    .sidebar .openbtn{
        width: 10%;
    }
}





