﻿
.navlist {
    background-color: rgb(98, 0, 48);
    clear: both;
    margin-bottom: 10px;
    margin-top: 10px;
    overflow: hidden;
    padding: 0;
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 1;
}

    .navlist::after {
        clear: both;
    }

    .navlist a {
        color: rgb(255, 255, 255);
        font-size: 0.90rem;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 10px;
        text-align: center;
        text-decoration: none;
        vertical-align: middle;
    }

        .navlist a:last-child {
            float: right;
        }

        .navlist a:not(:last-child) {
            border-right-color: rgb(255, 255, 255);
            border-right-style: solid;
            border-right-width: 1px;
            float: left;
        }

        .navlist a:hover:not(.active) {
            background-color: rgb(178, 70, 128);
        }

        .navlist a.active {
            background-color: rgb(148, 40, 98);
        }
