.funkAvatar *{
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
.funkAvatar{
    position: relative;
}
.funkAvatar .icon_wrap{
    cursor: pointer;
}

.funkAvatar .name{
    text-align: right;
}

.funkAvatar .version{
    padding-left: 30px;
    font-size: 12px;
}

.funkAvatar .icon_wrap{
    display: flex;
    align-items: center;
}
  
.funkAvatar .name{
    display: inline-block;
    margin: 0 10px;
}
  
.funkAvatar .icon_wrap .profilePic{
    border-radius: 50%;
    margin-right: 1rem;
    width: 3rem;
    max-height: 50px;
    line-height: 3rem;  
    object-fit: cover;
}

.funkAvatar .icon_wrap .circle{
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  background-color: green;
  display: inline-block;
  text-align: center;
}

.funkAvatar .icon_wrap .circle span{
  color: #FFF;
  font-weight: 600;
  font-size: 1.4rem;  
}

.funkAvatar .icon_wrap:hover{
    color: #000
}

.funkAvatar .icon_wrap .chevron{
    width: 1.5rem;
    height: auto;
}

.funkAvatar.active .avatarMenu{
    display: block;
    z-index: 1000;
  }

.funkAvatar .avatarMenu{
    position: absolute;
    top: 60px;
    right: 25px;
    user-select: none;
    background: #fff;
    border: 1px solid #c7d8e2;
    width: 350px;
    height: auto;
    display: none;
    border-radius: 3px;
    box-shadow: 10px 10px 35px rgba(0,0,0,0.125),
                -10px -10px 35px rgba(0,0,0,0.125);
}

.funkAvatar .avatarMenu:before{
    content: "";
    position: absolute;
    top: -20px;
    right: 15px;
    border: 10px solid;
    border-color: transparent transparent #fff transparent;
}
   
.funkAvatar .avatarMenu{
    width: 300px;
}

.funkAvatar .avatarMenu:before{
    right: 10px;
}
  
.funkAvatar .avatarMenu ul{
    padding-left: 0rem;
    margin-bottom: 0rem;
}  
.funkAvatar .avatarMenu ul li {
    border-bottom: 1px solid #f1f2f4;
}
  
.funkAvatar .avatarMenu ul li  a{
    display: block;
    padding: 15px 35px;
    position: relative;
    color: #000;
    font-weight: normal;
    text-decoration: none; 
}
  
.funkAvatar .avatarMenu ul li  a .picon{
    display: inline-block;
    width: 30px;
}
 
.funkAvatar .avatarMenu ul li  a:hover{
    color: var(--secondary);
    background: #ffffff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: normal;
    text-decoration: none; 
}
