.image-marker-container {
  position: relative;
  width: 60px;
  height: 90px;
  border: none;
  margin-left: -30px;
  margin-top: -90px;
}
.image-marker-container .rounded-image {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #222;
  background-size: cover;
  background-position: center;
  border: 2px solid #222;
  overflow: hidden;
}
.image-marker-container .rounded-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.image-marker-container::before {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 1px);
  left: 29px;
  background: #222;
}
.image-marker-container::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #222;
  left: 25px;
  bottom: 0;
}
