.profile {
  width: 100%;
  display: flex;
  align-items: center;
  &__image {
    width: 82px;
    height: 82px;
    border-radius: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 20px;
  }
  &__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    &__name {
      font-size: 16px;
      font-weight: 700;
      color: #222222;
    }
    &__phone {
      font-size: 12px;
      color: #222222;
    }
    &__button {
      background-color: #FF4C3B;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 3px;
    }
  }
}

