.zelmio-account-access {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 50;
}

.zelmio-account-link {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 6px 10px;
  color: #222;
  text-decoration: none;
  border-radius: 10px;
  transition:
    background .18s ease,
    color .18s ease;
}

.zelmio-account-link:hover {
  background: #fff2ec;
  color: #ff4f12;
}

.zelmio-account-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ff4f12;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.zelmio-account-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.zelmio-account-copy small {
  margin-bottom: 3px;
  color: #777;
  font-size: 10px;
}

.zelmio-account-copy strong {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

@media (max-width: 700px) {
  .zelmio-account-copy small {
    display: none;
  }

  .zelmio-account-copy strong {
    max-width: 75px;
    font-size: 11px;
  }

  .zelmio-account-link {
    gap: 6px;
    padding: 5px;
  }

  .zelmio-account-avatar {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}
