.avatars-dropdown{
    display: inline-block;
    position: relative;
}
.avatars{
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    background: #f3f3f9;
}
.ava-button{
    border: none;
    outline: none;
    background: none;
    padding: 5px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.ava-area{
    display: flex;
    align-items: center;
}
.profile-image{
    width: 40px;
    height: 40px;
    vertical-align: middle;
}
.ava-text{
    margin-left: 10px;
    text-align: left;
}
.ava-text .ava-name{
    display: inline-block;
    color: #495057;
    font-size: 15px;
    font-weight: 700;
}
.ava-text .ava-des{
    display: block;
    font-size: 12px;
}
.avatars-dropdown .dropdown-menu{
    position: absolute;
    left: 0;
    top: 15px;
    min-width: 160px;
    padding: 5px;
    font-size: 14px;
    color: #212529;
    text-align: left;
    background: #fcfcfc;
    border: 1px solid #e9ebec;
    box-shadow: 0 5px 10px rgb(30 32 37 / 12%);
    border-radius: 3px;
    display: none;
    z-index: 1000;
    animation-duration: .6s;
    animation-name: DropDownSlide;
    animation-fill-mode: both;
}
.avatars-dropdown .dropdown-menu.show{
    display: block;
    top: 0px;
    transform: translate(0px, 72px);
}
.ava-button .dropdown-icon svg{
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 10px;
    margin-top: 5px
}
.dropdown-menu .dropdown-header{
    display: block;
    padding: 0.5rem 1.2rem;
    margin-bottom: 0;
    font-size: .7109375rem;
    color: #878a99;
    white-space: nowrap;
}
.dropdown-menu ul{
    margin: 0;
    padding: 0;
}
.dropdown-menu ul .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.35rem 1.2rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
@keyframes DropDownSlide {
    100% {
        margin-top: -1px;
    }
    0% {
        margin-top: 20px;
    }
}
.avatar-default .avatars{
    height: 70px;
}
.avatar-small .avatars{
    height: 50px;
}
.avatar-small .dropdown-menu.show{
    transform: translate(0px, 52px);
}
.avatar-small .profile-image{
    width: 30px;
    height: 30px;
}
.avatar-small .ava-text .ava-name{
    font-size: 12px;
}
.avatar-small .ava-text .ava-des{
    font-size: 10px;
}
.avatar-small .dropdown-menu ul .dropdown-item {
    font-size: 12px;
}
.avatar-medium .avatars{
    height: 90px;
}
.avatar-medium .dropdown-menu.show{
    transform: translate(0px, 92px);
}
.avatar-medium .profile-image{
    width: 50px;
    height: 50px;
}
.avatar-medium .ava-text .ava-name{
    font-size: 18px;
}
.avatar-medium .ava-text .ava-des{
    font-size: 14px;
}
.avatar-medium .dropdown-menu ul .dropdown-item {
    font-size: 18px;
}
.avatar-large .avatars{
    height: 110px;
}
.avatar-large .dropdown-menu.show{
    transform: translate(0px, 112px);
}
.avatar-large .profile-image{
    width: 70px;
    height: 70px;
}
.avatar-large .ava-text .ava-name{
    font-size: 20px;
}
.avatar-large .ava-text .ava-des{
    font-size: 16px;
}
.avatar-large .dropdown-menu ul .dropdown-item {
    font-size: 20px;
}
.icon-view{
    display: inline-block;
}