.profile-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  vertical-align: middle;
  margin-left: 12px;
}

.profile-dropdown i {
  font-size: 20px;
}

.profile-dropdown-content {
  position: absolute;
  z-index: 1;
  top: 40px;
  right: 0px;

  width: 180px;

  display: flex;
  flex-direction: column;

  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;

  border: 2px solid #d4d4d4;
  border-radius: 2px;
  box-shadow: 0px 8px 16px 0px rgba(85, 85, 85, 0.2);
  background-color: white;

  font-weight: bold;
  text-align: left;
  visibility: hidden;
}

.profile-dropdown-username {
  font-weight: bold;
}

.profile-dropdown-user-image {
  object-fit: cover;

  border-radius: 50%;

  width: 45px;
  height: 45px;

  margin-right: 12px;
}

.profile-dropdown-content * {
  margin-top: 10px;
}

.profile-hover {
  cursor: pointer;
}

.profile-hover:not(:hover) .profile-dropdown-content {
  visibility: hidden;
  transition-property: visibility;
  transition-delay: 250ms;
}

.profile-hover:hover .profile-dropdown-content {
  visibility: visible;
}
