account-info {
  --avatar-size: 3em;
}
account-info .dropdown {
  --dropdown-direction: -1;
}
account-info {
  display: flex;
  align-items: center;
  position: relative;
}
account-info .dropdown-trigger {
  display: flex;
  z-index: 2;
  align-self: center;
}
account-info .dropdown-trigger a > svg.symbol {
  width: 0.8em;
  margin-left: 0.5em;
  top: 0.1em;
  position: relative;
  order: 1;
}
account-info .dropdown-trigger figure {
  order: 2;
}
account-info .dropdown-trigger > .dropdown {
  right: calc(var(--avatar-size) + 0.5em) !important;
}
account-info .dropdown-trigger > .dropdown sub-menu a:nth-child(1).add-new + .heading {
  padding-top: 0;
  border: none;
}
account-info > a, account-info > button, account-info .dropdown-trigger {
  align-items: center;
  white-space: nowrap;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
}
account-info a:not(.dropdown-trigger) {
  display: flex;
  align-items: center;
}
@media (hover: hover) {
  account-info a:not(.dropdown-trigger):hover {
    color: var(--link-hover-colour, #FDC705);
  }
}
account-info .dropdown .link {
  display: flex;
}
account-info .dropdown .link svg ~ span {
  order: 2;
  flex-grow: 1;
  white-space: nowrap;
}
account-info button.has\:sub-menu svg {
  margin-left: -18px;
}
account-info button.long-text ~ sub-menu {
  --dropdown-min-width: 280px;
}
account-info figure {
  --aspect-ratio: 1/1;
  aspect-ratio: var(--aspect-ratio);
}
@supports not (aspect-ratio: 1/1) {
  account-info figure {
    aspect-ratio: initial;
  }
  account-info figure::before {
    content: "";
    float: left;
    height: 0;
    padding-top: calc(1 / 1 * 100%);
  }
}
account-info figure {
  display: block;
  position: relative;
  background-position: var(--position, center 33%);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
account-info figure img {
  display: block;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--image-position, center 33.33%);
     object-position: var(--image-position, center 33.33%);
  width: var(--image-size, var(--image-width-size, 100%));
  height: var(--image-size, var(--image-height-size, 100%));
  max-width: var(--image-size, var(--image-width-size, 100%));
  max-height: var(--image-size, var(--image-height-size, 100%));
  inset: 0px;
}
@supports not (inset: 0px) {
  account-info figure img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
account-info figure {
  width: var(--avatar-size);
  margin-left: 0.5em;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  place-content: center;
  place-items: center;
  font-size: 1em;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: rgba(255, 255, 255, 0.7);
  transition: background-color var(--transition), color var(--transition);
}
account-info figure:empty, account-info figure:not(.has\:image) {
  background-color: #c2c2c2;
}
account-info[data-counter]::after {
  position: absolute;
  top: -3px;
  right: -3px;
  font-size: 0.7em;
  z-index: 2;
}
account-info svg.icon {
  width: 2em;
  margin-left: 0.5em;
  display: flex;
  place-content: center;
  place-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
/*# sourceMappingURL=../../sourcemaps/components/account/account-info.css.map */