.dm-userAccountButton {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.dm-userAccountButton__inner {
  border-radius: 100%;
  height: 1.3rem;
  width: 1.3rem;
  position: relative;
  display: inline-block;
}

.dm-userAccountButton__inner:before {
  content: "";
  position: absolute;
  cursor: pointer;
  -webkit-mask: var(--user) no-repeat left center / contain;
  mask: var(--user) no-repeat center left / contain;
  background-color: var(--navColor);
  width: 100%;
  height: 100%;
}

.rundschau-online .dm-userAccountButton__inner:before {
  background-color: var(--white);
}

.dm-userAccountButton__title {
  display: none;
  font-weight: bold;
  color: var(--navColor);
}

.dm-userAccountButton--loggedIn .dm-userAccountButton__title {
  color: var(--brandColor);
}

.rundschau-online .dm-userAccountButton__title {
  color: var(--white);
}

.dm-userAccountButton--loggedIn .dm-userAccountButton__inner:before {
  -webkit-mask: var(--userFilled) no-repeat left center / contain;
  mask: var(--userFilled) no-repeat center left / contain;
  background-color: var(--brandColor);
}

.rundschau-online .dm-userAccountButton--loggedIn .dm-userAccountButton__inner:before {
  background-color: var(--darkBlue);
}

#dm-userMenuToggle {
  display: none;
}

@media (min-width: 768px) {
  .dm-userAccountButton__title {
    display: inline;
  }
  .dm-userAccountButton__inner {
    margin-right: .5em;
  }
}
