﻿
.avatar {
    flex: 0 0 33px;
    vertical-align: middle;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    width: 33px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #06409e;
    font-size: 1.2em;
    margin-left: 10px;
    cursor: pointer;
    font-family: Arial,sans-serif;
}

.avatar-dropdown {
    position: relative;
    display: inline-block;
    width: 33px;
    height: 32px;
    text-align: right;
    padding-right: 44px;
}

.avatar-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
}

    .avatar-dropdown-content a {
        /*            color: black;*/
        /*            padding: 12px 16px;*/
        text-decoration: none;
        display: block;
    }

.avatar-show {
    display: block;
}

.avatar-dropdown-element {
    margin: 0;
    border: 0;
    color: #656565;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

    .avatar-dropdown-element:hover {
        background-color: #e4e4e4;
        color: #656565;
    }
