.navigation-drawer-bg {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.navigation-drawer {
    position: fixed;
    top: 0;
    width: 75%;
    height: 100%;
    right: -80%;
    background-color: rgb(61, 87, 114);
    z-index: 3;
    overflow: scroll;
    transition: all .5s ease;
}

.navigation-drawer #profile {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    height: 135px;
    background: rgb(55, 76, 96);
    color: #fff;
    border-radius: 0 0 7% 7%;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .4);
    overflow: hidden;
}

.navigation-drawer #profile #bg {
    position: absolute;
    max-height: 135px;
    object-fit: cover;
    opacity: .3;
}

.navigation-drawer #profile #profile-image {
    width: 64px;
    height: 64px;
    filter: invert(100%);
    padding: 10px;
    border: 3px solid #000;
    border-radius: 50%;
    margin: auto 30%;;
}

.navigation-drawer ul {
   padding: 10px;
}

.navigation-drawer ul li {
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.navigation-drawer ul li span {
    -webkit-text-stroke: 0.1px rgb(61, 87, 114);
}

.navigation-drawer ul li .icon-container {
    display: inline-block;
    width: 24px;
    margin-left: 5px;
    filter: invert(100%);
}

.navigation-drawer ul li#copyright {
    position: fixed;
    width: 75%;
    bottom: 10px;
    border-bottom: 0;
    font: 12px tahoma;
    text-align: center;
    color: rgb(177, 175, 175);
    margin-right: -10px;
}