/* Navigtion */
.navigation-heading {
    display: flex;
    justify-content: start;
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 300;
    color: #a0a0a0;
    transition: justify-content 0.5 ease;
}

.navigation-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.navigation-list > li {
    padding: 4px 0;
}

.navigation-list > li > a {
    display: block;
    padding: 4px 8px;
    color: #dadada;
    text-decoration: none;
}

.navigation-list > li > a:hover {
    background-color: gray;
    border-radius: 4px;
}

.navigation-list i {
    width: 20px;
    text-align: center;
}

span {
    margin-left: 4px;
}

.disabled {
    text-decoration: line-through;
}

.menu-icon {
    padding: 0px;
    margin: 4px;
    margin-bottom: 20px;
    width: 28px;
    height: 28px;
    background: none;
    color: white;
    border: none;
}

.fa-bars {
    font-size: 1.9rem;
}

.fa-bars:hover {
    color: #a0a0a0;
}

/* Mobile Navigation */
.mobile-menu-icon {
    display: none;
    position: absolute;
    left: 20px;
    top: 12px;
    padding: 0px;
    margin: 4px;
    margin-bottom: 20px;
    width: 28px;
    height: 28px;
    background: none;
    color: white;
    border: none;
}