.avatar {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: $grey-light;
  display: flex;
  justify-content: center;
  align-items: center;

  &--med {
    width: 100px;
    height: 100px;
  }

  &--small {
    width: 50px;
    height: 50px;
  }

  &--x-small {
    width: 30px;
    height: 30px;
  }

  &__icon {
    width: 100%;
    height: 100%;
    opacity: .2;
  }

  &__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
