.UserSection {
    position: relative;
    z-index: 10
}

.UserSection-Outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.UserSection-User {
    margin-right: 15px;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--color-lightest);
    cursor: default
}

@media (max-width: 500px) {
    .UserSection-User {
        display: none
    }
}

.UserSection-Avatar {
    display: block;
    width: 23px;
    height: 23px;
    border-radius: 50%
}

.UserSection-Inner {
    position: absolute;
    right: 0;
    display: none;
    width: 155px;
    padding: 33px 0 33px 13px;
    background-color: var(--color-layout-dark);
    border-radius: 10px
}

.UserSection:hover .UserSection-Inner {
    display: block
}

.UserSection-Item {
    display: block;
    margin-bottom: 12px;
    padding-right: 16px;
    font-size: 1.4rem;
    line-height: 1.4rem;
    white-space: nowrap
}

.UserSection-Item:last-child {
    margin-bottom: 0
}

.UserSection-Item:hover {
    padding-right: 13px;
    font-size: 1.5rem;
    font-weight: 500
}

.UserSection-Moderation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.UserSection-Moderation:hover {
    padding-right: 16px
}

.UserSection-ModerationNum {
    width: 19px;
    height: 19px;
    font-size: 1rem;
    line-height: 19px;
    text-align: center;
    color: var(--color-lightest);
    background-color: var(--color-secondary);
    border-radius: 50%
}

.UserSection-Logout {
    color: var(--color-secondary);
    cursor: pointer
}