.list12-item {
  box-shadow: var(--box-shadow);
  padding: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: var(--border-radius);
}
.list12-item .list12-profile,
.list12-item .list12-profile picture,
.list12-item .list12-profile img {
  border-radius: 50%;
  z-index: 9;
}
.list12-item .list12-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 160px;
  height: 160px;
}
.list12-item .list12-profile:before {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  right: 8px;
  top: 8px;
  border: double 2px transparent;
  background-image: linear-gradient(white, white), radial-gradient(circle at bottom, var(--main-border-color), var(--main-color), #5d6ed1);
  background-origin: border-box;
  background-clip: content-box, border-box;
  z-index: 9;
  border-bottom: dashed 2px white;
  border-left: dashed 2px white;
}
.list12-item .list12-body {
  margin-top: 5px;
}
.list12-item .list12-body .list12-position {
  margin-top: 0;
}
