.profile-container {
  display: flex;
  cursor: pointer;
  position: relative;

  > .ds-dropdown-list {
    right: 0;
    width: auto;

    > .ds-dropdown-itemlist {
      &:first-child {
        border-bottom: 1px solid var(--border-subtle-1);
        color: var(--text-disabled);
      }

      &:last-child {
        border-top: 1px solid var(--border-subtle-1);
        color: var(--text-error);

        > .ds-icon {
          color: var(--text-error);
        }
      }
    }
  }
}

@media (max-width: 767px) {
  .profile-container {
    display: none;
  }
}
