#profile-menu .mobile {
  display: none;
}

#profile-menu .desktop {
  display: block;
}

@media only screen and (max-width: 768px) {

  /* For mobile phones: */
  #profile-menu .mobile {
      display: flex;
      align-items: center;
  }

  #profile-menu .desktop {
      display: none;
  }
}