.dm-followAuthorButton {
  color: var(--brandColor);
  font-weight: bold;
  font-size: 1.125rem;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  padding-left: 1.9rem;
  align-self: center;
}

.dm-followAuthorButton::before,
.dm-followAuthorButton::after {
  content: "";
  display: block;
  position: absolute;
  width: 1.3em;
  height: 1.3em;
  top: 0;
  left: 0;
}

.dm-followAuthorButton:before {
  -webkit-mask: var(--follow) no-repeat center center / 60%;
  mask: var(--follow) no-repeat center center / 60%;
  background-color: var(--white);
  z-index: 1;
}

.dm-followAuthorButton::after {
  background-color: var(--brandColor);
  border-radius: 100%;
}

.dm-followAuthorButton--active::before {
  -webkit-mask: var(--unfollow) no-repeat center center / 90%;
  mask: var(--unfollow) no-repeat center center / 90%;
  background-color: var(--brandColor);
}

.dm-followAuthorButton--active::after {
 content: none;
}

.dm-followAuthorButton__text::before {
  content: 'Folgen';
}

.dm-followAuthorButton--active .dm-followAuthorButton__text::before {
  content: 'Entfolgen';
  font-weight: normal;
}

.dm-followAuthorButton--greyedOut {
  opacity: .5;
 }