.user_account {
  position: relative;
}
.user_account img {
  width: 32px;
  height: 32px;
  transition: all 0.3s;
  border-radius: 50%;
}
.user_account img:hover {
  box-shadow: 0 1px 0 rgb(0 0 0 / 15%);
  cursor: pointer;
}
.user_account .dropdown {
  border-radius: 5px;
  min-height: 50px;
  min-width: 250px;
  transition: all 0.3s;
  display: none;
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  left: 0;
}
