nav#login {
    background: #f9f9f9;
    display: block;
    text-align: right;
    padding: 10px 0;
    .user-menu {
        font-size: 14px;
    }
    span.nav-link {
        margin-left: 5px;
    }
    .nav-link.user-icon {
        background: #000;
        height: 20px;
        width: 20px;
        border-radius: 50%;
        display: inline-block;
        text-align: center;
        line-height: 1.4;
        svg.svg-inline--fa.fa-user {
            color: #fff;
            font-size: 11px;
            line-height: 1;
            padding: 0;
            margin: 0;
            top: 0;
            position: relative;
        }
    }
    .user-menu {
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
      .user-dropdown {
        display: none;
        position: absolute;
        background-color: #2774AE;
        min-width: 136px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 999;
        text-align: left;
        border-radius: 20px;
        top: 34px;
        right: 20px;
        padding: 20px;
      }
      .user-menu-triangle {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 0 15px 20px 15px;
        border-color: transparent transparent #2774AE transparent;
        transform: rotate(0deg);
        content: '';
        position: absolute;
        top: 22px;
        right: 107px;
        display: none;
        z-index: 999;
    }
      .user-dropdown .dropdown-item {
        color: #fff;
        padding: 0 0 10px;
        text-decoration: none;
        display: block;
        font-weight: bold;
        &:hover {
          color: #FFD100;
          text-decoration: underline;
        }
      }
      .user-dropdown .dropdown-item:last-of-type {
        padding: 0;
      }
      a.loginoutter {
        span.loggedout.link {
          color: #000;
          text-decoration: none;
          padding-left: 5px;
          font-weight: 600;
        }
        text-decoration: none;
      }
}
