.portrait {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 150px;
  margin: 20px;
  text-decoration: none;
}
.portrait .portrait_image {
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2509803922);
}
.portrait .portrait_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
}
.portrait .portrait_image:hover img {
  transform: scale(1.1);
}
.portrait[data-mini=true] {
  width: 100px;
  margin: 10px;
}
.portrait[data-mini=true] .portrait_image {
  width: 100px;
  height: 100px;
}
.portrait .portrait_name {
  margin-top: 10px;
  text-align: center;
  line-height: 1.2;
}
.portrait .role {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 35px;
  height: 35px;
  background: #ffffff;
  color: #a0a0a0;
  border-radius: 999px;
}
.portrait[data-mini=true] .role {
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
}

/*# sourceMappingURL=portrait.css.map */