/**
 * GraffitiAvatar and GraffitiAvatarGroup
 * @license
 * (c) 2022 GraffitiSuite Solutions
 * agcyphers[at]graffitisuite[dot]com
 * https://graffitisuite.com/
 * 
 * License: https://graffitisuite.com/legal/source-eula/
 */
 
div.graffitiavatargroup {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.graffitiavatar {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  user-select: none;
}

.graffitiavatargroup .graffitiavatar {
  float: left;
}

.graffitiavatar .avatar-image {
  width: 100%;
  height: 100%;
  border: 2px solid #aaa;
  border-radius: 50% !important;
  box-sizing: border-box;
  transition: opacity 0s, opacity 0.1s linear;
}

.graffitiavatar .avatar-initials {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50% !important;
  border: 2px solid #aaa;
  box-sizing: border-box;
  color: white;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: opacity 0s, opacity 0.1s linear;
}

.graffitiavatar .avatar-initials-inner {
  font-size: 1em;
}

.graffitiavatar .avatar-initials-svg {
  width: 100%;
}