.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: #101721;
    display: inline-block;
    z-index: 3;
    padding: 0;
    border-bottom: solid 1px #2b384c;
}

.mobile-header {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.mobile-header > .actions {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.mobile-header > .actions > *:not(:last-child) {
    margin-right: 16px;
}
.mobile-header > .actions > a {
    color: #e5e5e5;
    line-height: 1;
}

.mobile-header > .actions .user-img {
    height: 42px;
    width: 42px;
}
.mobile-header > .actions .mobile-help-icon {
    height: 40px;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.user-info {
    padding: 15px;
    position: relative;
    top: -67px;
    list-style: none outside none;
    margin: 0;
    max-width: 47%;
}

.user-info > li {
    float: left;
}
.user-info > li:not(:last-child) {
    margin-right: 8px;
}

.user-menu {
    width: 285px;
    padding-top: 0;
    background: #243043;
    border-radius: 0 0 0 20px;
    position: fixed;
    top: 70px;
    right: 0;
    z-index: 2;
    line-height: 40px;
}
.menu-overlay-backdrop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.user-menu > ul {
    list-style: none outside none;
}

.user-menu > ul > li > a {
    cursor: pointer;
}

.user-menu > ul > li > a > span {
    color: #e5e5e5;
    vertical-align: middle;
    margin-left: 22px;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
}

.logout-icon {
    width: 20px;
    height: 25px;
}

.switch-style-icon {
    width: 20px;
    height: 25px;
}

.help-icon {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.logo {
    margin: auto;
    width: 100px;
    padding: 10px;
    line-height: 45px;
}

.help-button > a {
    display: inline-flex;
    padding: 8px;
}

.help-button > a,
.profile-info > a {
    line-height: 40px;
    vertical-align: middle;
    color: #e5e5e5;
    cursor: pointer;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
}

.profile-info img.avatar {
    margin-right: 8px;
    height: 42px;
    width: 42px;
    vertical-align: baseline;
}

.profile-info .username {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 20ch;
}

.profile-info .profile-type,
.profile-info #dropdown-icon {
    overflow: auto;
}

.profile-info span {
    display: inline-block;
}
@media (max-width: 959px) {
    .main-header {
        position: relative !important;
    }
    .user-menu {
        top: auto;
    }
}
