/* Next Gen Nav Bar ************************** */

.topnav {
    overflow: hidden;
    background-color: rgb(51, 51, 51, .875);
    margin: 0 .5em;
    /* padding-left: 1em; */
    font-size: .875em;
  }
  
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: .5em;
    text-decoration: none;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #006EAA;
    color: white;
}

.topnav a.resp {
    display: none;
}

.topnav .icon {
    display: none;
}

/* Responsive Media Stuff ******************** */

@media only screen and (max-width: 860px) {
    .topnav {
        padding-left: 0;
      }
}

@media screen and (max-width: 480px) {
    .topnav{
        margin: 0 .5em;
    }

    .topnav a:not(:first-child) {display: none;}

    .topnav a.icon {
        float: right;
        display: block;
    }

    .topnav.responsive {position: relative;}

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .topnav a.resp {
        display: inherit;
    }
}